append
Specification
{{ text | append: other_string }}
Parameter | Description | Example Values |
---|---|---|
text (required) | The original text. | “The quick brown fox” |
other_string (required) | The other string that you want appended to the given text. | ” jumped over the lazy dog” |
Example
{{ 'The quick brown fox' | append: ' jumped over the lazy dog' }}