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
//! Story structure collections: `Knot`s, `Stitch`es and utilities.

mod address;
mod stitch;
mod utils;

pub use address::{Address, AddressKind};
pub use stitch::{
    parse_stitch_from_lines, read_knot_name, read_stitch_name, Knot, KnotSet, Stitch,
};
pub use utils::{
    get_empty_knot_counts, get_mut_stitch, get_num_visited, get_stitch, increment_num_visited,
};