hoedown 1.1.9

bindings for the Hoedown markdown processor
docs.rs failed to build hoedown-1.1.9
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: hoedown-6.0.0

This crate provides bindings for the [hoedown] markdown processing library. It has a Markdown type which stores markdown text in a Buffer. The markdown can then be rendered with any renderer that implements the Render trait. The library comes with an Html renderer by default.

hoedown]: https://github.com/hoedown/hoedown

`` rust use hoedown::Markdown; use hoedown::renderer::html::{self, Html}; et doc = Markdown::new("some emphasis required"); et html = Html::new(html::Flags::empty(), 0);

ssert_eq!( doc.render_to_buffer(html).to_str().unwrap(), "some emphasis required\n"); ``