hyperide 0.0.6

Builds strings from embedded HTML in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[doc(hidden)]
pub const SCRIPT: &str = include_str!("_hyperscript.min.js");

#[macro_export]
macro_rules! include_hyperscript {
    () => {
        $crate::hyperide! {
            <script _hr_no_raw=true>
                { $crate::hyperscript::SCRIPT }
            </script>
        }
    };
}

pub use include_hyperscript;