Skip to main content

ssg/util/
mod.rs

1// Copyright © 2023 - 2026 Static Site Generator (SSG). All rights reserved.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4//! Cross-cutting utility modules.
5//!
6//! - [`html_rewriter`] — streaming `lol_html` wrapper used by image,
7//!   search, CSP, and html-fix plugins (issue #525).
8//! - [`head_dom`] — parser-driven HTML `<head>` manipulation used by the
9//!   SEO, `og_image`, `llm`, `ai`, `i18n`, `highlight`, `sbom`, `atom`,
10//!   `json_feed`, and `jsonld` plugins (issues #538, #539, #540).
11
12pub mod head_dom;
13pub mod html_rewriter;