mirror of
https://github.com/kemko/liquid.git
synced 2026-01-02 08:15:41 +03:00
463 B
463 B
title
| title |
|---|
| append |
Concatenates two strings and returns the concatenated value.
{% raw %}
{{ "/my/fancy/url" | append: ".html" }}
{% endraw %}
{{ "/my/fancy/url" | append: ".html" }}
append can also be used with variables:
{% raw %}
{% assign filename = "/index.html" %}
{{ "website.com" | append: filename }}
{% endraw %}
{% assign filename = "/index.html" %}
{{ "website.com" | append: filename }}