diff options
Diffstat (limited to 'docs/xslt/pretty-format.xsl')
-rw-r--r-- | docs/xslt/pretty-format.xsl | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/xslt/pretty-format.xsl b/docs/xslt/pretty-format.xsl deleted file mode 100644 index 6b12f9a048..0000000000 --- a/docs/xslt/pretty-format.xsl +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version='1.0'?> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:samba="http://www.samba.org/samba/DTD/samba-doc" - version="1.1"> - - <xsl:output method="xml" encoding="UTF-8" doctype-public="-//OASIS//DTD DocBook XML V4.2//EN" indent="yes" doctype-system="http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"/> - - <!-- This is needed to copy content unchanged --> - <xsl:template match="@*|node()|processing-instruction()"> - <xsl:copy> - <xsl:apply-templates select="@*|node()|processing-instruction()"/> - </xsl:copy> - </xsl:template> - -</xsl:stylesheet> |