mrml 1.2.2

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

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

#[derive(Debug, Default)]
#[cfg_attr(feature = "json", derive(serde::Serialize, serde::Deserialize))]
pub struct MjStyleAttributes {
    inline: Option<String>,
}

impl MjStyleAttributes {
    fn is_empty(&self) -> bool {
        self.inline.is_none()
    }
}

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

impl MJStyle {
    pub fn children(&self) -> &str {
        &self.children
    }
}

impl From<String> for MJStyle {
    fn from(children: String) -> Self {
        Self {
            attributes: MjStyleAttributes::default(),
            children,
        }
    }
}

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