/!\ If this shall be a bug report, it has to use the BugTemplate (filled out, of course).

See also MoinMoinPatch/DisablePureIndentation

I see the markup example and I try to see the rendering result of it. But I can not get result as expected.

Markup

 1. This is a
    single paragraph

    This is another paragraph
 1. This is the final
    list item

This is nice, but not how moin markup works.

Expected

  1. This is a single paragraph
  2. This is another paragraph
  3. This is the final list item

Result

  1. This is a
    • single paragraph This is another paragraph
  2. This is the final
    • list item

Used markup to get the expected result

 1. This is a
 single paragraph

 . This is another paragraph
 1.#2 This is the final
 list item


Currently MoinMoin use following markup to continue list paragraph

 1. This is a
 single paragraph

but I think it is more resonable as described in the APT format (http://maven.apache.org/guides/mini/guide-apt-format.html)

 1. This is a
    single paragraph

 * Hello world
   This is continued line

and I found some current parser restriction like as

It is {OK}
 * This is a table
 || Cell1 || Cell2 ||
 || Cell3 || Cell4 ||

It is {OK}


Incorrect
 * || Cell1 || Cell2 ||
 || Cell3 || Cell4 ||

or 
 * || Cell1 || Cell2 ||
   || Cell3 || Cell4 ||

Incorrect

or

(!) Tables need to be on their own line, the only thing working there is indentation by blanks. This is not a bug, but a limitation of the current implementation.


MoinMoin: MoinMoinBugs/Indentation (last edited 2007-10-29 19:08:51 by localhost)