bryonjacob / wikimodel

Automatically exported from code.google.com/p/wikimodel
0 stars 0 forks source link

Make XHTML parser recognize escaped text #44

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
For example XWiki generates the following XHTML for escapes:

<html><p><pre><![CDATA[*]]></pre><pre><![CDATA[*]]></pre>hello<pre><![CDATA[*]]>
</pre><pre><![CDATA[*]]></pre></p></html>

This should generate the following events:

beginDocument
beginParagraph
onEscape: [*]
onEscape: [*]
onWord: [hello]
onEscape: [*]
onEscape: [*]
endParagraph
endDocument

We can discuss the XHTML syntax we want to use.

Thanks

Original issue reported on code.google.com by vmas...@gmail.com on 27 Aug 2008 at 7:15

GoogleCodeExporter commented 8 years ago
Duplicate of http://code.google.com/p/wikimodel/issues/detail?id=52 (which is 
more
generic and better defined).

Original comment by vmas...@gmail.com on 2 Sep 2008 at 11:46