semdoc 0.0.1

SemDoc is a document file format that allows writers to focus on the content solely and empowers readers to adapt the appearance to their devices and needs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(test)]
extern crate quickcheck;

mod atoms;
mod blocks;
mod doc;
mod memory;
mod molecule;
mod source;
mod utils;

pub use atoms::{Atom, AtomError};
pub use blocks::{Block, BlockError};
pub use doc::{SemDoc, SemDocError};
pub use memory::{Memory, MemoryError};
pub use molecule::Molecule;
pub use source::{Pure, Source};