Add support for triple hash alt header format

This commit is contained in:
Veronica Berglyd Olsen
2024-03-11 23:25:28 +01:00
parent 459a8e5cde
commit bdff3b4ee2
4 changed files with 13 additions and 1 deletions
+3
View File
@@ -1651,6 +1651,9 @@ class GuiDocEditor(QPlainTextEdit):
elif text.startswith("##! "):
temp = text[4:]
offset = 4
elif text.startswith("###! "):
temp = text[5:]
offset = 5
elif text.startswith(">> "):
temp = text[3:]
offset = 3