mrml 1.2.2

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

#[derive(Debug, Default)]
pub struct Comment {
    children: String,
}

impl From<String> for Comment {
    fn from(children: String) -> Self {
        Self { children }
    }
}

impl From<&str> for Comment {
    fn from(value: &str) -> Self {
        Self::from(value.to_string())
    }
}