mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-12-22 13:14:28 +00:00
Fix formatting
This commit is contained in:
parent
dbd2c8afea
commit
9594cd3108
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue