High-performance Markdown parser for Ox Content.
This crate provides a fast, arena-allocated Markdown parser following the CommonMark specification with GFM extensions.
Features
- Arena-based allocation for zero-copy parsing
- CommonMark compliant with GFM extensions
- Pluggable architecture for custom syntax extensions
Example
use Allocator;
use Parser;
let allocator = new;
let source = "# Hello World\n\nThis is a paragraph.";
let parser = new;
let document = parser.parse;