from emailer_lib.mjml import text
result = text("Hello")mjml.text
mjml.text(content=None, attributes=None)Create an MJML <mj-text> tag.
This is an ending tag that accepts text/HTML content but not MJML children.
Parameters
content : Optional[str] = None-
Text or HTML content for the tag
attributes : Optional[TagAttrs] = None-
Optional dict of tag attributes
Returns
: MJMLTag-
MJMLTag object representing
<mj-text>
Examples
With content:
With attributes and content:
result = text("Hello", attributes={"background-color": "red"})