Skip to content

Commit fc4f0f4

Browse files
authored
Fix some links
1 parent 8c1356a commit fc4f0f4

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@ Handlebars provides the power necessary to let you build semantic templates effe
1313

1414
[Mustache](http://mustache.github.com/mustache.5.html) templates are compatible with Handlebars, so you can take a [Mustache](http://mustache.github.com) template, import it into Handlebars, and start taking advantage of the extra Handlebars features.
1515

16-
# Performance
17-
18-
Handlebars.java is a modern and full featured template engine, but also has a very good performance (Hbs):
19-
20-
![Template Comparison](http://jknack.github.io/handlebars.java/images/bench.png)
21-
22-
Benchmark source code is available at: https://github.com/mbosecke/template-benchmark
23-
2416
# Getting Started
2517
In general, the syntax of **Handlebars** templates is a superset of [Mustache](http://mustache.github.com) templates. For basic syntax, check out the [Mustache manpage](http://mustache.github.com).
2618

@@ -388,12 +380,12 @@ The generated code looks like this:
388380
Finally, it converts message patterns like: ```Hi {0}``` into ```Hi {{arg0}}```. This make possible for the [I18n](https://github.com/fnando/i18n-js) JS library to interpolate variables.
389381

390382
### string helpers
391-
Functions like abbreviate, capitalize, join, dateFormat, yesno, etc., are available from [StringHelpers] (https://github.com/jknack/handlebars.java/blob/master/handlebars/src/main/java/com/github/jknack/handlebars/helper/StringHelpers.java).
383+
Functions like abbreviate, capitalize, join, dateFormat, yesno, etc., are available from [StringHelpers](https://github.com/jknack/handlebars.java/blob/master/handlebars/src/main/java/com/github/jknack/handlebars/helper/StringHelpers.java).
392384

393385
> NOTE: You need to register string helpers (they are not added by default)
394386
395387
### conditional helpers
396-
Functions like eq, neq, lt, gt, and, or, not, etc., are available from [ConditionalHelpers] (https://github.com/jknack/handlebars.java/blob/master/handlebars/src/main/java/com/github/jknack/handlebars/helper/ConditionalHelpers.java).
388+
Functions like eq, neq, lt, gt, and, or, not, etc., are available from [ConditionalHelpers](https://github.com/jknack/handlebars.java/blob/master/handlebars/src/main/java/com/github/jknack/handlebars/helper/ConditionalHelpers.java).
397389

398390
> NOTE: You need to register conditional helpers (they are not added by default)
399391
@@ -979,6 +971,14 @@ where:
979971
980972
Checkout the [HandlebarsViewResolver](https://github.com/jknack/handlebars.java/blob/master/handlebars-springmvc/src/main/java/com/github/jknack/handlebars/springmvc/HandlebarsViewResolver.java).
981973
974+
# Performance
975+
976+
Handlebars.java is a modern and full featured template engine, but also has a very good performance (Hbs):
977+
978+
![Template Comparison](http://jknack.github.io/handlebars.java/images/bench.png)
979+
980+
Benchmark source code is available at: https://github.com/mbosecke/template-benchmark
981+
982982
# Architecture and API Design
983983
* Handlebars.java follows the JavaScript API with some minors exceptions due to the nature of the Java language.
984984
* The parser is built on top of [ANTLR v4] (http://www.antlr.org/).
@@ -1071,7 +1071,7 @@ Hello {{#child}}{{this.value}}{{/child}}
10711071
* [ANTLRv4](http://www.antlr.org/)
10721072

10731073
## Author
1074-
[Edgar Espina] (https://twitter.com/edgarespina)
1074+
[Edgar Espina](https://twitter.com/edgarespina)
10751075

10761076
## License
10771077
[Apache License 2](http://www.apache.org/licenses/LICENSE-2.0.html)

0 commit comments

Comments
 (0)