moss_core/render.rs
1//! HTML synthesizers for moss-emitted markdown content.
2//!
3//! Each submodule owns one media kind's `<X>` emission given typed
4//! inputs (`TitleParams`, `&AssetSnapshot`, source URL). Pure functions:
5//! no I/O, no async, no Tauri primitives. Consumed by src-tauri's
6//! markdown pipeline (Stage 2 event dispatcher) and by moss-core's own
7//! shortcode renderers (Phase 2E v5 PR3).
8pub mod audio;
9pub mod iframe;
10pub mod image;
11pub mod model;
12pub mod pdf;
13pub mod url_embed;
14pub mod video;