Single quotes converted to double quotes in sightly
Hi all,
In sightly if I try to use single quotes its getting converted to double quotes. Same thing renders fine in JSP.
<meta name='tags' content='tag1,tag2' />
converted to
<meta name="tags" content="tag1,tag2" />
I need something like
<meta name='tags' content='tag1, tag2' data-content='["tag1", "tag2"]' />
Any Sightly Specific solution ? I know we can include a JSP in sightly but any solution in sightly itself.