Smaller headers

main
Bob Mottram 2025-12-07 18:11:58 +00:00
parent 76861459a6
commit 9426a72f76
1 changed files with 4 additions and 4 deletions

View File

@ -202,10 +202,10 @@ def html_blog_post_markdown(content: str) -> str:
"""Converts any markdown to html
"""
replacements = {
"># ": "h3",
">## ": "h3",
">### ": "h3",
">#### ": "h4",
"># ": "h4",
">## ": "h4",
">### ": "h4",
">#### ": "h5",
">##### ": "h5",
">###### ": "h6"
}