nixpkgs/doc/manual/options-to-docbook.xsl

46 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
xmlns="http://docbook.org/ns/docbook"
extension-element-prefixes="str"
>
<xsl:output method='xml' encoding="UTF-8" />
<xsl:template match="/expr/list">
<chapter>
<title>List of Options</title>
<variablelist>
<xsl:for-each select="attrs">
<varlistentry>
<term>
<option>
<xsl:for-each select="attr[@name = 'name']/list/string">
<xsl:value-of select="@value" />
<xsl:if test="position() != last()">.</xsl:if>
</xsl:for-each>
</option>
</term>
<listitem><para>
<xsl:value-of select="attr[@name = 'description']/string/@value" />
</para></listitem>
</varlistentry>
</xsl:for-each>
</variablelist>
</chapter>
</xsl:template>
</xsl:stylesheet>