
January 12th, 2002, 05:51 PM
|
|
Junior Member
|
|
Join Date: Nov 2001
Posts: 7
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
<br/> and carriage returns in xml
Just starting to get to grips with xml now and have also started using schemas but there is just one thing that is annoying me at the moment.
How can I use XSL/XSLT or XML Schema to make sure that either <br/> are interpreted as carriage returns or that carriage returns are processed.
At the moment In my XML file I have a looooong article (an episode synopsis actually) which used <br/> tags when it was in a html file. But now they`re in an xml file, the <br/> and the carriage returns are ignored.
Below is the bit of schema for that section of the xml document:
<xs:element name="DESCRIPTION" type="xs:string">
<xs:complexType mixed="true">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="br" />
</xs:choice>
</xs:complexType>
</xs:element>
Any1 got an idea? Ne help would be appreciated.
|