//! Djot markup format extractor and utilities.
//!
//! This module provides:
//! - Djot parsing using the jotdown crate
//! - YAML frontmatter metadata extraction (same as Markdown)
//! - Table extraction as structured data
//! - Heading structure preservation
//! - Code block and link extraction
//! - Djot content rendering and conversion APIs
//!
//! Djot is a modern markup language with simpler parsing rules than CommonMark.
//! See https://djot.net for the specification.
//!
//! Requires the `djot` feature.
// Re-export public API
pub use ;
pub use DjotExtractor;