<xsl:template match="utwor">
<div>
<xsl:call-template name="standard-attributes" />
- <xsl:apply-templates select="child::*">
+ <xsl:apply-templates select="child::* | text()">
<xsl:with-param name="mixed" select="false()" />
</xsl:apply-templates>
</div>
<xsl:value-of select="substring-after(@id, 'm')" />
</xsl:attribute>
<xsl:call-template name="context-menu" />
- <span class="theme-text-list"><xsl:value-of select="." /></span>
+ <span class="theme-text-list"><xsl:value-of select=".|node()" /></span>
</span>
</xsl:template>
-->
<xsl:template match="text()">
+ <!-- <xsl:value-of select="." /> -->
<xsl:param name="mixed" />
<xsl:choose>
<xsl:when test="normalize-space(.) = ''" />
- <xsl:when test="not($mixed)"><span x-node="out-of-flow-text" class="out-of-flow-text"
- x-content="{.}"></span></xsl:when>
+ <xsl:when test="not($mixed)"><div x-node="out-of-flow-text" class="out-of-flow-text"><xsl:value-of select="." /></div></xsl:when>
<xsl:otherwise><xsl:value-of select="." /></xsl:otherwise>
</xsl:choose>
</xsl:template>