Liquid variables

Corrected? {% action 'how to use setProp'() %} to {% action 'how to use setProp()' %}

getProp()

Description

Read a Liquid variable from the current context. The supported types are: string, array, number and hash.

Usage

getProp("<VARIABLE NAME>")

Example:

{% assign my_liquid_variable_name = "Hello world" %}

{% action 'how to use getProp()' %}
  var string = getProp("my_liquid_variable_name");
{% endaction %}

setProp()

Description

Write a value into a Liquid variable. The supported types are: string, array, number and hash.

Usage

setProp("<VARIABLE NAME>", <VALUE>);

Example:

{% action 'how to use setProp()' %}
  setProp("my_liquid_variable_name", 42);
{% endaction %}

<p>{{my_liquid_variable_name}}</p>