diff options
Diffstat (limited to 'docs/xslt/lists.mod.xsl')
-rw-r--r-- | docs/xslt/lists.mod.xsl | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/xslt/lists.mod.xsl b/docs/xslt/lists.mod.xsl deleted file mode 100644 index 49e39d5e7f..0000000000 --- a/docs/xslt/lists.mod.xsl +++ /dev/null @@ -1,29 +0,0 @@ -<?xml version='1.0'?> -<!--############################################################################# -|- ############################################################################# -| -| PURPOSE: -+ ############################################################################## --> - -<xsl:stylesheet - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" - exclude-result-prefixes="doc" version='1.0'> - - - <xsl:template match="simplelist"> - <xsl:if test="title"> <xsl:apply-templates select="title"/></xsl:if> - <xsl:text> \begin{itemize} </xsl:text> - <xsl:apply-templates select="member"/> - <xsl:text> \end{itemize} </xsl:text> - </xsl:template> - - - <xsl:template match="member"> - <xsl:text> %--- Item </xsl:text> - <xsl:text>\item[] </xsl:text> - <xsl:apply-templates/> - <xsl:text> </xsl:text> - </xsl:template> - -</xsl:stylesheet> |