append

두 개의 문자열을 연결시키고, 그 값을 반환합니다.

입력


{{ "/my/fancy/url" | append: ".html" }}

출력

/my/fancy/url.html

append는 변수와 함께 사용될 수도 있습니다:

입력


{% assign filename = "/index.html" %}
{{ "website.com" | append: filename }}

출력


website.com/index.html