Skip to content

Commit

Permalink
GMP doc: rename template details-summary
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmundell authored and bjoernricks committed Apr 30, 2024
1 parent e292092 commit 148a0f3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/schema_formats/HTML/HTML.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</xsl:choose>
</xsl:template>

<xsl:template name="details-summary">
<xsl:template name="details-summary-2">
<xsl:param name="id"/>
<xsl:param name="text"/>
<summary id="{$id}"
Expand Down Expand Up @@ -290,7 +290,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="rnc-preamble">
<details>
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'rnc_preamble'"/>
<xsl:with-param name="text" select="'4 RNC Preamble'"/>
</xsl:call-template>
Expand All @@ -317,7 +317,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="type-summary">
<details open="">
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'type_summary'"/>
<xsl:with-param name="text" select="'1 Summary of Data Types'"/>
</xsl:call-template>
Expand Down Expand Up @@ -366,7 +366,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="type-details">
<details open="">
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'type_details'"/>
<xsl:with-param name="text" select="'5 Data Type Details'"/>
</xsl:call-template>
Expand All @@ -389,7 +389,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="element-summary">
<details open="">
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'element_summary'"/>
<xsl:with-param name="text" select="'2 Summary of Elements'"/>
</xsl:call-template>
Expand All @@ -401,7 +401,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="element-details">
<details open="">
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'element_details'"/>
<xsl:with-param name="text" select="'6 Element Details'"/>
</xsl:call-template>
Expand Down Expand Up @@ -768,7 +768,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="command-summary">
<details open="">
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'command_summary'"/>
<xsl:with-param name="text" select="'3 Summary of Commands'"/>
</xsl:call-template>
Expand All @@ -780,7 +780,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="command-details">
<details open="">
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'command_details'"/>
<xsl:with-param name="text" select="'7 Command Details'"/>
</xsl:call-template>
Expand Down Expand Up @@ -836,7 +836,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<xsl:template name="changes">
<details open="">
<xsl:call-template name="details-summary">
<xsl:call-template name="details-summary-2">
<xsl:with-param name="id" select="'changes'"/>
<xsl:with-param name="text">
<xsl:value-of select="'8 Compatibility Changes in Version '"/>
Expand Down

0 comments on commit 148a0f3

Please sign in to comment.