however, if i have something like
Code: Select all
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method='xml'
indent="yes"
omit-xml-declaration="yes"
doctype-public = "-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
/>
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Tim Van Wassenhove :: Contact</title>
<link rel="stylesheet" href="/styles/style.css" type="text/css"/>
</head>
<body>
<form action="" method="post">
<div class="row">
<span class="label">Message:</span>
<span class="input"><textarea name="message" rows="10" cols="40"></textarea></span>
</div>
</form>The current workaround is to put <xsl:text> </xsl:text> in the textarea, but i don't like this.