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