From 13588776d65601a41ddfce85f618e8aaa55951cc Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 30 Jun 2022 13:08:59 +0200 Subject: Update todos --- examples/lib.rs | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'examples') diff --git a/examples/lib.rs b/examples/lib.rs index 718e400..816aa33 100644 --- a/examples/lib.rs +++ b/examples/lib.rs @@ -1,24 +1,8 @@ extern crate micromark; -use micromark::{micromark, micromark_with_options, Options}; +use micromark::micromark; 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( - "
\n\n# Hello, tomato!\n\n
", - &Options { - allow_dangerous_html: true, - allow_dangerous_protocol: true, - default_line_ending: None - } - ) - ); + println!("{:?}", micromark("[](irc:///help)")); } -- cgit