diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-12 12:58:08 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 13:53:58 +0200 |
commit | 0d9cd9ed44b676ccd4991cea27dc620b94ebe7e7 (patch) | |
tree | aba2bff89958bbe4516a49caba5edffc866c64af /src/lib.rs | |
parent | b125bec9914bd211d77719bd60bc5a23bd9db579 (diff) |
feat: introduce NaiveParser
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,6 +9,7 @@ mod emitter; mod entities; mod error; mod machine; +mod naive_parser; pub mod offset; pub mod reader; mod tokenizer; @@ -16,6 +17,7 @@ mod utils; pub use emitter::{Comment, Doctype, Emitter, EndTag, StartTag, Token}; pub use error::Error; +pub use naive_parser::NaiveParser; pub use tokenizer::{State, Tokenizer}; #[cfg(feature = "integration-tests")] |