zen_rs/
layouts.rs

1
2
3
4
5
6
7
8
9
10
//! Available layouts
//! * [x] HTML (custom implementation)
//! * [ ] PNG (conversion from SVG)
//! * [ ] PDF (Skia)
//! * [ ] SVG (Skia)
//! * [ ] Leptos

pub mod html;

pub use html::*;