aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/xsl/xhtml.xsl
diff options
context:
space:
mode:
authorreinelt <>2004-06-02 05:28:06 +0000
committerreinelt <>2004-06-02 05:28:06 +0000
commit2e3c73e0883a2bdfa525fc6fe4e10d30971d9651 (patch)
tree8333b427632f129e005ca6f7d4796c18ffddccb6 /documentation/xsl/xhtml.xsl
parent91ef53962dfc61a78b58a5fcd7ca2e3941a1be1b (diff)
downloadlcd4linux-2e3c73e0883a2bdfa525fc6fe4e10d30971d9651.tar.gz
[lcd4linux @ 2004-06-02 05:27:59 by reinelt]
added documentation tree
Diffstat (limited to '')
-rw-r--r--documentation/xsl/xhtml.xsl16
1 files changed, 16 insertions, 0 deletions
diff --git a/documentation/xsl/xhtml.xsl b/documentation/xsl/xhtml.xsl
new file mode 100644
index 0000000..1f5cb98
--- /dev/null
+++ b/documentation/xsl/xhtml.xsl
@@ -0,0 +1,16 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+<!--
+ XSL stylesheet for processing documentation for the lcd4linux project
+ Copyright 2004 Xavier Vello <xavier66@free.fr>
+ Copyright 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
+-->
+
+<!--Standard html tags, just a wraper-->
+
+<xsl:template match="@*|node()">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()"/>
+ </xsl:copy>
+</xsl:template>
+
+</xsl:stylesheet>