diff options
| author | Martin Fischer <martin@push-f.com> | 2021-04-08 15:53:14 +0200 | 
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2021-04-08 15:57:18 +0200 | 
| commit | dead23ea380ad5602430fc5398cdf5ec1bb3921c (patch) | |
| tree | 55c6c059ae4a9683a0b984154237f8730cbee2fd /src | |
| parent | eb0e8506472f2d672b00227bb07089c313484945 (diff) | |
fix scope, add short module docstringv0.1.0
Diffstat (limited to 'src')
| -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  | 
