Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:shannonmoeller/gulp-hb into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonmoeller committed Apr 18, 2015
2 parents 218ba32 + 99146d0 commit d210f3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -132,7 +132,7 @@ helpers: {
}
```

When including helpers using globs, modules may export a single helper function. The helper will be named according to the file path and name without the extension. So a helper with a path of `string/upper.js` will be named `string-upper`. Note that path separators are replaced with hyphens to avoid having to use [square brackets](http://handlebarsjs.com/expressions.html#basic-blocks).
When including helpers using globs, modules may export a single helper function. Each helper will be named according to the file path and name without the extension. So a helper with a path of `string/upper.js` will be named `string-upper`. Note that path separators are replaced with hyphens to avoid having to use [square brackets](http://handlebarsjs.com/expressions.html#basic-blocks).

```js
// lower.js
Expand Down Expand Up @@ -178,7 +178,7 @@ partials: {
}
```

When including paritals using globs, partials may be handlebars file. The partial will be named according to the file path and name without the extension. So a partial with a path of `component/link.hbs` will be named `component/link`.
When including paritals using globs, partials may be standalone handlebars files. Each partial will be named according to the file path and name without the extension. So a partial with a path of `component/link.hbs` will be named `component/link`.

```handlebars
{{!-- link.hbs --}}
Expand Down

0 comments on commit d210f3b

Please sign in to comment.