prepend

在一个字符串前面附加另一个字符串。

输入


{{ "apples, oranges, and bananas" | prepend: "Some fruit: " }}

输出

Some fruit: apples, oranges, and bananas

prepend 也可以和变量一起使用。

输入


{% assign url = "example.com" %}
{{ "/index.html" | prepend: url }}

输出


example.com/index.html