mrml 1.2.2

Rust implementation of MJML renderer
Documentation
mod children;
#[cfg(feature = "json")]
mod json;
#[cfg(feature = "parse")]
mod parse;
#[cfg(feature = "print")]
mod print;
#[cfg(feature = "render")]
mod render;

use std::collections::HashMap;

pub use children::MJNavbarChild;

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

#[derive(Debug, Default)]
pub struct MJNavbar {
    attributes: HashMap<String, String>,
    children: Vec<MJNavbarChild>,
}