Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML inside XML?

Status
Not open for further replies.

Muddmuse

Programmer
Jul 31, 2001
85
0
0
US
Is it possible to put HTML in a XML node and have XSL parse it as HTML? In the following example XML, what would the XSL look like to make the word "World" bold?

<Node>
<Text>Hello <b>World</b></Text>
</Node>
 
It doesn't work for me. What does your xsl look like? If I do this:

<xsl:value-of select=&quot;/Node/Text&quot;/>

I get the &quot;Hello World&quot; but no bold.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top