Crates.io | origami-engine |
lib.rs | origami-engine |
version | 0.1.3-alpha.7 |
source | src |
created_at | 2024-08-19 12:51:04.001096 |
updated_at | 2024-10-10 15:03:07.856358 |
description | A templating engine for rust |
homepage | |
repository | https://github.com/ratnaraj7/origami-engine |
max_upload_size | |
id | 1343854 |
size | 45,476 |
Origami Engine is a templating engine focused on modularity, designed for efficient HTML generation with powerful macros.
use origami_engine::comp;
comp! {
greeting =>
div {
"Hello, World!"
}
}
let html = greeting!();
assert_eq!(html.0, "<div>Hello, World!</div>");
For comprehensive documentation and usage instructions, please visit docs.rs.
This project is licensed under the MIT License or the Apache License 2.0. See the LICENSE-MIT and LICENSE-APACHE files for details.