apcore-toolkit 0.8.0

Shared scanner, schema extraction, and output toolkit for apcore framework adapters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Formatting utilities.

mod markdown;
mod surface;
mod tabular;

pub use markdown::{to_markdown, MarkdownError, MarkdownOptions};
pub use surface::{
    format_module, format_modules, format_schema, FormatError, FormatOutput, GroupBy, ModuleStyle,
    SchemaStyle,
};
pub use tabular::{format_csv, format_jsonl};