sita 0.3.0

Sita: static site generator (SSG) for Markdown and HTML
/// YAML `str` typically for Yet Another Markup Language.
///
/// Example:
///
/// ```
/// let s: YamlStr = "alfa: \"bravo\"";
/// ```
///
#[allow(dead_code)] pub type YamlStr = str;

/// YAML `String` typically for Yet Another Markup Language.
///
/// Example:
///
/// ```
/// let s: YamlString = YamlString::from("alfa: \"bravo\"");
/// ```
///
#[allow(dead_code)] pub type YamlString = String;