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: How to transform <BR> to </P><P>




The proper definition of your needed transformation is:

TEXT/text()    --->   TEXT/<P>text()</P>
<BR>           --->


That is: 

1 Any text node must be copied as a child of a new <P> element.

2. A <BR> element must be ignored.


The above two transformations are straightforward using XSLT.

Dimitre.

---------
Thanks Dimitre,

But that'll make the whole text node one paragraph, instead of breaking into
new paragraphs every time it meets a <BR> as wanted.

 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]