wiki-tui 0.6.0

A simple and easy to use Wikipedia Text User Interface
1
2
3
4
5
6
7
8
9
10
11
12
mod builder;
mod compiled_article;
mod element;
pub mod parser;
mod toc;

pub type Article = compiled_article::Article;
pub type ArticleElement = element::ArticleElement;
pub type ArticleBuilder = builder::ArticleBuilder;

pub type TableOfContents = toc::TableOfContents;
pub type TableOfContentsItem = toc::TableOfContentsItem;