hyperide/
hyperscript.rs

1#[doc(hidden)]
2pub const SCRIPT: &str = include_str!("_hyperscript.min.js");
3
4#[macro_export]
5macro_rules! include_hyperscript {
6    () => {
7        $crate::hyperide! {
8            <script _hr_no_raw=true>
9                { $crate::hyperscript::SCRIPT }
10            </script>
11        }
12    };
13}
14
15pub use include_hyperscript;