Is it possible to import svg files with editable text? My svg file does not use path so my expectation is that the text is editable after import. However it is not editable.
<svg viewBox="0 0 240 80" xmlns="http://www.w3.org/2000/svg">
<text x="20" y="35">My</text>
<text x="40" y="35">cat</text>
<text x="55" y="55">is</text>
<text x="65" y="55">Grumpy!</text>
</svg>
My goal is to create a process or sequence diagram. I noticed you can import CSV or UML markup to accomplish that as well. But I will have less control over styling if I do it that way.
Is there a way to import SVG so that it is editable?
