Compare commits

..

No commits in common. "3bffd32df08ad5670275f8b82af8f0cf44c34510" and "af73458e29649fd3e766734ad5fc324eaf5a3eab" have entirely different histories.

View file

@ -100,13 +100,13 @@ class Notifier:
self.bot.send_message(
chat_id=telegram_id,
text=self.__format_message(update),
parse_mode='HTML'
parse_mode='MarkdownV2'
)
@staticmethod
def __format_message(item: FeedItem) -> str:
return (
f"<strong><a href=\"{item.url}\">{item.title}</a></strong>\n\n"
f"**[{item.title}]({item.url})**\n\n"
f"{item.description}"
)