This commit is contained in:
François Boulogne 2012-11-15 18:07:30 +01:00
parent 8a92828b10
commit ff27ddaa5a

View file

@ -255,9 +255,9 @@ function getMediaWikiFromAtext(pad, atext)
{ {
if (line.listTypeName == "number") if (line.listTypeName == "number")
{ {
pieces.push('# '); pieces.push(new Array(line.listLevel + 1).join('') + '# ');
} else { } else {
pieces.push('* '); pieces.push(new Array(line.listLevel + 1).join('') + '* ');
} }
} }
pieces.push(lineContent); pieces.push(lineContent);