summaryrefslogtreecommitdiffstats
path: root/packaging/doctype.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/doctype.xsl')
-rw-r--r--packaging/doctype.xsl12
1 files changed, 12 insertions, 0 deletions
diff --git a/packaging/doctype.xsl b/packaging/doctype.xsl
index 8cf535e..eb6e41a 100644
--- a/packaging/doctype.xsl
+++ b/packaging/doctype.xsl
@@ -1,5 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ This stylesheet will output the word "articleinfo" or
+ "bookinfo" by finding either the <article> or <book> XML
+ element in the document. Use it like this:
+
+ xsltproc doctype.xsl file.xml
+
+ The "file.xml" file MUST VALIDATE in order for the results
+ to be meaningful. If the document might not validate, use the
+ "doctype" shell script instead.
+ -->
+
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="/article">articleinfo</xsl:template>