libhanzzok 0.1.5

Hanzzok compiler library
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use v_htmlescape::escape;

#[cfg_attr(target_arch = "wasm32", wasm_bindgen::prelude::wasm_bindgen)]
pub fn w_escape(s: String) -> String {
    escape(s.as_ref()).to_string()
}

pub mod api;
pub mod codegen;
pub mod core;
pub mod syntax;