XSLT 是一种基于XPATH选择器的语言。
声明式
<xsl:template match="/">
<xsl:apply-templates select="/paragraph"/>
</xsl:template>
<xsl:template match="paragraph">
<p>
<xsl:apply-templates select="run"/>
<xsl:apply-templates select="list"/>
</p>
</xsl:template>
<xsl:template match="paragraph/list">
<ul>
...
</ul>
</xsl:template>
<xsl:template match="paragraph/run">
<span>
...
</span>
</xsl:template>
你也可以用命令式来写
<xsl:template match="/">
<xsl:apply-templates select="/paragraph"/>
</xsl:template>
<xsl:template match="paragraph">
<p>
<xsl:for-each select="run">
<span>
...
</span>
</xsl:for-each>
<xsl:for-each select="list">
<ul>
...
</ul>
</xsl:for-each>
</p>
</xsl:template>