Tweak how quotations work so we keep our old markers
This commit is contained in:
parent
bbdd863df0
commit
6c5772ab9d
1 changed files with 4 additions and 2 deletions
|
@ -35,8 +35,10 @@ def rewrite_file(filepath):
|
||||||
in_block = True
|
in_block = True
|
||||||
else:
|
else:
|
||||||
in_block = False
|
in_block = False
|
||||||
continue
|
# Close our self-styled quotation block without a bullet.
|
||||||
if (i > 5 and in_block == False):
|
w.write(line)
|
||||||
|
continue
|
||||||
|
elif (i > 5 and in_block == False):
|
||||||
test = line.strip()
|
test = line.strip()
|
||||||
if (test == ""):
|
if (test == ""):
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue