mrml 6.0.0

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

#[derive(Clone, Debug, Default)]
pub struct ConditionalComment(String);

impl ConditionalComment {
    pub fn inner_str(&self) -> &str {
        &self.0
    }
}

impl<V: Into<String>> From<V> for ConditionalComment {
    fn from(value: V) -> Self {
        Self(value.into())
    }
}