sita 0.3.0

Sita: static site generator (SSG) for Markdown and HTML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Data structures
#[macro_use] pub(crate) mod list;  //use crate::types::list::*;
#[macro_use] pub(crate) mod map;   //use crate::types::map::*;
#[macro_use] pub(crate) mod queue; //use crate::types::queue::*;
#[macro_use] pub(crate) mod set;   //use crate::types::set::*;
#[macro_use] pub(crate) mod stack; //use crate::types::stack::*;

// Semantic strings
#[macro_use] pub(crate) mod glob;      //use crate::types::glob::*;
#[macro_use] pub(crate) mod html;      //use crate::types::html::*;
#[macro_use] pub(crate) mod markdown;  //use crate::types::markdown::*;
#[macro_use] pub(crate) mod pathable;  //use crate::types::pathable::*;
#[macro_use] pub(crate) mod toml;      //use crate::types::toml::*;
#[macro_use] pub(crate) mod url;       //use crate::types::url::*;
#[macro_use] pub(crate) mod yaml;      //use crate::types::yaml::*;