adding basic numbered list support to dokuwiki export

pull/887/head
Jordan Wiens 2012-07-19 00:59:15 -04:00
parent 9aed433ad5
commit c0daf1aaaf
1 changed files with 6 additions and 1 deletions

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);
}