diff options
| -rw-r--r-- | src/lib.rs | 7 | 
1 files changed, 4 insertions, 3 deletions
| @@ -7,17 +7,18 @@  #![doc = concat!("[the LICENSE file]: ", file_url!("LICENSE"))]  #![doc = include_str!("../README.md")] -pub mod attr;  mod emitter;  mod entities;  mod error;  mod machine;  mod naive_parser; -pub mod offset; -pub mod reader;  mod tokenizer;  mod utils; +pub mod attr; +pub mod offset; +pub mod reader; +  pub use emitter::{Comment, DefaultEmitter, Doctype, Emitter, EndTag, StartTag, Token};  pub use error::Error;  pub use naive_parser::NaiveParser; | 
