notedown_ast 0.12.9

notedown ast and converter
Documentation
mod code_block;
mod command;
mod delimiter;
mod header;
mod link;
mod list;
mod math;
mod styled;
mod table;

pub use self::{
    code_block::CodeNode,
    command::{Command, CommandKind},
    delimiter::Delimiter,
    header::Header,
    link::SmartLink,
    list::ListView,
    math::{MathKind, MathNode},
    styled::{StyleKind, StyleNode, TextNode},
    table::TableView,
};
use super::*;