-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Description
When writing a KML Document to a file, the XML header is generated in a wrong order leading to invalid XML files. The header is generated as <?xml encoding="UTF-8" version="1.0"?>
, however the specification says, that the order has to be <?xml version="1.0" encoding="UTF-8"?>
.
I assume this comes from the "attributes" being defined in a Dict
, which is unorderes as far as I understood.
Line 142 in 32bb3fe
Node(XML.Declaration, nothing, Dict("version" => "1.0", "encoding" => "UTF-8")), |
Metadata
Metadata
Assignees
Labels
No labels