remove extra spaces

This commit is contained in:
François Boulogne 2012-11-03 16:10:41 +01:00
parent d5c7da9612
commit 8a92828b10

View file

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