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
|
||||
else:
|
||||
in_block = False
|
||||
continue
|
||||
if (i > 5 and in_block == False):
|
||||
# Close our self-styled quotation block without a bullet.
|
||||
w.write(line)
|
||||
continue
|
||||
elif (i > 5 and in_block == False):
|
||||
test = line.strip()
|
||||
if (test == ""):
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue