systemprompt-generator 0.9.1

Static site generation, theme rendering, and asset bundling for systemprompt.io AI governance dashboards. Handlebars and Markdown pipeline for the MCP governance platform.
Documentation
1
2
3
4
5
6
7
8
//! Markdown rendering, frontmatter extraction, and table-of-contents
//! generation used by the prerender pipeline.

mod markdown;
mod toc;

pub use markdown::{extract_frontmatter, render_markdown};
pub use toc::generate_toc;