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

View file

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