Closed MrWaz closed 12 years ago
Shame on me :) This issue already was raised and fixed but during refactoring I've lost changes. Now it fixed again, just start package upgrade if you are using Package Control.
Alex.
Hi Alex
Just noticed a new thing. If I use the command w/o selecting anything, it remove the <?xml version="1.0" encoding="UTF-8" standalone="yes"?> Tag at the beginning of the doc. Isn't that a bit weird?
cheers MrWaz
XML declaration issue should already be fixed. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
Hi, I'm a french user of Sublime and your marvelous plugin that really helps when dealing with openXML documents. But the plugin fails to deal with files containing accents like "é", etc..
I'm not a python expert but checking line 45 in indentxml.py I did a slight change that change my life.
pyhton s = parseString(s).toprettyxml() => s = parseString(s.encode( "utf-8" )).toprettyxml()
Don't know if this was a good idea, but a least a suggestion to make your non-english users happy.
All the best Mr Waz