Support tab in raw html parsing
This commit is contained in:
parent
a841184e4e
commit
df3eafb29f
@ -97,7 +97,8 @@ def parseRawHTML(doc, line, htmlstring, rawhtml, id, maxlines):
|
|||||||
|
|
||||||
#parse indented raw html
|
#parse indented raw html
|
||||||
elif rawhtml:
|
elif rawhtml:
|
||||||
if line.startswith(" "):
|
# 2 spaces or tab
|
||||||
|
if line.startswith(" ") or line.startswith(" "):
|
||||||
|
|
||||||
htmlstring = htmlstring + line.strip()
|
htmlstring = htmlstring + line.strip()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user