mrml-python
This project is a reimplementation of the nice MJML markup language in Rust, built for python.
To have more information, take a look at the repository.
Usage in python
# without options
=
assert
# with options
=
=
assert
This project is a reimplementation of the nice MJML markup language in Rust, built for python.
To have more information, take a look at the repository.
import mrml
# without options
result = mrml.to_html("<mjml></mjml>")
assert result.content.startswith("<!doctype html>")
# with options
parser_options = mrml.ParserOptions(include_loader = mrml.memory_loader({
'hello-world.mjml': '<mj-text>Hello World!</mj-text>',
}))
result = mrml.to_html("<mjml><mj-body><mj-include path=\"hello-world.mjml\" /></mj-body></mjml>", parser_options = parser_options)
assert result.content.startswith("<!doctype html>")