diff options
| author | Ruslan Ermilov <ru@nginx.com> | 2011-08-09 15:15:36 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@nginx.com> | 2011-08-09 15:15:36 +0000 |
| commit | b0067b68537de308656799f795ab74401125b7e2 (patch) | |
| tree | 8344c105ac5d1a3a32c2cf53fdf990e9e4aa31fc /docs/xslt/content.xslt | |
| parent | aa64c39b20c2e4d77392d9de4abf79a4c242a579 (diff) | |
| download | nginx-b0067b68537de308656799f795ab74401125b7e2.tar.gz nginx-b0067b68537de308656799f795ab74401125b7e2.tar.bz2 | |
Regen after makefile changes.
Diffstat (limited to 'docs/xslt/content.xslt')
| -rw-r--r-- | docs/xslt/content.xslt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/xslt/content.xslt b/docs/xslt/content.xslt index d772ecfdb..e691ad3d3 100644 --- a/docs/xslt/content.xslt +++ b/docs/xslt/content.xslt @@ -1,43 +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"/> + <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"/> + <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/> + <xsl:apply-templates/> </p> </xsl:template> - <xsl:template match="value"> <i> - <xsl:apply-templates/> + <xsl:apply-templates/> </i> </xsl:template> -</xsl:stylesheet>
\ No newline at end of file + +</xsl:stylesheet> |
