22 stable releases (6 major)

Uses old Rust 2015

6.0.0 Dec 28, 2016
5.0.0 May 3, 2016
4.0.0 May 3, 2016
3.0.5 Mar 4, 2016
0.0.1 Jan 22, 2015

#10 in #html-renderer

Download history 174/week @ 2026-01-24 324/week @ 2026-01-31 122/week @ 2026-02-07 228/week @ 2026-02-14 380/week @ 2026-02-21 693/week @ 2026-02-28 538/week @ 2026-03-07 291/week @ 2026-03-14 568/week @ 2026-03-21 274/week @ 2026-03-28 283/week @ 2026-04-04 274/week @ 2026-04-11 285/week @ 2026-04-18 392/week @ 2026-04-25 297/week @ 2026-05-02 331/week @ 2026-05-09

1,329 downloads per month
Used in 13 crates (7 directly)

BSD-3-Clause

245KB
7K SLoC

C 5K SLoC // 0.0% comments Rust 2K SLoC // 0.0% comments Python 76 SLoC // 0.1% comments Perl 74 SLoC // 0.5% comments Shell 36 SLoC // 0.1% comments

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.

let doc = Markdown::new("some _emphasis_ required");
let mut html = Html::new(html::Flags::empty(), 0);

assert_eq!(
   html.render(&doc).to_str().unwrap(),
   "<p>some <em>emphasis</em> required</p>\n");

Crate version Build Status

These are bindings for hoedown, the C library for markdown processing, with the intention of being as idiomatic as possible.

Dependencies

~210KB