I have a jinja2 xml template
<final_tag>{{some_tag}}</final_tag>
I have a context with a string containing ",".
{"some_tag" : "a,b,c"}
How can I use jinja2 to explode the string into multiple elements?
<final_tag>"a"</final_tag>
<final_tag>"b"</final_tag>
<final_tag>"c"</final_tag>
Is there some smart feature or do I have to start thinking about not using jinja2 for this?