autotopia xsl: replace copy-of with apply-templates for event/{location,node}

This commit is contained in:
Astro 2019-05-02 22:49:57 +02:00
parent 923c752215
commit 143412312b
1 changed files with 2 additions and 2 deletions

View File

@ -195,13 +195,13 @@
<xsl:template match="event/location">
<p lang="{@lang}" class="a-event-location">
<xsl:copy-of select="./node()"/>
<xsl:apply-templates/>
</p>
</xsl:template>
<xsl:template match="event/speaker">
<p lang="{@lang}" class="a-event-speaker">
<xsl:copy-of select="./node()"/>
<xsl:apply-templates/>
</p>
</xsl:template>