Make testing and developing of the markdown-rs dependency easier

This commit is contained in:
Lukas Stancik
2026-04-05 10:56:15 +02:00
parent da83856042
commit 1de849914a
4 changed files with 39 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#![allow(clippy::single_match)]
fn main() -> Result<(), markdown::message::Message> {
env_logger::init();
println!(
"{:?}",
markdown::to_mdast("::test:", &markdown::ParseOptions::default())?
);
Ok(())
}