mant-engine 0.8.0

Structured manual and Markdown document engine used by ManT
Documentation
//! Deterministic textual serializers owned by the native document engine.

mod json;
mod markdown;
mod search;
mod text;

pub use json::{
    render_excerpt_json, render_outline_json, render_query_json, render_search_json,
    render_update_json,
};
pub(crate) use markdown::{
    MarkdownArtifact, MarkdownNode, MarkdownNodeRange, MarkdownSection, render_addressable_markdown,
};
pub use markdown::{
    MarkdownOptions, render_excerpt_markdown, render_excerpt_markdown_with_options,
    render_markdown, render_markdown_with_options, render_outline_markdown,
};
pub use search::{
    SearchTextRole, render_search_markdown, render_search_text, render_search_text_with,
};
pub use text::{render_excerpt_text, render_outline_text, render_query_man, render_query_text};