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

This commit is contained in:
2024-04-19 14:05:05 +02:00
parent 29770825a4
commit be09562632
+1 -1
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