Lava Filters - RunLava
Category:Other
Description:Executes Lava that is inside a string.
Input: {
"Value": "{% assign test = 'Hello World' %}{{ test }}"
}
Lava:
{{ Value }}
{{ Value | RunLava }}
Output:
{% assign test = 'Hello World' %}{{ test }}
Hello World