Syntax
Liquid with output
Hello, {{ "world" }}Liquid without output
{% assign scope = "world" %}
{% assign message = "Hello, " | append: scope %}
{{ message }}Last updated
Was this helpful?
Hello, {{ "world" }}{% assign scope = "world" %}
{% assign message = "Hello, " | append: scope %}
{{ message }}Last updated
Was this helpful?
Was this helpful?