//! Sanitization helpers (Rails `sanitize` / `strip_tags` / `h`).
/// Escape HTML special characters (Rails `h`).
/// Remove all HTML tags, keeping the text between them (Rails `strip_tags`).
/// A conservative sanitize: strip every tag, then escape the remaining text so
/// no markup can survive (Rails `sanitize`, allowlist not yet supported).