append
Adds the specified string to the end of another string.
Input
{{ "/my/fancy/url" | append: ".html" }}Output
/my/fancy/url.htmlappend can also accept a variable as its argument.
Input
{% assign filename = "/index.html" %}
{{ "website.com" | append: filename }}Output
website.com/index.htmlLast updated