diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-05-04 20:54:32 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-05-04 20:54:32 +0000 |
commit | 7464e40a4ba3470c12001069bbe5f31db209dc4d (patch) | |
tree | 875b1e85378cdd4013e6e48c48148123380b4765 /LUFA/StudioIntegration | |
parent | fd5e98d380820c01e1f4346cf7f11e573e1c5c75 (diff) | |
download | lufa-7464e40a4ba3470c12001069bbe5f31db209dc4d.tar.gz lufa-7464e40a4ba3470c12001069bbe5f31db209dc4d.tar.bz2 lufa-7464e40a4ba3470c12001069bbe5f31db209dc4d.zip |
Minor documentation improvements.
Diffstat (limited to 'LUFA/StudioIntegration')
-rw-r--r-- | LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt index 18c3ea65f..680cea5e2 100644 --- a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt +++ b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt @@ -74,7 +74,7 @@ </xsl:if> </xsl:for-each> - <!-- Add Module chapter --> + <!-- Add Modules chapter --> <chapter> <title>Modules</title> <xsl:for-each select="compounddef[@kind = 'group']"> @@ -226,7 +226,7 @@ <xsl:for-each select="memberdef"> <row id="{@id}" xreflabel="{name}"> <entry> - <xsl:apply-templates select="type"/> + <xsl:value-of select="type"/> </entry> <entry> <xsl:value-of select="name"/> @@ -435,7 +435,7 @@ </section> </xsl:template> - <xsl:template match="linebreak"> + <xsl:template match="linebreak | simplesectsep"> <literallayout> </literallayout> </xsl:template> @@ -467,42 +467,42 @@ <title> <xsl:value-of select="title"/> </title> - <xsl:apply-templates select="para"/> + <xsl:apply-templates/> </note> </xsl:when> <xsl:when test="@kind = 'return'"> <note> <title>Returns</title> - <xsl:apply-templates select="para"/> + <xsl:apply-templates/> </note> </xsl:when> <xsl:when test="@kind = 'warning'"> <warning> <title>Warning</title> - <xsl:apply-templates select="para"/> + <xsl:apply-templates/> </warning> </xsl:when> <xsl:when test="@kind = 'pre'"> <note> <title>Precondition</title> - <xsl:apply-templates select="para"/> + <xsl:apply-templates/> </note> </xsl:when> <xsl:when test="@kind = 'see'"> <note> <title>See also</title> - <xsl:apply-templates select="para"/> + <xsl:apply-templates/> </note> </xsl:when> <xsl:when test="@kind = 'note'"> <note> <title>Note</title> - <xsl:apply-templates select="para"/> + <xsl:apply-templates/> </note> </xsl:when> @@ -680,6 +680,7 @@ <title> <xsl:value-of select="caption"/> </title> + <xsl:call-template name="write.table.content"/> </table> </xsl:when> |