v1.9.1
Adds the specified string to the beginning of another string.
Input
1 | {{ "apples, oranges, and bananas" | prepend: "Some fruit: " }} |
Output
1 | Some fruit: apples, oranges, and bananas |
prepend can also be used with variables:
Input
1 | {% assign url = "example.com" %} |
Output
1 |
|