Uploaded image for project: 'XWiki Platform'
  1. XWiki Platform
  2. XWIKI-2465

xwiki-syntax list rendering breaks the "normal" rendering

    XMLWordPrintable

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 #.

      Attachments

        Activity

          People

            vmassol Vincent Massol
            ari Ari Takku
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: