Я хочу преобразовать (с помощью jquery.xslt.js) xml для сохранения тегов в текстовых узлах.
XML выглядит так:
<example>
<text>
Some text with <br /> and <img src="source" /> then text ....
</text>
</example>
Я хочу иметь:
<div class="example">
<p>Some text with <br /> and <img src="source" /> then text ....</p>
</div>
Если я использую <xsl:value-of select="."/>
, я получу
"Some text with and then text ...."
Если я добавлю <xsl:apply-templates />
Я получу
"Some text with and then text .... <br/><img src="source" />"
Есть ли способ точно переписать содержимое тега?