ssg 0.0.40

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
// Copyright © 2023 - 2026 Static Site Generator (SSG). All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

pub mod accessibility;
pub mod ai;
pub mod assets;
pub mod csp;
pub mod drafts;
pub mod highlight;
pub mod i18n;
#[cfg(feature = "image-optimization")]
pub mod image_plugin;
pub mod islands;
pub mod llm;
pub mod markdown_ext;
pub mod og_image;
pub mod pagination;
pub mod plugin;
pub mod plugins;
pub mod postprocess;
pub mod sbom;
pub mod search;
pub mod seo;
pub mod shortcodes;
pub mod taxonomy;
#[cfg(feature = "templates")]
pub mod template_plugin;