Changing & to &
-
Hello,
I was trying to export data into CSV format from my node js application but while exporting data into CSV it changes some special character like & to '& amp;' can you please help me with this
-
Hi, are you able to replicate it in the playground?
https://playground.jsreport.net/
-
Please check this link I've added some data
https://playground.jsreport.net/w/anon/a~it_LwZ
-
Handlebars do HTML escaping when you use double brackets
{{prop}}
.
You need to use triple brackets to avoid escaping.{{{toCSV .}}}
-
It is working for me Thank you