diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-10 06:22:38 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-11 09:05:44 +0200 |
commit | 0695ee9ca63cc3faa51378b35381d62f5a00b846 (patch) | |
tree | 5d7483bdf96f542a5647988f5e09b5e4f8167832 /src/lib.rs | |
parent | 1d8e6239875c810197a0679a20412726afb8ff66 (diff) |
chore: move DefaultEmitter to own module
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,6 +7,7 @@ #![doc = concat!("[the LICENSE file]: ", file_url!("LICENSE"))] #![doc = include_str!("../README.md")] +mod default_emitter; mod emitter; mod entities; mod error; @@ -25,7 +26,8 @@ pub mod offset; pub mod reader; pub mod token; -pub use emitter::{DefaultEmitter, Emitter}; +pub use default_emitter::DefaultEmitter; +pub use emitter::Emitter; pub use error::Error; pub use naive_parser::NaiveParser; pub use token::{Comment, Doctype, EndTag, StartTag, Token}; |