lax-markup 0.2.5

Lax HTML, XML, SVG, and component (Vue, Svelte, Astro) formatter that never reinterprets your markup. Usable as a library or a dprint plugin.
Documentation
1
2
3
4
5
6
7
8
9
mod parser;
mod printer;
mod tokenizer;

pub use parser::parse;
pub use printer::generate;
pub use tokenizer::Event;
pub use tokenizer::EventKind;
pub use tokenizer::tokenize;