moss-core
Pure-Rust content engine that powers moss.
Read-only mirror. Source lives in the private moss monorepo. PRs cannot be merged here — see CONTRIBUTING.md.
moss is a desktop publishing app; this crate is its content engine. Pure Rust, no I/O — takes data in (strings, structs), returns data out (parsed AST, frontmatter, rendered HTML).
Quickstart
use frontmatter;
let raw = "---\ntitle: Hello\n---\n\nBody text";
let doc = parse?;
println!;
Stability
This crate is 0.x. The API may change between minor versions until 1.0. Breaking changes are documented in CHANGELOG.md.
License
MIT — see LICENSE.