mjml.breakpoint

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

Create an MJML <mj-breakpoint> 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 <mj-breakpoint>

Examples

With children:

from emailer_lib.mjml import breakpoint, text
child = text("Hello World")

result = breakpoint(child)

With attributes:

result = breakpoint(attributes={"attr": "value"})

With both:

result = breakpoint(child, attributes={"background-color": "yellow"})