Subject: RE: Preserve White-Spacing
From: Mike Brown <mbrown@xxxxxxxxxxxxx>
Date: Mon, 7 Feb 2000 12:05:15 -0700
|
tmmet tvp wrote:
> In my xml file,I've to preserve whitespace for a particular
> tag(text)... DTD is as follows...
> <!ELEMENT Name (#PCDATA)>
> How to set preserve whitespacing property
Add to your DTD:
<!ATTLIST Name
xml:space (default | preserve) "preserve">
This is equivalent to doing this in your document:
<Name xml:space="preserve">...</Name>
See section 2.10 of the XML 1.0 Recommendation for details.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|