This library implements an adapter to allow rendering strings as markdown inside a maud macro using pulldown-cmark efficiently.
```rust let markdown = " 1. A list 2. With some 3. Values ";
let mut buffer = String::new();
html!(buffer, { div { $(Markdown::FromString(markdown)) } });
printf!("{}", buffer); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.