Typo in the prose for p:escape-markup

Hey Norm,

The spec gives this example:

The input:

<description>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>This is a chunk of XHTML.</p>
</div>
</description>

produces:

<description>
&lt;div xmlns="http://www.w3.org/1999/xhtml">
&lt;p>This is a chunk of XHTML.&lt;/p>
&lt;/div>
</description>

I believe that all markup, including the ">" is escaped, correct? So the result should be:

<description>
&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p>This is a chunk of XHTML.&lt;/p&gt;
&lt;/div&gt;
</description>

Correct?

/Roger

Received on Friday, 19 June 2009 17:46:32 UTC