Allows you to display in DokuWiki the result of a XSL transformation
Compatible with DokuWiki
Download and install the plugin using the Plugin Manager using the following URL. Refer to Plugins on how to install plugins manually.
Your DokuWiki installation must run on PHP5 and have xsl module installed.
To use XSLT transformation, you will need to use &&XML&&, &&XSLT&& and &&END&& tags. Theses tags must have line separators before and after them. The XML file is located between &&XML&& and &&XSLT&&, and the xslt to use is between &&XSLT&& and &&END&&. Easy enough, no ?
&&XML&& <xml> <book>Book 1</book> <book>Book 2</book> </xml> &&XSLT&& <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40"> <xsl:template match="/">List of books : <ul><xsl:apply-templates /></ul></xsl:template> <xsl:template match="book"><li><b><xsl:apply-templates /></b></li></xsl:template> </xsl:stylesheet> &&END&&
This will display as :
List of books : * Book 1 * Book 2
More information on http://peyronnet.dyndns.org/~remi/wiki/doku.php/dokuwikixslt