summaryrefslogtreecommitdiffhomepage
path: root/docs/xslt/content.xslt
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2011-08-05 09:25:34 +0000
committerIgor Sysoev <igor@sysoev.ru>2011-08-05 09:25:34 +0000
commita6c91b11bf77264badc714e53e710803cf181a73 (patch)
treeb4576ab20a25dda2044d3ef64ab98af86d23f9bc /docs/xslt/content.xslt
parentf549c03524626bde4ed52c6a009ac769079f5fb4 (diff)
downloadnginx-a6c91b11bf77264badc714e53e710803cf181a73.tar.gz
nginx-a6c91b11bf77264badc714e53e710803cf181a73.tar.bz2
skeleton for documentation processing
Diffstat (limited to 'docs/xslt/content.xslt')
-rw-r--r--docs/xslt/content.xslt43
1 files changed, 43 insertions, 0 deletions
diff --git a/docs/xslt/content.xslt b/docs/xslt/content.xslt
new file mode 100644
index 000000000..d772ecfdb
--- /dev/null
+++ b/docs/xslt/content.xslt
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+
+ <xsl:template match="section[@name and @title]">
+
+ <a name="{@name}"/>
+ <center>
+ <h4>
+ <xsl:value-of select="@title"/>
+ </h4>
+ </center>
+ <xsl:apply-templates/>
+ </xsl:template>
+
+ <xsl:template match="section[not(@name) and @title]">
+
+ <center>
+ <h4>
+ <xsl:value-of select="@title"/>
+ </h4>
+ </center>
+ <xsl:apply-templates/>
+ </xsl:template>
+
+ <xsl:template match="section[not(@name) and not(@title)]">
+ <xsl:apply-templates/>
+ </xsl:template>
+
+
+ <xsl:template match="para">
+ <p>
+ <xsl:apply-templates/>
+ </p>
+ </xsl:template>
+
+
+ <xsl:template match="value">
+ <i>
+ <xsl:apply-templates/>
+ </i>
+ </xsl:template>
+</xsl:stylesheet> \ No newline at end of file