Indel teksten i paragraffer:
<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>
<?xml-stylesheet href=\"index1.xsl\" type=\"text/xsl\"?>
<samples>
<text>
<p>
Første afsnit
</p>
<p>
Andet afsnit
</p>
</text>
</samples>
og sæt <br/> ind i xsl-siden:
<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>
<xsl:stylesheet xmlns:xsl=\"
http://www.w3.org/TR/WD-xsl\"><xsl:template match=\"/\">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match=\"text()\">
<xsl:value-of select=\".\"/>
</xsl:template>
<xsl:template match=\"samples\">
<html>
<head>
<title>Text test</title>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match=\"text\">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match=\"p\">
<xsl:apply-templates/>
<br/>
</xsl:template>
</xsl:stylesheet>
:-)
Ole