-
Type:
Bug
-
Resolution: Obsolete
-
Priority:
Low
-
Affects Version/s: 5.9.2
-
Component/s: Editor - Page / Comment Editor
-
Severity 3 - Minor
Insert a code macro in a Confluence page with the following XML snippet:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<si>
<t>Row1A</t>
</si>
<si>
<t>Row1B</t>
</si>
</sst>
Choose XML/HTML as syntax highlighting. Notice that the rendered XML after the page is saved looks like this:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<si>
<t>Row1A</t>
</si>
<si>
<t>Row1B</t>
</si>
</sst>
The
<t>
tag has been changed to
<t>
Other tags are not affected.
If plain text syntax highlighting is chosen instead, the entire XML is displayed properly.