refactor: use identical name for tree- and postprocessor

Signed-off-by: squidfunk <martin.donath@squidfunk.com>
This commit is contained in:
squidfunk
2026-04-24 13:58:01 +02:00
parent 127648e743
commit fdeb0616cd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -266,7 +266,7 @@ class GlightboxExtension(Extension):
# Register postprocessor - run before `raw_html` (priority 30)
postprocessor = GlightboxPostprocessor(md, self.getConfigs())
md.postprocessors.register(postprocessor, "glightbox_raw", 29)
md.postprocessors.register(postprocessor, "glightbox", 29)
# -----------------------------------------------------------------------------
+1 -1
View File
@@ -151,7 +151,7 @@ class LinksExtension(Extension):
postprocessor = LinksPostprocessor(
md, self.path, self.use_directory_urls
)
md.postprocessors.register(postprocessor, "zrelpath_raw", 29)
md.postprocessors.register(postprocessor, "zrelpath", 29)
# -----------------------------------------------------------------------------