apcore_toolkit/formatting/mod.rs
1// Formatting utilities.
2
3mod markdown;
4mod surface;
5mod tabular;
6
7pub use markdown::{to_markdown, MarkdownError, MarkdownOptions};
8pub use surface::{
9 format_module, format_modules, format_schema, FormatError, FormatOutput, GroupBy, ModuleStyle,
10 SchemaStyle,
11};
12pub use tabular::{format_csv, format_jsonl};