Checklist
Description
Try to unparse the markdown using Hydrogram and send back the received string using send_message method
Steps to reproduce
error.text and second.text looks different.
Code example
from hydrogram import Client
from hydrogram.enums import ParseMode
async def main():
async with Client("my_account") as app:
error = await app.get_messages(chat_id="@HydrogramChat", message_ids=5304)
first = await error.reply(error.text.markdown, parse_mode=ParseMode.DISABLED)
second = await error.reply(first.text, parse_mode=ParseMode.MARKDOWN)
Logs
Checklist
pip3 install -U https://github.com/hydrogram/hydrogram/archive/dev.zipand reproduced the issue using the latest development versionDescription
Try to unparse the markdown using Hydrogram and send back the received string using send_message method
Steps to reproduce
error.textandsecond.textlooks different.Code example
Logs