Alexandra wrote:
> Do you have an idea of how I should do it ?
You are treating the <p> like a substring but from the XML
parsers point of view this is a node in its own right. You
can try something like
<xsl:template match="content/p">
<xsl:value-of select=".">
</xsl:template>
[untested]