append

Adds the specified string to the end of another string. append can also accept a variable as its argument.

Input

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

Output

/my/fancy/url.html
website.com/index.html