Skip to content

Commit fd93073

Browse files
ShonFrazierjaylinski
authored andcommitted
Fix Mustache links
...to point to 'https://mustache.github.io/...'
1 parent a9a8e40 commit fd93073

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Handlebars.js
66
=============
77

88
Handlebars.js is an extension to the [Mustache templating
9-
language](http://mustache.github.com/) created by Chris Wanstrath.
9+
language](https://mustache.github.io/) created by Chris Wanstrath.
1010
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

@@ -22,7 +22,7 @@ Usage
2222
-----
2323
In general, the syntax of Handlebars.js templates is a superset
2424
of Mustache templates. For basic syntax, check out the [Mustache
25-
manpage](http://mustache.github.com/mustache.5.html).
25+
manpage](https://mustache.github.io/mustache.5.html).
2626

2727
Once you have a template, use the `Handlebars.compile` method to compile
2828
the template into a function. The generated function takes a context
@@ -64,7 +64,7 @@ templates easier and also changes a tiny detail of how partials work.
6464
- [Literal Values](https://handlebarsjs.com/guide/expressions.html#literal-segments)
6565
- [Delimited Comments](https://handlebarsjs.com/guide/#template-comments)
6666

67-
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.
67+
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](https://mustache.github.io/mustache.5.html) defines the exact behavior of sections. In the case of name conflicts, helpers are given priority.
6868

6969
### Compatibility
7070

0 commit comments

Comments
 (0)