diff options
author | Martin Fischer <martin@push-f.com> | 2023-09-22 15:34:46 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-28 10:36:08 +0200 |
commit | 30b4adf60b9423968b0c9c6d23363f6d8cd99384 (patch) | |
tree | aafbdf781282b3440d3b217e6a2614e9cd65a03d /src/lib.rs | |
parent | d46de6ab592e57a31fef13cfc015c4ce818e8f47 (diff) |
break!: remove CdataAction
Which action the tokenizer takes depending on whether or not an
adjusted current node is present but not in the HTML namespace,
is an implementation detail and shouldn't be exposed in the API.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ pub use emitter::Emitter; pub use error::Error; pub use naive_parser::NaiveParser; pub use token::{Doctype, EndTag, StartTag, Token}; -pub use tokenizer::{CdataAction, Event, State, Tokenizer}; +pub use tokenizer::{Event, State, Tokenizer}; pub use tracing_emitter::TracingEmitter; #[cfg(feature = "integration-tests")] |