Need to display the content
This is my input html-body
<body class="calibre">
Gabriel García Márquez
<p class="calibre1">Prêmio Nobel de Literatura </p>
<p class="calibre1"></p>
</body>
I am using xslt1.0.
<xsl:message>value=<xsl:copy-of
select="xhtml:html开发者_如何学运维/xhtml:body/*"/></xsl:message>
produces output a empty. How to get the nodes and also the text.. Please help me..Thanks in advance
Your input has no namespace. Remove the namespace in your stylesheet.
精彩评论