chartml_render/svg.rs
1//! ChartElement tree → SVG string serialization.
2//!
3//! As of chartml 5.0 (phase 2), the implementation lives in
4//! `chartml_core::svg` so the new pipeline's `render_prepared_to_svg`
5//! method can produce SVG strings without circular dependency on
6//! `chartml-render`. This module re-exports the canonical
7//! `element_to_svg` for back-compat with existing callers
8//! (`chartml-test-runner`, `chartml-wasm`, downstream apps).
9
10pub use chartml_core::svg::element_to_svg;