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

View file

@ -252,7 +252,12 @@ function getDokuWikiFromAtext(pad, atext)
if (line.listLevel && lineContent) 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); pieces.push(lineContent);
} }