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]
Other format: [Raw text]

Re: Preserving XHTML markup


-- Adam Sherman [Mon, 04 Feb 2002 12:37:53 -0500]:
>(Newbie Alert!)
>
>xml:
><mycustomtag>
>    Some html <b>here</b>.
></mycustomtag>
>
>
>How do I preserve things so I end up with:
>
><p>
>    Some html <b>here</b>.
></p>
>
>My XSLT stylesheet loses all the markup in the children of
>selected/processed nodes...

your problem is your XML itself.  it should be:


<mycustomtag>
	<![CDATA[Some html <b>here</b>.]]>
</mycustomtag>


then your XSL should be:
<p>
<xsl:value-of select="mycustomtag" disable-output-escaping="true"/>
</p>



---
Eric Vitiello
Perceive Designs
<www.perceive.net>


 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]