Pi66

merodi
A markdown-based static site generator.
git clone https://git.pi66.xyz/merodi

← back to log

chore: sort markdown extensions alphabetically

author: pi66
date: 2026-06-30 17:13
hash: be5f827d0bd771f10ee239783cae725290ff2a16

Diffstat:

M

src/build.py
12 +++++++++++++++---------------
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
diff --git a/src/build.py b/src/build.py
index 158cd76..9b1655e 100644
--- a/src/build.py
+++ b/src/build.py
@@ -107,16 +107,16 @@ def compile_md_to_html(md_file:str, html_dest:str, tree_config=None, extras_conf
         extensions = [
             "extra",
             "md_in_html",
+            "pymdownx.betterem",
+            "pymdownx.critic",
+            "pymdownx.details",
             "pymdownx.highlight",
             "pymdownx.inlinehilite",
-            "pymdownx.superfences",
-            "pymdownx.tilde",
-            "pymdownx.mark",
-            "pymdownx.betterem",
             "pymdownx.keys",
-            "pymdownx.details",
+            "pymdownx.mark",
+            "pymdownx.superfences",
             "pymdownx.tabbed",
-            "pymdownx.critic",
+            "pymdownx.tilde",
         ],extension_configs={
             "pymdownx.highlight": {
                 "use_pygments": True,