From: Fredrik Unger <fred@tree.se> Date: Mon, 6 Feb 2012 14:04:19 +0000 (+0100) Subject: Adding docbook.xsl for tree-cutter processing X-Git-Url: https://source.tree.se/git?a=commitdiff_plain;h=33cfc1eb00d161f9ba4ac0f0d5f48471cabeff33;p=treecutter.git Adding docbook.xsl for tree-cutter processing --- diff --git a/style/awesomesauce/docbook.xsl b/style/awesomesauce/docbook.xsl new file mode 100644 index 0000000..39ff182 --- /dev/null +++ b/style/awesomesauce/docbook.xsl @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + +<!-- Point this to your docbook.xsl. This is the Debian standard location. --> + +<xsl:import href="file:///usr/share/xml/docbook/stylesheet/docbook-xsl-ns/xhtml-1_1/docbook.xsl"/> + +<xsl:template match="*" mode="process.root"> + <xsl:apply-templates select="."/> +</xsl:template> + +</xsl:stylesheet>