sita 0.3.0

Sita: static site generator (SSG) for Markdown and HTML
/// HTML `str` typically for Hyper Text Markup Language.
///
/// Example:
///
/// ```
/// let s: HtmlStr = "<div>foo</div>");
/// ```
///
#[allow(dead_code)] pub type HtmlStr = str;

/// HTML `String` typically for Hyper Text Markup Language.
///
/// Example:
///
/// ```
/// let s: HtmlString = HtmlString::from("<div>foo</div>");
/// ```
///
#[allow(dead_code)] pub type HtmlString = String;