# markdown-it-gfm [](https://crates.io/crates/markdown-it-gfm) A [markdown-it.rs](https://crates.io/crates/markdown-it) plugin to implement [Github Flavoured Markdown](https://github.github.com/gfm). ## Usage To load the plugin: ```rust let parser = &mut markdown_it::MarkdownIt::new(); markdown_it_gfm::add(parser); let root = parser.parse("https://github.github.com/gfm"); assert_eq!(root.render(), "
\n"); ```