mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Fix markdown italic quote
This commit is contained in:
parent
b7be9c2b81
commit
ce0a4fbd68
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ def italic(*content: Any, sep: str = " ") -> str:
|
|||
:param sep:
|
||||
:return:
|
||||
"""
|
||||
return markdown_decoration.italic(value=html_decoration.quote(_join(*content, sep=sep)))
|
||||
return markdown_decoration.italic(value=markdown_decoration.quote(_join(*content, sep=sep)))
|
||||
|
||||
|
||||
def hitalic(*content: Any, sep: str = " ") -> str:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue