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
- This is a single paragraph
- This is another paragraph
- This is the final list item
Result
- This is a
- single paragraph This is another paragraph
- 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 lineand I found some current parser restriction like as
It is {OK}
* This is a table
|| Cell1 || Cell2 ||
|| Cell3 || Cell4 ||It is
- This is a table
Cell1
Cell2
Cell3
Cell4
Incorrect * || Cell1 || Cell2 || || Cell3 || Cell4 || or * || Cell1 || Cell2 || || Cell3 || Cell4 ||
Incorrect
- ||
Cell1 || Cell2 ||
Cell3
Cell4
or
- ||
Cell1linkto:"TestWiki" || Cell2 ||
Cell3
Cell4
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.
