【XML】xmlns, XSLT, RelaxNG, JAXP, etc.【総合】
レス数が950を超えています。1000を超えると書き込みができなくなります。
0974デフォルトの名無しさん
2008/09/21(日) 18:02:08<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
<link rel="stylesheet" type="text/css" href="sample2.css" />
<xsl:apply-templates />
</html>
</xsl:template>
<!-- もとのxmlテキストの内容をそのままコピーします -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
レス数が950を超えています。1000を超えると書き込みができなくなります。