Hello! Great tool, thanks for sharing!
I'm having a small issue with escaped quotes.
Ideal output "HEADER1","HEADER2"
Resulting output """HEADER1""","""HEADER2""" or HEADER1,HEADER2
Tested code:
var headers = ['HEADER1', 'HEADER2'];
var headers = ['\"HEADER1\"', '\"HEADER2\"'];
Is there a way to specific an enclosing tag perhaps?
Thanks!
Hello! Great tool, thanks for sharing!
I'm having a small issue with escaped quotes.
Ideal output
"HEADER1","HEADER2"Resulting output
"""HEADER1""","""HEADER2"""orHEADER1,HEADER2Tested code:
var headers = ['HEADER1', 'HEADER2'];var headers = ['\"HEADER1\"', '\"HEADER2\"'];Is there a way to specific an enclosing tag perhaps?
Thanks!