You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.markdown
+9-9
Original file line number
Diff line number
Diff line change
@@ -11,12 +11,12 @@ Handlebars.js and Mustache are both logicless templating languages that
11
11
keep the view and the code separated like we all know they should be.
12
12
13
13
Checkout the official Handlebars docs site at
14
-
[http://www.handlebarsjs.com](http://www.handlebarsjs.com) and the live demo at [http://tryhandlebarsjs.com/](http://tryhandlebarsjs.com/).
14
+
[https://handlebarsjs.com/](https://handlebarsjs.com) and the live demo at [http://tryhandlebarsjs.com/](http://tryhandlebarsjs.com/).
15
15
16
16
Installing
17
17
----------
18
18
19
-
See our [installation documentation](http://handlebarsjs.com/installation.html).
19
+
See our [installation documentation](https://handlebarsjs.com/installation/).
20
20
21
21
Usage
22
22
-----
@@ -46,23 +46,23 @@ var result = template(data);
46
46
// </ul>
47
47
```
48
48
49
-
Full documentation and more examples are at [handlebarsjs.com](http://handlebarsjs.com/).
49
+
Full documentation and more examples are at [handlebarsjs.com](https://handlebarsjs.com/).
50
50
51
51
Precompiling Templates
52
52
----------------------
53
53
54
-
Handlebars allows templates to be precompiled and included as javascript code rather than the handlebars template allowing for faster startup time. Full details are located [here](http://handlebarsjs.com/precompilation.html).
54
+
Handlebars allows templates to be precompiled and included as javascript code rather than the handlebars template allowing for faster startup time. Full details are located [here](https://handlebarsjs.com/installation/precompilation.html).
55
55
56
56
Differences Between Handlebars.js and Mustache
57
57
----------------------------------------------
58
58
Handlebars.js adds a couple of additional features to make writing
59
59
templates easier and also changes a tiny detail of how partials work.
Block expressions have the same syntax as mustache sections but should not be confused with one another. Sections are akin to an implicit `each` or `with` statement depending on the input data and helpers are explicit pieces of code that are free to implement whatever behavior they like. The [mustache spec](http://mustache.github.io/mustache.5.html) defines the exact behavior of sections. In the case of name conflicts, helpers are given priority.
0 commit comments