This commit is contained in:
GitHub Merge Button 2012-07-15 07:57:58 -07:00
commit 457374c17d

View file

@ -252,8 +252,13 @@ function getDokuWikiFromAtext(pad, atext)
if (line.listLevel && lineContent) if (line.listLevel && lineContent)
{ {
if (line.listTypeName == "number")
{
pieces.push(new Array(line.listLevel + 1).join(' ') + ' - ');
} else {
pieces.push(new Array(line.listLevel + 1).join(' ') + '* '); pieces.push(new Array(line.listLevel + 1).join(' ') + '* ');
} }
}
pieces.push(lineContent); pieces.push(lineContent);
} }