tg_bot/msg/UserPostMsg.py
2024-12-06 14:20:29 +03:00

14 lines
373 B
Python

from bot.HtmlMsg import HtmlMsg
class UserPostMsg(HtmlMsg):
def get_msg(self, data=None) -> str:
if data is None:
data = {}
content = "{content}".format(content=data['post']['content'])
msg = "{content}".format(content=content)
msg = self.replace_tag_with_content(msg, "secure")
return self.get_stylized_msg(msg)