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::MJSocial;
use crate::print_attrs_children;

print_attrs_children!(MJSocial, super::NAME);

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

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