Tweak how quotations work so we keep our old markers

This commit is contained in:
benjamin melançon 2024-06-24 09:46:14 -04:00
parent bbdd863df0
commit 6c5772ab9d

View file

@ -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