This repository has no description
1pub mod canvas;
2pub mod fill;
3pub mod filter;
4pub mod fonts;
5pub mod layer;
6pub mod objects;
7pub mod renderable;
8pub mod transform;
9
10use measure_time::debug_time;
11pub use renderable::{CSSRenderable, SVGAttributesRenderable, SVGRenderable};
12
13pub fn stringify_svg(element: svg::node::element::Element) -> String {
14 debug_time!("stringify_svg");
15
16 return element.to_string();
17}