Lars Noack
688b4fd357
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
59 lines
1.3 KiB
Python
59 lines
1.3 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()
|
|
|
|
@markdown.setter
|
|
def markdown(self, value: str) -> None:
|
|
self.html = mistune.markdown(value)
|
|
|
|
@property
|
|
def plain(self) -> str:
|
|
md = self.markdown
|
|
return md.replace("\n\n", "\n")
|
|
|
|
@plain.setter
|
|
def plain(self, value: str) -> None:
|
|
self.html = mistune.markdown(plain_to_markdown(value))
|
|
|
|
def __str__(self) -> str:
|
|
return self.markdown
|
|
|
|
plaintext = plain
|
|
|