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