summaryrefslogtreecommitdiffstats
path: root/lib/fence2wiki.xsl
blob: 81121698d55e1f2d3767bc74323a9b72bc78b56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version='1.0' xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/resource-agent">
[=#<xsl:value-of select="@name" />]
||='''<xsl:value-of select="@shortdesc" />''' =||='''<xsl:value-of select="@name" />''' =||
|| '''Name Of The Argument For STDIN''' || '''Name Of The Argument For Command-Line''' || '''Default Value''' ||'''Description''' ||
<xsl:apply-templates select="parameters/parameter" />
</xsl:template>

<xsl:template match="parameters/parameter">|| <xsl:value-of select="@name" /> || <xsl:value-of select="getopt/@mixed" /> || {{{<xsl:value-of select="content/@default" disable-output-escaping="yes"/>}}} || <xsl:value-of select="shortdesc" /> ||
</xsl:template>

</xsl:stylesheet>