blob: 0408e21240b726613a05e797f6b7dcde04519719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1">
<xsl:output indent="yes" encoding="utf-8" />
<xsl:key name="index" match="/apis/api" use="@id" />
<xsl:template match="/">
<topics>
<xsl:apply-templates select="/tableOfContents/topic" />
</topics>
</xsl:template>
<xsl:template match="topic">
<topic>
<xsl:attribute name="id">
<xsl:value-of select="@id" />
</xsl:attribute>
</topic>
<xsl:apply-templates select="topic" />
</xsl:template>
</xsl:stylesheet>
|