diff --git a/app/templates.py b/app/templates.py index 8ef484a..f09f31d 100644 --- a/app/templates.py +++ b/app/templates.py @@ -35,7 +35,11 @@ from app.utils.datetime import now from app.utils.highlight import HIGHLIGHT_CSS from app.utils.highlight import highlight -_templates = Jinja2Templates(directory="app/templates") +_templates = Jinja2Templates( + directory="app/templates", + trim_blocks=True, + lstrip_blocks=True, +) H2T = html2text.HTML2Text()