"xml:" is missing before name attribute in SVG-File
-
The Program "Flamepainter 4" which i have, is able
to import vector curves via an SVG-File. But this
Program is picky about importing a .SVG from VS.Get an Error Message which said
( Unable to read svg file
Error:Unexpected attribute "name" )
.
.
The Part in the SVG-File which the Error Message
mentioned looks like this.<svg width="136.1907" height="259.1825" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xml:space="preserve" name="Untitled-1">
.
.
In the meantime i figure out that an "xml:" is missing
before that name attribute.
( xml:space="preserve" name="Untitled-1"> )When i edit the SVG-File from VS and set
the missing "xml:" the File is loaded without
any Error Message.
This works:
( xml:space="preserve" xml:name="Untitled-1"> )It is possible to change the .SVG export output
so that this "xml:" is set from VS ?
-
@Subpath Added this to the backlog.
-
@VectorStyler , thanks