I am using an array to output a list of items and would like to split them with ’ and ’ & line-break.
I tried like {{my_macro(my_input_var)|join(’ and \n ')}} but it only prints “\n”
What works actually is:
{{my_macro(my_input_var)|join(’ and
')}}
However that does not look very nice and I was wondering if there is not a special command/character I could use?
Thanks
Chris