prepend
prepend
Adds the specified string to the beginning of another string.
Input
{{ "apples, oranges, and bananas" | prepend: "Some fruit: " }}
Output
Some fruit: apples, oranges, and bananas
You can also prepend variables:
Input
{% assign url = "liquidmarkup.com" %} {{ "/index.html" | prepend: url }}
Output
liquidmarkup.com/index.html
© 2005, 2006 Tobias Luetke
Licensed under the MIT License.
https://shopify.github.io/liquid/filters/prepend/