This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Preserve White-Spacing


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]