我想通过CSS在转换后的HTML中对特定类别的表进行不同的设置。
例如在XML中:
<table>
<row role="label">
<cell>
Manuscrit Bodmer
</cell>
<cell>
Manuscrit fr. 1457
</cell>
</row>
<row>
<cell>
<lb/>Début <supplied><locus from="1r">fol. 1</locus></supplied> :
</cell>
<cell>
<note><lb/><supplied>fol. 6vᵒ, ligne 15</supplied> :</note>
</cell>
</row>
</table>
在XSL中:
<xsl:template match="tei:table[not(. = '')]">
<xsl:param name="sprache"/>
<xsl:element name="table">
<xsl:apply-templates><xsl:with-param name="sprache" select="$sprache"/></xsl:apply-templates>
</xsl:element>
</xsl:template>
为了实现这一点,我正在考虑将特定的CSS类应用于该表,例如。在生成的HTML中
<table class="comparison-table">
并在css中设置样式。 这可能吗?我怎么能完全实现这一目标呢?
---更新 感谢@ zx485我更新了XML&amp; XSL到:
<xsl:template match="tei:table[@rend='comparison-table']">
<xsl:param name="sprache"/>
<xsl:copy>
<xsl:attribute name="class"><xsl:text>comparison-table</xsl:text></xsl:attribute>
<xsl:apply-templates><xsl:with-param name="sprache" select="$sprache"/></xsl:apply-templates>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:table[not(. = '')]">
<xsl:param name="sprache"/>
<xsl:element name="table">
<xsl:apply-templates><xsl:with-param name="sprache" select="$sprache"/></xsl:apply-templates>
</xsl:element>
</xsl:template>
在我的XML中:
<table rend="comparison-table">
<row role="label">
<cell>
Manuscrit Bodmer
</cell>
<cell>
Manuscrit fr. 1457
</cell>
</row>
....
但是在生成的HTML文件中,表没有css classname“comparison-table”。
===更新2:正如@ zx485在讨论室中建议我只需要改为
<xsl:template match="tei:table">
答案 0 :(得分:2)
将模板更改为
<xsl:template match="tei:table[not(. = '')]">
<xsl:param name="sprache"/>
<xsl:copy>
<xsl:attribute name="class"><xsl:text>comparison-table</xsl:text></xsl:attribute>
<xsl:apply-templates><xsl:with-param name="sprache" select="$sprache"/></xsl:apply-templates>
</xsl:copy>
</xsl:template>
答案 1 :(得分:0)
我用xsl重构了zx485的解决方案:if,它可能更具可读性并遵循DRY原则:
<xsl:template match="tei:table">
<xsl:param name="sprache"/>
<xsl:element name="table">
<xsl:if test="@rend='comparison-table'">
<xsl:attribute
name="class"><xsl:text>comparison-table</xsl:text></xsl:attribute>
</xsl:if>
<xsl:apply-templates><xsl:with-param name="sprache"
select="$sprache"/></xsl:apply-templates>
</xsl:element>
</xsl:template>