inkling 0.12.5

Limited implementation of the Ink markup language.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Errors from creating or walking through stories.

#[macro_use]
pub(crate) mod utils;
pub mod parse;
pub(crate) mod runtime;

pub use parse::ReadError;
pub use runtime::{variable, InklingError, InternalError};
pub use utils::MetaData;