export_engine/lib.rs
1//! Export process snapshots to JSON, Markdown, HTML, and PDF.
2//!
3//! Pure formatting; depends on peek-core for `ProcessInfo` and `ProcessSnapshot`.
4
5pub mod html;
6pub mod json;
7pub mod markdown;
8pub mod pdf;
9pub mod snapshot;
10
11pub use html::render_html;
12pub use json::to_json;
13pub use markdown::render_markdown;
14pub use pdf::export_pdf;
15pub use snapshot::ProcessSnapshot;