Details
-
Bug
-
Resolution: Won't Fix
-
Minor
-
None
-
1.4, 1.4.1
-
None
-
None
-
xwiki-core-1.4, tomcat, postgres, Debian/Kubuntu GNU/Linux
-
xwiki rendering list xhtml
-
Description
IMHO minor fix could be implemented in rendering.
An example text and the rendered result:
------------------
this is text before list. * this * is * list this is text after list.
------------------
<p>this is text before list.</p> <ul class="star"> <li>this</li> <li>is</li> <li>list</li> </ul>this is text after list.
------------------
Also "this is text after list" should be rendered as paragraph. A
workaround is to write:
------------------
this is text before list. * this * is * list <span> this is text after list.
------------------
<p>this is text before list.</p> <ul class="star"> <li>this</li> <li>is</li> <li>list</li> </ul><span> <p>this is text after list.</p>
------------------
Same goes with lists with - * and #.