<xslTutorial creator="nicmila@idoox.com">
<index keywords='xsl:output entity'/>

<description>Creation of &nbsp; entity using an XSL stylesheet. For full list of HTML 4.0 character entity references look at <A href='http://www.w3.org/TR/REC-html40/sgml/entities.html'>HTML 4.0 standard.</A>
</description>

<xmlSource id="id1">
<TEXT>Hello,</TEXT>
<TEXT>world.</TEXT>
</xmlSource>

<attValues>
<value match="">
</value>
</attValues>

<xslStylesheet id="id2">
<xsl:output method='html'/>
<xsl:template match="/">
<xsl:value-of select="//TEXT[1]"/>
     
<xsl:value-of select="//TEXT[2]"/>
</xsl:template>
</xslStylesheet>
</xslTutorial>