unreact 0.7.0

A static site generation framework for Rust using Handlebars and Scss.
Documentation
1
2
3
4
5
6
7
/// Specifically for HBS->HTML template rendering
mod hbs;
/// Specifically for SCSS->CSS conversion
mod scss;

pub(crate) use hbs::{register_inbuilt, register_templates, render_page};
pub(crate) use scss::scss_to_css;