I am working on a filter to append a new item from a variable into list. However this variable has spaces. The new generated list splits the space into different variable. How should I append as single item?
This is a minimum example.
<$vars variable="new day">
<$list filter="[[Monday]] [[Tuesday]] +[append<variable>]">
<$link/>
<br/>
</$list>
</$vars>
The output looks like
But I expect only three items: Monday, Tuesday and new day.