sita 0.2.0

Sita: static site generator (SSG) for Markdown and HTML
/// Pathable `String` typically for Unix system path or glob.
///
/// Example:
///
/// ```
/// let s: PathableString = PathableString::from("foo/**/*");
/// ```
///
#[allow(dead_code)] pub type PathableString = String;

/// TOML `String` typically for Tom's Obvious Minimal Language.
///
/// Example:
///
/// ```
/// let s: TomlString = TomlString::from("alfa = \"bravo\"");
/// ```
///
#[allow(dead_code)] pub type TomlString = String;