mrml 6.0.0

Rust implementation of MJML renderer
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(test)]
mod tests {
    use crate::prelude::print::Printable;

    #[test]
    fn empty() {
        let item = crate::mj_hero::MjHero::default();
        assert_eq!("<mj-hero />", item.print_dense().unwrap());
    }
}