music-kraken-core/music_kraken/objects/formatted_text.py
Hellow 2af577c0cd
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: removed empty objects
2024-05-08 21:06:40 +02:00

46 lines
1.0 KiB
Python

import mistune
from markdownify import markdownify as md
def plain_to_markdown(plain: str) -> str:
return plain.replace("\n", " \n")
class FormattedText:
html = ""
def __init__(
self,
markdown: str = None,
html: str = None,
plain: str = None,
) -> None:
if html is not None:
self.html = html
elif markdown is not None:
self.html = mistune.markdown(markdown)
elif plain is not None:
self.html = mistune.markdown(plain_to_markdown(plain))
@property
def is_empty(self) -> bool:
return self.html == ""
def __eq__(self, other) -> False:
if type(other) != type(self):
return False
if self.is_empty and other.is_empty:
return True
return self.html == other.html
@property
def markdown(self) -> str:
return md(self.html).strip()
def __str__(self) -> str:
return self.markdown
plaintext = markdown