ssg 0.0.43

A secure-by-default static site generator built in Rust. WCAG 2.2 AA validation, CSP/SRI hardening, native JS/CSS minification, automated CycloneDX SBOM, local LLM content pipeline, WebAssembly target, interactive islands, streaming compilation for 100K+ pages, 28-locale i18n, and one-command deployment.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright © 2023 - 2026 Static Site Generator (SSG). All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Cross-cutting utility modules.
//!
//! Currently houses the streaming HTML rewriter wrapper
//! ([`html_rewriter`]) used by the image, search, CSP, and html-fix
//! plugins to replace the fragile `str::find` / `str::rfind` rewriting
//! that previously lived in each plugin (issue #525).

pub mod html_rewriter;