Hi,
I have the following problem: For a little CMS, I generate from the user input an XML-File like this:
<article>
<title>some title</title>
<date>the publish date</date>
<author>a author</author>
<source>the source if the article</source>
<articletext>Here is the text of the article...</articletext>
</article>
Now I use an XSL-File and generate the HTML-Output. Everything works fine exept that XSL delete all HTML-Tags from the XML-File. These HTML-Tags are necessarely cause the user can format the articletext with a WYSIWYG-Editor.
Is there a possibility to let XSL leave the HTML-Tags? I tried it in making a template for HTML-Tags like that, but it didn't work:
<xsl:template match="b">
<b><xsl:value-of select="b"/></b>
</xsl:template>
Does anybody have an idea?
THX,
Markus