diff options
| author | Martin Fischer <martin@push-f.com> | 2023-09-05 11:14:24 +0200 | 
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2023-09-09 19:01:38 +0200 | 
| commit | 77eb3eefeeab3ba7ab3c6387e5916192b95b482d (patch) | |
| tree | d31e3d299481a599a6210fca707ca9e2f9da9429 | |
| parent | a0a4ea69f3a4141b94c77a755924dd6dccd71ba2 (diff) | |
chore: group public modules together
| -rw-r--r-- | src/lib.rs | 7 | 
1 files changed, 4 insertions, 3 deletions
| @@ -7,17 +7,18 @@  #![doc = concat!("[the LICENSE file]: ", file_url!("LICENSE"))]  #![doc = include_str!("../README.md")] -pub mod attr;  mod emitter;  mod entities;  mod error;  mod machine;  mod naive_parser; -pub mod offset; -pub mod reader;  mod tokenizer;  mod utils; +pub mod attr; +pub mod offset; +pub mod reader; +  pub use emitter::{Comment, DefaultEmitter, Doctype, Emitter, EndTag, StartTag, Token};  pub use error::Error;  pub use naive_parser::NaiveParser; | 
