#16
|
|||
|
|||
What is creating the .svg files? I have seem a few svg files on the internet that aren't valid xml (they start with <svg instead of <?xml), which are therefore not detected as xml.
|
#17
|
|||
|
|||
Actually it isn't so much that <svg is there instead of <?xml, but rather that the <?xml ...> leading tag is simply missing from the svg files.
You can quite easily fix these svg files by adding something like this to the start of these xml (text) files (copied from a valid .svg file): <?xml version="1.0" standalone="no"?> |
|
|