html-generator 0.0.5

A robust Rust library designed for transforming Markdown into SEO-optimized, accessible HTML. Featuring front matter extraction, custom header processing, table of contents generation, and performance optimization for web projects of any scale.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright © 2023 - 2026 Static Site Generator (SSG). All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Helper modules for `#[serde(with = "...")]` enum
//! serialization strategies.
//!
//! These modules provide alternative ways to represent
//! Rust enums in YAML, matching the `serde_yml::with` API.

pub(crate) mod singleton_map;
pub(crate) mod singleton_map_optional;
pub(crate) mod singleton_map_recursive;