2017-09-01から1日間の記事一覧

何もしないXSLT part.2

最近、また同じようなXSLTを書いたので、前に書いたのと見比べてみた。前のもの <xsl:template match="/"> <xsl:apply-templates /> </xsl:template> <xsl:template match="*"> <xsl:copy> <xsl:apply-templates select="*|@*|text()" /> </xsl:copy> </xsl:template> <xsl:template match="@*"> <xsl:copy /> </xsl:template>新しいもの <xsl:template match="/"> <…</xsl:template>