CorrosionMark 0.1.1

This is a markdown parser libary
Documentation
1
2
3
4
5
6
7
8
9
use crate::{ASTElement, AST};

impl AST {
    pub fn parser(input: &str) -> AST {
        AST {
            root: ASTElement::parser(input.trim()).1,
        }
    }
}