feat: stripped whitespaces from lyrics
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Hazel 2024-04-19 14:05:05 +02:00
parent 29770825a4
commit be09562632

View File

@ -36,7 +36,7 @@ class FormattedText:
@property
def markdown(self) -> str:
return md(self.html)
return md(self.html).strip()
def __str__(self) -> str:
return self.markdown