diff options
| author | praschke <stel@comfy.monster> | 2023-10-16 23:29:17 +0100 | 
|---|---|---|
| committer | praschke <stel@comfy.monster> | 2023-10-17 22:45:47 +0100 | 
| commit | 5dc0deb51239b2ed0ab04f3e232e3ceb6e93ea03 (patch) | |
| tree | a2a07b4de491ed471a146f706bc5aad32c267b82 | |
| parent | feec5af726a3094405586be6d755be562dbe497f (diff) | |
docs: join and concat
| -rw-r--r-- | docs/templates.md | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/docs/templates.md b/docs/templates.md index f5eeb95e..3ae8c58e 100644 --- a/docs/templates.md +++ b/docs/templates.md @@ -574,7 +574,7 @@ Joins the arguments to a single string with a separator, flattening any argument  <details>    <summary>Syntax:</summary> -  <code>{{#join <i>separator</i> <i>value1</i> <i>value2</i> <i>valueN</i>...}}{{/join}}</code><br> +  <code>{{join <i>separator</i> <i>value1</i> <i>value2</i> <i>valueN</i>...}}</code><br>    * _`separator`_ <br>      The separator string to use between values. @@ -585,8 +585,8 @@ Joins the arguments to a single string with a separator, flattening any argument    <summary>Example:</summary>    ```handlebars -  {{#set "index" 32}}{{/set~}} -  {{~#join "_" "yomichan" (get "index") "value"}}{{/join}} +  {{set "index" 32~}} +  {{~join "_" "yomichan" (get "index") "value"}}    ```    Output: @@ -603,7 +603,7 @@ Joins the arguments to a single string, without flattening arguments that are ar  <details>    <summary>Syntax:</summary> -  <code>{{#concat <i>value1</i> <i>value1</i> <i>valueN</i>...}}{{/concat}}</code><br> +  <code>{{concat <i>value1</i> <i>value1</i> <i>valueN</i>...}}</code><br>    * _`valueN`_ <br>      A value to join into the resulting string @@ -612,8 +612,8 @@ Joins the arguments to a single string, without flattening arguments that are ar    <summary>Example:</summary>    ```handlebars -  {{#set "index" 32}}{{/set~}} -  {{~#concat "yomichan_" (get "index") "_value"}}{{/concat}} +  {{set "index" 32~}} +  {{~concat "yomichan_" (get "index") "_value"}}    ```    Output: |