M
Manuel Collado
DTDs allow to declare:
<!ATTLIST xxx xml:space ( preserve ) #FIXED 'preserve'>
Is there a way to specify something like that in a RNG or XSD schema?
The naive XSD declaration:
<xs:attribute name="xml:space" default="preserve"/>
is not accepted by tools because "xml:space" is not a valid attribute name.
TIA.
<!ATTLIST xxx xml:space ( preserve ) #FIXED 'preserve'>
Is there a way to specify something like that in a RNG or XSD schema?
The naive XSD declaration:
<xs:attribute name="xml:space" default="preserve"/>
is not accepted by tools because "xml:space" is not a valid attribute name.
TIA.