Fix raw HTML parsing & remove markdown inside HTML support due to issues
This commit is contained in:
parent
7d6519c9ad
commit
a6446b1aaf
@ -99,16 +99,15 @@ def parseRawHTML(doc, line, htmlstring, rawhtml, id, maxlines):
|
|||||||
elif rawhtml:
|
elif rawhtml:
|
||||||
if line.startswith(" "):
|
if line.startswith(" "):
|
||||||
|
|
||||||
#experimental markdown inside HTML support
|
htmlstring = htmlstring + line.strip()
|
||||||
htmlstring = htmlstring + html.unescape(markdown.markdown(html.escape(line.strip())))
|
|
||||||
|
|
||||||
#if indented html was the last line, this is needed for it to not be ignored
|
#if indented html was the last line, this is needed for it to not be ignored
|
||||||
#since this is the end of the file, we will not set rawhtml to False.
|
#since this is the end of the file, we will not set rawhtml to False.
|
||||||
if maxlines - id == 1:
|
if maxlines - id == 1:
|
||||||
doc.div(HTML(htmlstring))
|
doc = doc.div(HTML(htmlstring))
|
||||||
else:
|
else:
|
||||||
rawhtml = False
|
rawhtml = False
|
||||||
doc.div(HTML(htmlstring))
|
doc = doc.div(HTML(htmlstring))
|
||||||
htmlstring = ""
|
htmlstring = ""
|
||||||
|
|
||||||
return rawhtml, doc, htmlstring
|
return rawhtml, doc, htmlstring
|
||||||
|
Loading…
Reference in New Issue
Block a user