visdom 1.0.4

A html document syntax and operation library, use APIs similar to jquery, easy to use for web scraping and confused html.
Documentation
use std::sync::Once;
static INIT_LIB: Once = Once::new();
// export rules
pub mod rules;
// export selector
pub mod selector;
// interface
pub mod interface;
// export error
pub mod error;
// utils for crate
pub mod utils;
// constants
pub(crate) mod constants;

// export init, must execute `init()` first
pub fn init() {
	INIT_LIB.call_once(|| {
		rules::init();
	});
}