You say you're having trouble but you don't say what trouble you are having.
Producing output in a non-XML format will always be a bit tricky, but it can usually be achieved using disable-output-escaping provided it's supported in your particular environment. This may depend on how you run the transformation, e.g. it may not work when writing to a DOM result.
This code is nonsense:
<h:outputText value="<xsl:value-of select="tagid"/>"/>
because it means your stylesheet isn't even well-formed XML. It should be
<h:outputText value="{tagid"}"/>
This of course is nothing to do with the taglibs.
__________________
Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer\'s Reference
|