14 lines
373 B
Python
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)
|