sciforge 0.0.3

A comprehensive scientific computing library in pure Rust with zero dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod error;
mod inline;
mod lexer;
mod parser;
mod value;
pub mod writer;

pub use error::{MdError, MdErrorKind, MdErrorPosition};
pub use parser::{
    DEFAULT_MD_LIMITS, MdLimits, MdParser, parse_md, parse_md_with_limits, parse_md_with_max_depth,
    validate_md,
};
pub use value::MdValue;
pub use writer::{
    push_escaped, render_md_html, write_md_code_block, write_md_heading, write_md_row,
    write_md_table,
};