summaryrefslogtreecommitdiff
path: root/docs/xslt/pretty-format.xsl
blob: 6b12f9a048209eaf4c1afbb3cf351a6e12874f9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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>