notedown_ast 0.14.5

Notedown Abstract Syntax Tree
Documentation
#![allow(clippy::needless_return)]
#![feature(box_syntax)]
#![feature(map_first_last)]
#![feature(arbitrary_enum_discriminant)]

pub mod command;
mod errors;
pub mod nodes;
#[cfg(feature = "storage")]
mod store;
pub mod traits;

pub use self::{
    errors::{NoteError, NoteErrorKind, Result},
    nodes::{ASTKind, ASTNode, ASTNodes},
};

#[cfg(feature = "storage")]
pub use self::store::*;

pub mod utils {
    pub use text_utils::*;
    pub use yggdrasil_shared::records::*;
}