mrml 1.2.2

Rust implementation of MJML renderer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::MJRaw;
use crate::print_children;

print_children!(MJRaw, super::NAME);

#[cfg(test)]
mod tests {
    use crate::prelude::print::Print;

    #[test]
    fn empty() {
        let item = crate::mj_raw::MJRaw::default();
        assert_eq!("<mj-raw></mj-raw>", item.dense_print());
    }
}