Created
July 8, 2011 13:33
-
-
Save rmzelle/1071836 to your computer and use it in GitHub Desktop.
jEdit XML Indent bug with deleting spaces in attribute values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<style> | |
<!-- this section --> | |
<group prefix=" " delimiter=" "></group> | |
<names variable="editor" delimiter=", " prefix=" " suffix=""></names> | |
<names variable="editor translator" delimiter=", " prefix=" (" suffix=")"></names> | |
<!-- becomes --> | |
<group prefix=" " delimiter=""></group> | |
<names variable="editor" delimiter=", " prefix="" suffix=""></names> | |
<names variable="editor translator" delimiter=", " prefix="(" suffix=")"></names> | |
<!-- spaces in the attribute values below are unaffected --> | |
<group suffix="." delimiter=", "></group> | |
<text macro="editor" prefix=" "/> | |
<group delimiter=" "></group> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment