From 0f460c2e77f450a2bac68eec97b2c62aa33c0495 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Wed, 16 Aug 2023 08:51:29 +0200 Subject: chore: move Attribute to attr module This is done separately so that the following commit has a cleaner diff. --- src/attr.rs | 14 ++++++++++++++ src/emitter.rs | 19 +++---------------- src/lib.rs | 4 +++- 3 files changed, 20 insertions(+), 17 deletions(-) create mode 100644 src/attr.rs (limited to 'src') diff --git a/src/attr.rs b/src/attr.rs new file mode 100644 index 0000000..d0d506e --- /dev/null +++ b/src/attr.rs @@ -0,0 +1,14 @@ +use std::ops::Range; + +/// A HTML attribute value (plus spans). +#[derive(Debug, Eq, PartialEq)] +pub struct Attribute { + /// The value of the attribute. + pub value: String, + + /// The source code span of the attribute name. + pub name_span: Range, + + /// The source code span of the attribute value. + pub value_span: Range, +} diff --git a/src/emitter.rs b/src/emitter.rs index fcfb251..d3258e2 100644 --- a/src/emitter.rs +++ b/src/emitter.rs @@ -179,7 +179,7 @@ pub trait Emitter { pub struct DefaultEmitter { current_characters: String, current_token: Option>, - current_attribute: Option<(String, Attribute)>, + current_attribute: Option<(String, crate::attr::Attribute)>, seen_attributes: BTreeSet, emitted_tokens: VecDeque>, attr_in_end_tag_span: Option>, @@ -380,7 +380,7 @@ impl Emitter for DefaultEmitter { self.flush_current_attribute(); self.current_attribute = Some(( String::new(), - Attribute { + crate::attr::Attribute { name_span: offset..offset, value: String::new(), value_span: Range::default(), @@ -461,7 +461,7 @@ pub struct StartTag { /// /// Duplicate attributes are ignored after the first one as per WHATWG spec. Implement your own /// [`Emitter`] to tweak this behavior. - pub attributes: BTreeMap>, + pub attributes: BTreeMap>, /// The source code span of the tag. pub span: Range, @@ -475,19 +475,6 @@ impl StartTag { } } -/// A HTML attribute value (plus spans). -#[derive(Debug, Eq, PartialEq)] -pub struct Attribute { - /// The value of the attribute. - pub value: String, - - /// The source code span of the attribute name. - pub name_span: Range, - - /// The source code span of the attribute value. - pub value_span: Range, -} - /// A HTML end/close tag, such as `

` or ``. #[derive(Debug, Eq, PartialEq)] pub struct EndTag { 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}; -- cgit v1.2.3