diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/templates.md | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/templates.md b/docs/templates.md index bf5bd897..ce1e8d7e 100644 --- a/docs/templates.md +++ b/docs/templates.md @@ -657,7 +657,7 @@ structured-content generation.  <details>    <summary>Syntax:</summary> -  <code>{{#formatGlossary <i>dictionary</i>}}{{{definitionEntry}}}{{/pitchCategories}}</code><br> +  <code>{{formatGlossary <i>dictionary</i> <i>definitionEntry</i>}}</code><br>    * _`dictionary`_ <br>      The dictionary that the glossary entry belongs to. @@ -668,7 +668,7 @@ structured-content generation.    <summary>Example:</summary>    ```handlebars -  {{#each glossary}}{{#formatGlossary ../dictionary}}{{{.}}}{{/formatGlossary}}{{/each}} +  {{#each glossary}}{{formatGlossary ../dictionary .}}{{/each}}    ```    Output: |