sita 0.2.0

Sita: static site generator (SSG) for Markdown and HTML
/// JSON `str` typically for JavaScript Object Notation.
///
/// Example:
///
/// ```
/// let s: JsonStr = "{ \"alfa\": \"bravo\" }";
/// ```
///
#[allow(dead_code)] pub type JsonStr = str;

/// JSON `String` typically for JavaScript Object Notation.
///
/// Example:
///
/// ```
/// let s: JsonString = JsonString::from("{ \"alfa\": \"bravo\" }");
/// ```
///
#[allow(dead_code)] pub type JsonString = String;