aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-16 08:51:29 +0200
committerMartin Fischer <martin@push-f.com>2023-08-19 13:41:55 +0200
commit0f460c2e77f450a2bac68eec97b2c62aa33c0495 (patch)
treec3c1592cebd140476fe05add4794548c9435942b /src/lib.rs
parenta48ddc21a26f394e077e7bd80ef96b2c281e7730 (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.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1105141..4f2cf9c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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};