ox_content_parser 0.17.0

High-performance Markdown parser for Ox Content
Documentation

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 ox_content_allocator::Allocator;
use ox_content_parser::Parser;

let allocator = Allocator::new();
let source = "# Hello World\n\nThis is a paragraph.";
let parser = Parser::new(&allocator, source);
let document = parser.parse();