inkling 0.12.5

Limited implementation of the Ink markup language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Processing of story content into its final form, which will be handed to the user.

mod buffer;
pub(crate) mod choice;
mod condition;
pub(crate) mod line;

pub use buffer::process_buffer;
pub use choice::{get_fallback_choices, prepare_choices_for_user};
pub use condition::check_condition;
pub use line::process_line;