hatmil/
lib.rs

1// lib.rs
2//
3// Copyright (C) 2025  Douglas P Lau
4#![doc = include_str!("../README.md")]
5#![forbid(unsafe_code)]
6
7mod html;
8mod svg;
9
10pub use html::{Elem, Html, VoidElem};
11pub use svg::Svg;