inkling 0.12.5

Limited implementation of the Ink markup language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Errors from reading, parsing and validating stories.

pub mod address;
pub mod condition;
mod error;
pub mod expression;
pub mod knot;
pub mod line;
mod parse;
pub mod prelude;
pub mod validate;
pub mod variable;

pub use error::{print_read_error, ReadError};
pub use parse::ParseError;