going-flying.com gemini git repository
2e78cce2e483fb1675ea40cf913a7e80e99b82d4 - Matthew Ernisse - 1615046144
change blockquote a bit
diff --git a/files/thoughts-to-gemini.py b/files/thoughts-to-gemini.py index 9ea95f7..38745b5 100755 --- a/files/thoughts-to-gemini.py +++ b/files/thoughts-to-gemini.py @@ -40,7 +40,7 @@ from bs4 import BeautifulSoup from feedgen.feed import FeedGenerator entry_template = '''╒═════╣▒ {{ entry.date }} ▒╟──────────┘ -> {{ entry.message }} +{{ entry.message }} {% if 'attachment' in entry.keys() %} Attachments: @@ -160,7 +160,7 @@ class DeHTMLizer(object): else: if tag.name == 'blockquote': - return f'“{tag.string}”' + return f'> {tag.string}' return tag.string