Skip to main content

klasp_core/text/
mod.rs

1//! Text-manipulation helpers shared across klasp's agent surfaces.
2//!
3//! These are pure, filesystem-free string transforms. The first inhabitant
4//! is [`managed_block`], the delimited-region writer that every surface
5//! (AGENTS.md markdown, git-hook shell, future YAML configs) layers its
6//! file-format-specific framing on top of.
7
8pub mod managed_block;