Skip to content

Commit edcc84f

Browse files
ole-martinnknapp
authored andcommittedDec 2, 2019
Update readme.md with updated links (#1620)
* Update readme.md with updated links Fix http->https where possible and update links doc links * Update README.markdown * Fix precompilation link
1 parent 23d58e7 commit edcc84f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
 

‎README.markdown

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ Handlebars.js and Mustache are both logicless templating languages that
1111
keep the view and the code separated like we all know they should be.
1212

1313
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/).
1515

1616
Installing
1717
----------
1818

19-
See our [installation documentation](http://handlebarsjs.com/installation.html).
19+
See our [installation documentation](https://handlebarsjs.com/installation/).
2020

2121
Usage
2222
-----
@@ -46,23 +46,23 @@ var result = template(data);
4646
// </ul>
4747
```
4848

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/).
5050

5151
Precompiling Templates
5252
----------------------
5353

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).
5555

5656
Differences Between Handlebars.js and Mustache
5757
----------------------------------------------
5858
Handlebars.js adds a couple of additional features to make writing
5959
templates easier and also changes a tiny detail of how partials work.
6060

61-
- [Nested Paths](http://handlebarsjs.com/#paths)
62-
- [Helpers](http://handlebarsjs.com/#helpers)
63-
- [Block Expressions](http://handlebarsjs.com/#block-expressions)
64-
- [Literal Values](http://handlebarsjs.com/#literals)
65-
- [Delimited Comments](http://handlebarsjs.com/#comments)
61+
- [Nested Paths](https://handlebarsjs.com/guide/expressions.html#path-expressions)
62+
- [Helpers](https://handlebarsjs.com/guide/expressions.html#helpers)
63+
- [Block Expressions](https://handlebarsjs.com/guide/block-helpers.html#basic-blocks)
64+
- [Literal Values](https://handlebarsjs.com/guide/expressions.html#literal-segments)
65+
- [Delimited Comments](https://handlebarsjs.com/guide/#template-comments)
6666

6767
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.
6868

0 commit comments

Comments
 (0)
Please sign in to comment.