rshtml_core 0.6.1

RsHtml: A Template Engine for Seamless HTML and Rust Integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc(hidden)]

mod compiler;
mod context;
mod diagnostic;
mod extensions;
mod position;
mod rshtml_file;

#[cfg(test)]
mod tests;

pub mod v_macro;

mod debug;
mod extract_file;

pub use compiler::Compiler;