mdstream 0.3.0

Streaming-first Markdown middleware for LLM output (committed + pending blocks, render-agnostic).
Documentation
pub mod analyze;
pub mod boundary;
mod extensions;
pub mod options;
mod pending;
mod reference;
mod semantics;
pub mod state;
pub mod stream;
mod syntax;
pub mod transform;
pub mod types;

#[cfg(feature = "pulldown")]
pub mod adapters;

pub use analyze::*;
pub use boundary::*;
pub use options::*;
pub use pending::{TerminatorOptions, terminate_markdown};
pub use state::*;
pub use stream::*;
pub use syntax::*;
pub use transform::*;
pub use types::*;