cmark_gfm/
lib.rs

1#[macro_use]
2extern crate bitflags;
3extern crate cmark_gfm_sys as ffi;
4
5mod parser;
6mod render;
7
8pub use crate::parser::{markdown_to_html, Options, Parser};
9pub use crate::render::Render;