aboutsummaryrefslogtreecommitdiffstats
path: root/markdown.py
diff options
context:
space:
mode:
authorYuri Takhteyev <yuri@freewisdom.org>2008-07-20 00:15:08 -0700
committerYuri Takhteyev <yuri@freewisdom.org>2008-07-20 00:15:08 -0700
commitcaef3e90d46830db37888a7f7f897c450cf4f1e7 (patch)
tree8adf02ab86bbc0b655a519851d7cc77ef05c8fde /markdown.py
parentbf7cf776daa26d734c10a6039efe64113f066045 (diff)
downloadmarkdown-caef3e90d46830db37888a7f7f897c450cf4f1e7.tar.gz
markdown-caef3e90d46830db37888a7f7f897c450cf4f1e7.tar.bz2
markdown-caef3e90d46830db37888a7f7f897c450cf4f1e7.zip
Fixing ticket 000007 (Ordered and unordered list merged).
Diffstat (limited to 'markdown.py')
-rw-r--r--markdown.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/markdown.py b/markdown.py
index 95c5f4b..86f83ab 100644
--- a/markdown.py
+++ b/markdown.py
@@ -1669,8 +1669,7 @@ class Markdown:
break
# Check if the next non-blank line is still a part of the list
- if ( RE.regExp['ul'].match(next) or
- RE.regExp['ol'].match(next) or
+ if ( RE.regExp[listexpr].match(next) or
RE.regExp['tabbed'].match(next) ):
# get rid of any white space in the line
items[item].append(line.strip())