mant-core 0.6.0

Structured manual and Markdown document engine used by ManT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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::html_anchor;
pub use markdown::{
    MarkdownOptions, render_excerpt_markdown, render_excerpt_markdown_with_options,
    render_markdown, render_markdown_with_options, render_outline_markdown,
};
pub use search::{render_search_markdown, render_search_text};
pub use text::{render_excerpt_text, render_outline_text, render_query_man, render_query_text};