Skip to content

Commit

Permalink
Guides WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
groue committed Feb 20, 2013
1 parent aee528b commit 9e10d6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Guides/runtime.md
Expand Up @@ -68,7 +68,7 @@ NSString *rendering = [GRMustacheTemplate renderObject:data
error:NULL];
```

GRMustache first looks for the `person` key, extracts its `name`, and applies the `uppercase` built-in [filter](filters.md). The variable tag eventually renders the resulting string.
GRMustache first looks for the `person` key, extracts its `name`, and applies the `uppercase` built-in filter of the [standard library](standard_library.md). The variable tag eventually renders the resulting string.


Section tags
Expand Down
4 changes: 2 additions & 2 deletions Guides/template_repositories.md
Expand Up @@ -15,9 +15,9 @@ This class helps you solving cases that are not covered by other high-level meth

`{{> header }}` loads a `header` partial template stored next to its enclosing template, but `{{> /partials/header }}`, with a leading slash, loads a template located at the absolute path `/partials/header` from the root of the template repository.

- when you want a specific set of templates to behave as text or HTML templates, when all other templates of your application belong to the other realm.
- when you want a specific set of templates to have a specific configuration. For example you want them to render text, when all other templates of your application render HTML.

The first two use cases are covered by this guide. See the [HTML vs Text Templates Guide](html_vs_text.md) for the latter.
The first two use cases are covered by this guide. See the [Configuration Guide](configuration.md) for the latter.


Loading templates and partials from the file system
Expand Down

0 comments on commit 9e10d6c

Please sign in to comment.