Fix recursion errors.

This commit is contained in:
Kovid Goyal 2007-08-10 17:01:30 +00:00
parent 462ccf2934
commit fe2336d227

View File

@ -1174,7 +1174,10 @@ class Markdown:
if theRest :
theRest = theRest[1:] # skip the first (blank) line
try:
self._processSection(parent_elem, theRest, inList)
except RuntimeError: #Added by Kovid
pass