Here's an <xsl:text> element with the normal setting and the results it generates:
<xsl:text>Hey, y'all!</xsl:text>
Output:
Hey, y'all!
Here's the same listing with output escaping disabled:
<xsl:text disable-output-escaping="yes">Hey, y'all!</xsl:text>
Output:
Hey, y'all!