from emailer_lib.mjml import accordion_text
result = accordion_text("Hello")mjml.accordion_text
mjml.accordion_text(content=None, attributes=None)Create an MJML <mj-accordion-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-accordion-text>
Examples
With content:
With attributes and content:
result = accordion_text("Hello", attributes={"background-color": "red"})