categories.xsl
来自「bbbbbbbbbb bbbbbbbbbb gbbbbbbbbbbbbbbbbb」· XSL 代码 · 共 21 行
XSL
21 行
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<categories-list>
<xsl:for-each select="//Categories/Category">
<category>
<xsl:attribute name="id">
<xsl:value-of select="@ID"/>
</xsl:attribute>
<xsl:attribute name="name">
<xsl:value-of select="@Name"/>
</xsl:attribute>
<xsl:element name="desc">
<xsl:attribute name="value">
<xsl:value-of select="Description/@Value"/>
</xsl:attribute>
</xsl:element>
</category>
</xsl:for-each>
</categories-list>
</xsl:template>
</xsl:stylesheet>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?