vscode-svg2
vscode-svg2 copied to clipboard
How to ignore document formatting in lines or files?
How to ignore document formatting in lines or files?
I need:
<text x="1em" y="1em">
<tspan dx="0em" dy="0em">123</tspan><tspan dx="0em" dy="0em">45</tspan>
</text>
But after formatting, tspan
wraps to a new line, which adds a space to the SVG.
<text x="1em" y="1em">
<tspan dx="0em" dy="0em">123</tspan>
<tspan dx="0em" dy="0em">45</tspan>
</text>
The current formatting is implemented using the vscode HTML service, and this customization is not possible at this time