sita 0.3.0

Sita: static site generator (SSG) for Markdown and HTML
/// URL `str` typically for Uniform Resource Locator.
///
/// Example:
///
/// ```
/// let s: UrlStr = "https://example.com";
/// ```
///
#[allow(dead_code)] pub type UrlStr = str;

/// URL `String` typically for Uniform Resource Locator.
///
/// Example:
///
/// ```
/// let s: UrlString = UrlString::from("https://example.com");
/// ```
///
#[allow(dead_code)] pub type UrlString = String;