mjml.accordion_element

mjml.accordion_element(*args, attributes=None, content=None)

Create an MJML <mj-accordion-element> tag.

Parameters

*args : TagChild = ()

Children (MJMLTag objects)

attributes : Optional[TagAttrs] = None

Optional dict of tag attributes

content : Optional[str] = None

Optional text content for the tag

Returns

: MJMLTag

MJMLTag object representing

Examples

With children: accordion_element(child1, child2)

With attributes: accordion_element(attributes={“attr”: “value”})

With both: accordion_element(child1, child2, attributes={“attr”: “value”})