This commit is contained in:
GitHub Merge Button 2012-07-14 21:45:51 -07:00
commit 4d02b6fe15

View file

@ -252,8 +252,13 @@ function getDokuWikiFromAtext(pad, atext)
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(lineContent);
}