mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix recursion errors.
This commit is contained in:
parent
462ccf2934
commit
fe2336d227
@ -1174,7 +1174,10 @@ class Markdown:
|
||||
if theRest :
|
||||
theRest = theRest[1:] # skip the first (blank) line
|
||||
|
||||
self._processSection(parent_elem, theRest, inList)
|
||||
try:
|
||||
self._processSection(parent_elem, theRest, inList)
|
||||
except RuntimeError: #Added by Kovid
|
||||
pass
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user