aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 40cbf8f..5e6a620 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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