shared crates: rustdoc bridge markers to maintainer wiki
Add <!-- wiki: slug --> markers on docengine, s3-storage, pom-contract (finishing
the /dellm reorg: shared-crate backlogs -> GoingsOn, docs -> code wiki).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 files changed,
+9 insertions,
-0 deletions
| 1 |
1 |
|
//! Configurable markdown-to-HTML rendering with sanitization presets.
|
| 2 |
2 |
|
//!
|
|
3 |
+ |
//! Design + roadmap: maintainer wiki.
|
|
4 |
+ |
//! <!-- wiki: docengine-overview -->
|
|
5 |
+ |
//!
|
| 3 |
6 |
|
//! Provides four rendering presets for different trust levels:
|
| 4 |
7 |
|
//! - **Permissive** -- full GFM (tables, footnotes, images, raw HTML). For trusted content.
|
| 5 |
8 |
|
//! - **Standard** -- GFM without images. For app text fields.
|
| 1 |
1 |
|
//! Schema-drift guard for services monitored by PoM.
|
| 2 |
2 |
|
//!
|
|
3 |
+ |
//! Pattern + rationale: maintainer wiki.
|
|
4 |
+ |
//! <!-- wiki: pom-health-contract -->
|
|
5 |
+ |
//!
|
| 3 |
6 |
|
//! Background: PoM polls each target's `/api/health` and runs key-by-key
|
| 4 |
7 |
|
//! assertions from `pom/deploy/pom-hetzner.toml` (`json_fields = { ... }`).
|
| 5 |
8 |
|
//! If a producer changes the response shape without updating PoM — or vice
|
| 1 |
1 |
|
//! Shared S3-compatible storage client.
|
| 2 |
2 |
|
//!
|
|
3 |
+ |
//! Overview: maintainer wiki.
|
|
4 |
+ |
//! <!-- wiki: s3-storage-overview -->
|
|
5 |
+ |
//!
|
| 3 |
6 |
|
//! Thin wrapper around the AWS SDK providing upload, download, delete,
|
| 4 |
7 |
|
//! presigned URL generation, and bucket management. Used by MNW and
|
| 5 |
8 |
|
//! Multithreaded to avoid duplicating S3 initialization and operations.
|