strune 0.1.2

A simple, directional knowledge structure library for building linked references and word books
Documentation
pub mod markdown;
pub mod json;
pub mod yaml;

pub use markdown::{
    load_nodes_from_markdown,
    load_nodes_from_markdown_detail,
    trim_text,
    list_text_to_array,
    raw_node_to_value,
    RawNode,
    LoadError as MarkdownLoadError
};

pub use json::{
    load_nodes_from_json,
    LoadError as JsonLoadError
};

pub use yaml::{
    load_config_from_yaml,
    LoadError as YamlLoadError
};