mrml 1.2.4

Rust implementation of MJML renderer
Documentation
use std::collections::HashMap;

#[cfg(feature = "json")]
mod json;
#[cfg(feature = "parse")]
mod parse;
#[cfg(feature = "print")]
mod print;
#[cfg(feature = "render")]
mod render;

pub const NAME: &str = "mj-divider";

#[derive(Debug, Default)]
pub struct MJDivider {
    attributes: HashMap<String, String>,
}