prepend v1.9.1 在字符串开头添加另一个字符串。 输入 1{{ "apples, oranges, and bananas" | prepend: "Some fruit: " }} 输出 1Some fruit: apples, oranges, and bananas prepend 也可以用于变量。 输入 12{% assign url = "example.com" %}{{ "/index.html" | prepend: url }} 输出 12example.com/index.html