mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
micro fix Markdown V2 blockquote
This commit is contained in:
parent
ea8de685d8
commit
b3bb5f55fc
1 changed files with 1 additions and 1 deletions
|
|
@ -256,7 +256,7 @@ class MarkdownDecoration(TextDecoration):
|
|||
return self.link(value=value, link=f"tg://emoji?id={custom_emoji_id}")
|
||||
|
||||
def blockquote(self, value: str) -> str:
|
||||
return "\n".join(f"> {line}" for line in value.splitlines())
|
||||
return "\n".join(f">{line}" for line in value.splitlines())
|
||||
|
||||
|
||||
html_decoration = HtmlDecoration()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue