Skip to content

DEVDOCS-000: Fix multiConcat helper example in handlebars reference #1000

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Helpers that are used to define and render templates.
| [get](#get) | object | Use property paths (`a.b.c`) to get a value or nested value from the context. |
| [getObject](#getobject) | object | Use property paths (`a.b.c`) to get an object from the context. |
| [concat](#concat) | string | Concatenates two strings. |
| [multiConcat](#multiConcat) | string | Concatenates multiple strings. |
| [multiConcat](#multiconcat) | string | Concatenates multiple strings. |
| [join](#join) | string | Joins an array of string elements into one string. |
| [json](#json) | string | Converts a JavaScript object into a JSON string. |
| [JSONparse](#jsonparse) | object | Parses the given string using `JSON.parse`. |
Expand Down Expand Up @@ -1338,7 +1338,7 @@ Concatenates multiple strings.
#### Example

```handlebars showLineNumbers
{{concat 'there' 'is' 'no' 'spoon'}}
{{multiConcat 'there' 'is' 'no' 'spoon'}}
<!-- => thereisnospoon -->
```

Expand Down