1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(missing_docs)]
//! The unimarkup-rs crate is the official implementation of the [Unimarkup specification](https://github.com/Unimarkup/Specification/).

// TODO: set to private modules that don't have to be public
pub mod config;
pub mod document;
pub mod elements;
pub mod frontend;
pub mod log_id;
pub mod metadata;
pub mod parser;
pub mod security;
pub mod unimarkup;