1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// region: lmake_md_to_doc_comments include README.md A //!
//! # rust_wasm_dodrio_router
//!
//! **wasm router for local hash routes for dodrio vdom**  
//! ***[repo](https://github.com/LucianoBestia/rust_wasm_dodrio_router); version: 0.5.2  date: 2021-01-13 authors: Luciano Bestia***  
//!
//! [![Lines in Rust code](https://img.shields.io/badge/Lines_in_Rust-80-green.svg)](https://github.com/LucianoBestia/rust_wasm_router/)
//! [![Lines in Doc comments](https://img.shields.io/badge/Lines_in_Doc_comments-40-blue.svg)](https://github.com/LucianoBestia/rust_wasm_router/)
//! [![Lines in Comments](https://img.shields.io/badge/Lines_in_comments-30-purple.svg)](https://github.com/LucianoBestia/rust_wasm_router/)
//! [![Lines in examples](https://img.shields.io/badge/Lines_in_examples-0-yellow.svg)](https://github.com/LucianoBestia/rust_wasm_router/)
//! [![Lines in tests](https://img.shields.io/badge/Lines_in_tests-9-orange.svg)](https://github.com/LucianoBestia/rust_wasm_router/)
//!
//! ## local router with hash for dodrio vdom
//!
//! I needed a router for local hash routes in rust wasm for dodrio vdom.  
//! This library contains the generic parts.  
//!
//! In the project add a file/mod with specific implementation code like this example:  
//! <https://github.com/LucianoBestia/unforgettable7_game/blob/master/unforgettable7/src/router_impl_mod.rs>  
//!
//! ## cargo crev reviews and advisory
//!
//! It is recommended to always use [cargo-crev](https://github.com/crev-dev/cargo-crev)  
//! to verify the trustworthiness of each of your dependencies.  
//! Please, spread this info.  
//! On the web use this url to read crate reviews. Example:  
//! <https://web.crev.dev/rust-reviews/crate/num-traits/>  
//!
// endregion: lmake_md_to_doc_comments include README.md A //!

pub mod router_mod;

// use rust_wasm_websys_utils::*;