Как выбрать дочерний тег без класса XSLT - PullRequest
0 голосов
/ 01 марта 2019

Я хочу выбрать <a> без класса и изменить на <span>

<p class="authors-note-content">
     <a href="http://eur-lex.europa.eu/" target="_blank">http://eur-lex.europa.eu/</a>
</p>

    <xsl:template match="*:a">
    <xsl:choose>
        <xsl:when test="$AUTHORS_NOTE_CONTENT_WITHOUT_LINK">
           <p class="authors-note-content">
                <span>
                    <xsl:apply-templates/>
                </span>
           </p>
        </xsl:when>
        <xsl:otherwise>
           <p class="authors-note-content">
                <xsl:apply-templates/>
           </p>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
...