diff options
author | Mariano Guerra <[email protected]> | 2016-10-21 14:39:01 +0100 |
---|---|---|
committer | Mariano Guerra <[email protected]> | 2017-03-13 11:51:52 +0100 |
commit | 830a3cc565b43954988ffedf56d6a00a45e4608a (patch) | |
tree | 0cd47d7ffaa6e0585e52c966e584bd3771625df6 /lib | |
parent | 140adf0584f2ff5e0853b5dc763dc8082afb7750 (diff) | |
download | otp-830a3cc565b43954988ffedf56d6a00a45e4608a.tar.gz otp-830a3cc565b43954988ffedf56d6a00a45e4608a.tar.bz2 otp-830a3cc565b43954988ffedf56d6a00a45e4608a.zip |
add semantic markup to section info
Diffstat (limited to 'lib')
-rw-r--r-- | lib/erl_docgen/priv/xsl/db_html.xsl | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/lib/erl_docgen/priv/xsl/db_html.xsl b/lib/erl_docgen/priv/xsl/db_html.xsl index 6a85f95e09..bdfd839cad 100644 --- a/lib/erl_docgen/priv/xsl/db_html.xsl +++ b/lib/erl_docgen/priv/xsl/db_html.xsl @@ -1252,11 +1252,9 @@ <xsl:call-template name="menu_top"/> - <p> - <strong><xsl:value-of select="/book/header/title"/></strong><br/> - <strong>User's Guide</strong><br/> - <small>Version <xsl:value-of select="$appver"/></small> - </p> + <p class="section-title"><xsl:value-of select="/book/header/title"/></p> + <p class="section-subtitle">User's Guide</p> + <p class="section-version">Version <xsl:value-of select="$appver"/></p> <xsl:call-template name="menu_middle"/> @@ -1413,11 +1411,9 @@ <xsl:call-template name="menu_top"/> - <p> - <strong><xsl:value-of select="/book/header/title"/></strong><br/> - <strong>Reference Manual</strong><br/> - <small>Version <xsl:value-of select="$appver"/></small> - </p> + <p class="section-title"><xsl:value-of select="/book/header/title"/></p> + <p class="section-subtitle">Reference Manual</p> + <p class="section-version">Version <xsl:value-of select="$appver"/></p> <xsl:call-template name="menu_middle"/> @@ -2256,11 +2252,9 @@ <xsl:call-template name="menu_top"/> - <p> - <strong><xsl:value-of select="/book/header/title"/></strong><br/> - <strong>Release Notes</strong><br/> - <small>Version <xsl:value-of select="$appver"/></small> - </p> + <p class="section-title"><xsl:value-of select="/book/header/title"/></p> + <p class="section-subtitle">Release Notes</p> + <p class="section-version">Version <xsl:value-of select="$appver"/></p> <xsl:call-template name="menu_middle"/> |