[
Lists Home |
Date Index |
Thread Index
]
- From: Chris Lovett <clovett@microsoft.com>
- To: 'Rick Jelliffe' <ricko@allette.com.au>, xml-dev@ic.ac.uk
- Date: Wed, 4 Nov 1998 09:39:15 -0800
I like Rick's idea of xml:content-mode="CDATA". This definitely
disambiguates this whitespace case for the validating parser.
So
<!DOCTYPE a [
<!ELEMENT a (b, c)>
<!ELEMENT b EMPTY>
<!ELEMENT c EMPTY>
]>
<a><![CDATA[ ]]><b/><c/></a>
would become:
<!DOCTYPE a [
<!ELEMENT a (b, c)>
<!ATTLIST a xml:content-mode CDATA #FIXED "CDATA">
<!ELEMENT b EMPTY>
<!ELEMENT c EMPTY>
]>
<a> <b/><c/></a>
It's true that a non-validating parser will have difficulty with the latter
example, but that is solved by putting the xml:content-mode attribute on the
instance.
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|