we (web engine): Experimental web browser project to understand the limits of Claude
1//! SVG parsing and rasterization for the `we` browser engine.
2//!
3//! Handles inline SVG elements: `<svg>`, `<rect>`, `<circle>`, `<ellipse>`,
4//! `<line>`, `<path>`, `<text>`, and `<g>`.
5
6pub mod path;
7pub mod render;
8pub mod transform;
9
10pub use render::{render_svg, svg_intrinsic_size};