blob: 718e400466456bdddcd7272f49a9379c2cc25f60 (
plain) (
tree)
|
|
extern crate micromark;
use micromark::{micromark, micromark_with_options, Options};
fn main() {
// Turn on debugging.
// You can show it with `RUST_LOG=debug cargo run --example lib`
env_logger::init();
// Safely turn (untrusted?) markdown into HTML.
println!("{:?}", micromark("# Hello, world!"));
// Turn trusted markdown into HTML.
println!(
"{:?}",
micromark_with_options(
"<div style=\"color: tomato\">\n\n# Hello, tomato!\n\n</div>",
&Options {
allow_dangerous_html: true,
allow_dangerous_protocol: true,
default_line_ending: None
}
)
);
}
|