v1.9.1
Concatenates two strings and returns the concatenated value.
Input
1 | {{ "/my/fancy/url" | append: ".html" }} |
Output
1 | /my/fancy/url.html |
append can also be used with variables:
Input
1 | {% assign filename = "/index.html" %} |
Output
1 |
|
v1.9.1
Concatenates two strings and returns the concatenated value.
Input
1 | {{ "/my/fancy/url" | append: ".html" }} |
Output
1 | /my/fancy/url.html |
append can also be used with variables:
Input
1 | {% assign filename = "/index.html" %} |
Output
1 |
|