1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-06-05 21:59:23 +02:00

Fix formatting

This commit is contained in:
Thomas Sileo
2022-07-05 21:36:20 +02:00
parent dbd2c8afea
commit 9594cd3108

View File

@ -10,9 +10,9 @@ from app.config import VERSION
def markdownify(content: str) -> str: def markdownify(content: str) -> str:
return markdown(content, extensions=[ return markdown(
"mdx_linkify", "fenced_code", "codehilite", "toc" content, extensions=["mdx_linkify", "fenced_code", "codehilite", "toc"]
]) )
def main() -> None: def main() -> None: