Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: help w/HTML escaping in XML tags?

From: David Carlisle <davidc@---.--.-->
To: NULL
Date: 3/3/2005 10:11:00 AM
    I may not have been completely clear my original post.  The XML 
    documents I receive don't come with pre-escaped HTML but actual HTML. 
    Here's a brief example:

  <myDocument>
    <tag1>This is some <b>HTML</b> code</tag1>
  </myDocument>

  In this case, the <b> tags are HTML-escaped during the XSL
  transformation;

It's possible that that happens but you would have to work pretty hard
at it for example
<xsl:template match="b">
 &lt;b&gt;<xsl:apply-templates/> &lt;/b&gt;
</xsl:template>

would have that effect. If that is the case the answer would be to not
do that but instead just copy the nodes to the output

<xsl:template match="tag1">
 <xsl:copy-of select="node()"/>
</xsl:template>

The result you say you want is far easier to obtain than the result you
say you are getting, so you'll have to give at least _some_ hint of what
your stylesheet looks like to give anyone a clue how to change it.

David


transparent
Print
Mail
Digg
delicious
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent