Compare commits
No commits in common. "3bffd32df08ad5670275f8b82af8f0cf44c34510" and "af73458e29649fd3e766734ad5fc324eaf5a3eab" have entirely different histories.
3bffd32df0
...
af73458e29
|
@ -100,13 +100,13 @@ class Notifier:
|
||||||
self.bot.send_message(
|
self.bot.send_message(
|
||||||
chat_id=telegram_id,
|
chat_id=telegram_id,
|
||||||
text=self.__format_message(update),
|
text=self.__format_message(update),
|
||||||
parse_mode='HTML'
|
parse_mode='MarkdownV2'
|
||||||
)
|
)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __format_message(item: FeedItem) -> str:
|
def __format_message(item: FeedItem) -> str:
|
||||||
return (
|
return (
|
||||||
f"<strong><a href=\"{item.url}\">{item.title}</a></strong>\n\n"
|
f"**[{item.title}]({item.url})**\n\n"
|
||||||
f"{item.description}"
|
f"{item.description}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue