Lossless CST parser and typed syntax wrappers for Pandoc Markdown, Quarto, and R
Markdown.
This crate is extracted from the Panache project and is evolving alongside it.
The API is still early and may change between releases.
```rust
use panache_parser::parse;
let tree = parse("# Heading\n\nParagraph text.", None);
println!("{:#?}", tree);
```
- -