You can also use the data property
template = """**{title}**
{body}
"""
def rt_alert(title, body, large=False):
rt = RichText(content=template)
rt.data = {"title": title, "body": body}
return alert(rt, large=large)
You can also use the data property
template = """**{title}**
{body}
"""
def rt_alert(title, body, large=False):
rt = RichText(content=template)
rt.data = {"title": title, "body": body}
return alert(rt, large=large)