mirror of https://gitee.com/bigwinds/arangodb
Handle combination of multiline and hidden lines
This commit is contained in:
parent
4797b81f44
commit
f07e146ad4
|
@ -436,6 +436,12 @@ def analyzeFile(f, filename):
|
|||
if line[0] == "|":
|
||||
if line.startswith("| "):
|
||||
line = line[2:]
|
||||
elif line.startswith("|~ "):
|
||||
showCmd = False
|
||||
line = line[3:]
|
||||
elif line.startswith("|~"):
|
||||
showCmd = False
|
||||
line = line[2:]
|
||||
else:
|
||||
line = line[1:]
|
||||
|
||||
|
|
Loading…
Reference in New Issue