Colon indent not rendered
Bug #308086 reported by
GreenReaper
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Wikipedia Dump Reader |
New
|
Undecided
|
Unassigned |
Bug Description
The colon (:) is meant to indent text when placed at the start of a line; however, it is instead rendered as normal.
To post a comment you must log in.
This patch didn't have negative side-effects, at least in the article "Lambda calculus".
--- a/dumpReader.py (txtLines) :
elif c == '#':
out += "<ol>"
mode = "<li>%s</li>"
out += "<dl><dd>"
mode = "<dd>%s</dd>"
elif c == ';':
+++ b/dumpReader.py
@@ -427,7 +427,7 @@ def convertWikiList
- elif c == ':' and lastpoped == '*':
+ elif c == ':':