1
2
3
4
5
use notedown_parser::AST;

pub trait ToNotedown {
    fn to_notedown(&self) -> AST;
}