comparison xslt/content.xslt @ 1685:c3a53a1bb063

Regenerated.
author Ruslan Ermilov <ru@nginx.com>
date Wed, 13 Apr 2016 09:09:39 +0300
parents c454373427ef
children d83f7372feb5
comparison
equal deleted inserted replaced
1684:ac9fa096b685 1685:c3a53a1bb063
27 </xsl:template> 27 </xsl:template>
28 28
29 <xsl:template match="section/section[not(@id) and @name]"> 29 <xsl:template match="section/section[not(@id) and @name]">
30 <center><h5> <xsl:value-of select="@name"/> </h5></center> 30 <center><h5> <xsl:value-of select="@name"/> </h5></center>
31 <xsl:apply-templates/> 31 <xsl:apply-templates/>
32 </xsl:template>
33
34 <xsl:template match="para[@id]">
35 <a name="{@id}"/>
36 <p> <xsl:apply-templates/> </p>
32 </xsl:template> 37 </xsl:template>
33 38
34 <xsl:template match="para"> <p> <xsl:apply-templates/> </p> </xsl:template> 39 <xsl:template match="para"> <p> <xsl:apply-templates/> </p> </xsl:template>
35 40
36 <xsl:template match="para[@align]"> <p align="{@align}"> <xsl:apply-templates/> </p> </xsl:template> 41 <xsl:template match="para[@align]"> <p align="{@align}"> <xsl:apply-templates/> </p> </xsl:template>