diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -7,6 +7,11 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +/*! +The HTML5 tokenizer from the [html5ever](https://crates.io/crates/html5ever) +crate, repackaged with its dependencies removed. +*/ + #![crate_type = "dylib"] #![cfg_attr(test, deny(warnings))] #![allow(unused_parens)] @@ -29,4 +34,7 @@ mod util { pub mod smallcharset; } -pub mod tokenizer; +mod tokenizer; + +#[doc(inline)] +pub use tokenizer::*;
\ No newline at end of file |