nils-markdown 1.0.0

Shared Tera-backed Markdown template layer for the nils-cli workspace.
Documentation
//! Shared Markdown template layer for the nils-cli workspace.
//!
//! Markdown artifacts emitted by workspace CLIs (issue bodies, lifecycle
//! comments, dashboards, retros, heuristic-system entries) are produced
//! by `.md.tera` templates rendered against flat
//! [`serde::Serialize`] view structs. Consumers prepare the view in Rust
//! and let the template own layout; templates never reach into the
//! consumer's domain.
//!
//! Sprint 1 of the archived `markdown-render-template-layer` plan
//! (agent-plan-archive: nils-cli/2026-05-26-markdown-render-template-layer)
//! populates this crate with the engine builder, the `md_cell` Tera filter, the
//! `nils_common::markdown` re-export bridge, the `register_helper`
//! extension point that consumer crates plug their own domain helpers
//! into, and a byte-equality `assert_render` test harness. Sprint 3
//! lands the `md-render` binary that drives the same engine over JSON
//! input under the `bin-cli` Cargo feature.

mod engine;
mod error;
mod filters;
#[cfg(feature = "test-support")]
pub mod golden;
pub mod helpers;

pub use engine::{Engine, EngineBuilder};
pub use error::RenderError;