Skip to main content

kaish_help/
content.rs

1//! Embedded help content (English), compiled in from `content/en/`.
2//!
3//! These whole-document strings back the [`crate::topic`] compatibility surface.
4//! The fine-grained [`crate::fragments`] registry that the composition surface
5//! uses is separate; decomposing these docs into fragments (and making
6//! `LANGUAGE.md` / `syntax.md` generated) is the next phase — see
7//! `docs/composable-help.md`.
8
9pub const OVERVIEW: &str = include_str!("../content/en/overview.md");
10pub const SYNTAX: &str = include_str!("../content/en/syntax.md");
11pub const VFS: &str = include_str!("../content/en/vfs.md");
12pub const SCATTER: &str = include_str!("../content/en/scatter.md");
13pub const IGNORE: &str = include_str!("../content/en/ignore.md");
14pub const OUTPUT_LIMIT: &str = include_str!("../content/en/output-limit.md");
15pub const LIMITS: &str = include_str!("../content/en/limits.md");
16pub const OVERLAY: &str = include_str!("../content/en/overlay.md");