summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2024-09-06 20:29:24 +0200
committerBotond Hende <nettingman@gmail.com>2024-09-06 23:13:28 +0200
commitdecab05a85ea33eeffe75b6275678463277576b6 (patch)
tree48bce83a12720c7f7fe7b6c5a52147e7e96234be /modules
parent83e6ebe3cceeb05dee057fad2db65b97db00b4c4 (diff)
added quote rendering with warko
Diffstat (limited to 'modules')
-rw-r--r--modules/blogpost_processor.py4
m---------modules/warko0
2 files changed, 3 insertions, 1 deletions
diff --git a/modules/blogpost_processor.py b/modules/blogpost_processor.py
index b29d91c..a8833e2 100644
--- a/modules/blogpost_processor.py
+++ b/modules/blogpost_processor.py
@@ -13,6 +13,7 @@ from .warko.strikethrough import StrikeThrough
from .warko.headinginjector import get_heading_injector
from .warko.extendedimage import get_image_renderer, ExtendedImageElement
from .warko.newtablink import get_new_tab_links
+from .warko.quote import Quote
from ..config import Config
CONTENT_FILE_NAME = "content.md"
@@ -30,7 +31,7 @@ INTRO_MAX_EXTRA_LENGTH = 100
posts_cache = []
-def get_posts_from_cache() -> list('Post'):
+def get_posts_from_cache() -> list['Post']:
if len(posts_cache) == 0:
raise Exception("Getting posts list from cache while it is still empty.")
@@ -44,6 +45,7 @@ class Post:
, get_heading_injector("> ")
, get_image_renderer(["blog.wazul.moe"])
, get_new_tab_links(["blog.wazul.moe"])
+ , Quote
]
)
diff --git a/modules/warko b/modules/warko
-Subproject ed0aa1323a7acae363c670cc1dd6611c09e0c3f
+Subproject 9ceea408679913000039013f3a1ddfb695880e6