Empty xmlns generated by actions
Posted: Fri Aug 30, 2013 2:15 pm
Hi guys,
I have an add-on XSD with the following header:
Eventhough I have the elementFormDefault="qualified", Author actions generate: xmlns="" when a tag is inserted; for example my "bold" action is define to surround with the tag <b/> (which works fine in the document), but in fact it generates <b xmlns=""/>, which breaks my document.
I know I can specify that the insert fragment should be <b xmlns="http://www.oxygenxml.com/ns/labtest"/> but that will make for heavy documents.
Thanks for any help,
Yann
I have an add-on XSD with the following header:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
targetNamespace="http://www.oxygenxml.com/ns/labtest"
xmlns="http://www.oxygenxml.com/ns/labtest">
I know I can specify that the insert fragment should be <b xmlns="http://www.oxygenxml.com/ns/labtest"/> but that will make for heavy documents.
Thanks for any help,
Yann