feat: switched to a more readable markdown converter
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-04-19 13:51:08 +02:00
parent 301ff82bcf
commit 81708ba100
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
import mistune
import html2markdown
from markdownify import markdownify as md
def plain_to_markdown(plain: str) -> str:
@@ -36,7 +36,7 @@ class FormattedText:
@property
def markdown(self) -> str:
return html2markdown.convert(self.html)
return md(self.html)
def __str__(self) -> str:
return self.markdown