This commit is contained in:
Sina Atalay
2025-12-22 16:54:22 +03:00
parent 17114e03b2
commit b524e377fe
32 changed files with 180 additions and 173 deletions

View File

@@ -99,7 +99,10 @@ def define_env(env):
]
# Available themes strings (put available themes between ``)
themes = [f"`{theme}`" if theme != "classic" else "`classic` (default)" for theme in available_themes]
themes = [
f"`{theme}`" if theme != "classic" else "`classic` (default)"
for theme in available_themes
]
env.variables["available_themes"] = ", ".join(themes)
env.variables["theme_count"] = len(available_themes)