prepend

Adds the specified string to the beginning of another string. prepend can also accept a variable as its argument.

Input

{{ "apples, oranges, and bananas" | prepend: "Some fruit: " }}
{% assign url = "example.com" %} {{ "/index.html" | prepend: url }}

Output

Some fruit: apples, oranges, and bananas
example.com/index.html