-
-
Notifications
You must be signed in to change notification settings - Fork 116
Open
Labels
Description
Hello,
First of all I would like to thank you for building such a great tool.
I am encountering a bug using the online tool when translating the less than <
character at the end of a text section.
This produces the following xml :
<text x="26" y="44" ><</text>
^^
Ascii to reproduce :
┌───┐
│ │
│ <│
└───┘
I am personally side stepping this bug by replacing these <<
with an utf8 equivalent in post processing :
sed -i 's/<</\<</g' bob.svg
This replaces <<
with <<
.
Thanks for your work