diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-16 08:51:29 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 13:41:55 +0200 |
commit | 0f460c2e77f450a2bac68eec97b2c62aa33c0495 (patch) | |
tree | c3c1592cebd140476fe05add4794548c9435942b /src/lib.rs | |
parent | a48ddc21a26f394e077e7bd80ef96b2c281e7730 (diff) |
chore: move Attribute to attr module
This is done separately so that the following commit has a cleaner diff.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,6 +3,7 @@ #![forbid(unsafe_code)] #![doc = include_str!("../README.md")] +mod attr; mod emitter; mod entities; mod error; @@ -15,6 +16,7 @@ mod utils; #[cfg(feature = "integration-tests")] pub use utils::State as InternalState; -pub use emitter::{Attribute, Comment, DefaultEmitter, Doctype, Emitter, EndTag, StartTag, Token}; +pub use attr::Attribute; +pub use emitter::{Comment, DefaultEmitter, Doctype, Emitter, EndTag, StartTag, Token}; pub use error::Error; pub use tokenizer::{State, Tokenizer}; |