Merge pull request #887 from psifertex/develop
adding basic numbered list support to dokuwiki export
This commit is contained in:
commit
db54ab4b36
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue