#html #xslt #tags
#HTML #xslt #Теги
Вопрос:
Мой XSL-файл:
...
<div>
<xsl:choose>
<xsl:when test="count(ancestor::node()) = 1">
<h2>
</xsl:when>
<xsl:when test="count(ancestor::node()) = 2">
<h3>
</xsl:when>
</xsl:choose>
<xsl:attribute name="id">
<xsl:value-of select="@id" />
</xsl:attribute>
<xsl:copy-of select="title/node()"/>
<xsl:choose>
<xsl:when test="count(ancestor::node()) = 1">
</h2>
</xsl:when>
<xsl:when test="count(ancestor::node()) = 2">
</h3>
</xsl:when>
</xsl:choose>
</div>
Я знаю, что не разрешено разделять теги h2 … / h2, h3 … / h3 подобным образом.
Но как это сделать правильно?
Ответ №1:
Вы могли бы сделать это с помощью рекурсивного шаблона и динамически сгенерировать элемент заголовка.
Например, этот входной XML:
<input>
<level id="1">
<title>first</title>
<level id="2">
<title>second</title>
<level id="3">
<title>third</title>
</level>
</level>
</level>
</input>
обрабатывается этим XSLT:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="xsl">
<xsl:output omit-xml-declaration="yes" indent="yes" method="html"/>
<xsl:strip-space elements="*"/>
<xsl:template match="level">
<xsl:variable name="level" select="count(ancestor-or-self::level) 1"/>
<xsl:element name="h{$level}">
<xsl:attribute name="id">
<xsl:value-of select="@id"/>
</xsl:attribute>
<xsl:copy-of select="title/node()"/>
</xsl:element>
<xsl:apply-templates select="level"/>
</xsl:template>
</xsl:stylesheet>
выдает следующий HTML:
<h2 id="1">first</h2>
<h3 id="2">second</h3>
<h4 id="3">third</h4>
Комментарии:
1. Спасибо! Я сделал это следующим образом <xsl:element name=»h{count(ancestor::node())}»> Я не знал команду xsl:element 🙂
Ответ №2:
Вы могли бы использовать
<xsl:template match="/div">
<h1><xsl:apply-templates/></h1>
</xsl:template>
<xsl:template match="/*/div">
<h2><xsl:apply-templates/></h2>
</xsl:template>
<xsl:template match="/*/*/div">
<h3><xsl:apply-templates/></h3>
</xsl:template>