panache-parser 0.4.0

Lossless CST parser and syntax wrappers for Pandoc markdown, Quarto, and RMarkdown
Documentation

panache-parser

Lossless CST parser and typed syntax wrappers for Pandoc Markdown, Quarto, and R Markdown.

Status

This crate is extracted from the Panache project and is evolving alongside it. The API is still early and may change between releases.

Usage

use panache_parser::parse;

let tree = parse("# Heading\n\nParagraph text.", None);
println!("{:#?}", tree);

Documentation