Add blockquotes to text decorations

This commit is contained in:
Snek 2024-11-27 23:00:39 +02:00 committed by GitHub
parent d9f58b5a41
commit afd015efa2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -150,8 +150,8 @@ class TextDecoration(ABC):
pass
@abstractmethod
def blockquote(self, value: str) -> str: #pragma: no cover
return f"<blockquote>{value}</blockquote>"
def blockquote(self, value: str) -> str: # pragma: no cover
pass
@abstractmethod
def custom_emoji(self, value: str, custom_emoji_id: str) -> str: # pragma: no cover