Closed
Description
When converting from dokuwiki to mediawiki (pandoc -f dokuwiki -t mediawiki) one gets unexpected results for lists. Example:
Input:
* item 1
* item 1.1
Actual output:
* item 1
<pre> * item 1.1
</pre>
Expected output:
* item 1
** item 1.1
Pandoc properly renders item 1, which is level one having two heading spaces. But it cannot deal with item 1.1, which is level two having three heading spaces. Per definition there should be four spaces for level two items but Dokuwiki itself can deal with it.