HTML вместо Markdown

This commit is contained in:
mihalin 2021-09-11 15:58:51 +03:00
parent 4f594906ef
commit d2351d5964
2 changed files with 8 additions and 8 deletions

View File

@ -154,16 +154,16 @@ async def send_bot_text_menu(bot: Bot, call: ty.Optional[types.CallbackQuery] =
команду /start
Текущий текст:
```
<pre>
{1}
```
</pre>
Отправьте сообщение, чтобы изменить текст.
""")
text = text.format(bot.name, bot.start_text)
if call:
await edit_or_create(call, text, keyboard, parse_mode="markdown")
await edit_or_create(call, text, keyboard, parse_mode="HTML")
else:
await AioBot.get_current().send_message(chat_id, text, reply_markup=keyboard, parse_mode="markdown")
await AioBot.get_current().send_message(chat_id, text, reply_markup=keyboard, parse_mode="HTML")
@dp.message_handler(state="wait_start_text", content_types="text", regexp="^[^/].+") # Not command

View File

@ -49,14 +49,14 @@ async def message_handler(message, *args, **kwargs):
chat_id = message.reply_to_message.forward_from_chat
if not chat_id:
return SendMessage(chat_id=message.chat.id,
text="__Невозможно переслать сообщение: автор не найден__",
parse_mode="Markdown")
text="<i>Невозможно переслать сообщение: автор не найден</i>",
parse_mode="HTML")
chat_id = int(chat_id)
try:
await message.copy_to(chat_id)
except (exceptions.MessageError, exceptions.BotBlocked):
await message.reply("__Невозможно переслать сообщение (автор заблокировал бота?)__",
parse_mode="Markdown")
await message.reply("<i>Невозможно переслать сообщение (автор заблокировал бота?)</i>",
parse_mode="HTML")
return
else:
await message.forward(super_chat_id)