Crates.io | hamlrs |
lib.rs | hamlrs |
version | 0.4.3 |
source | src |
created_at | 2018-07-15 10:33:25.602222 |
updated_at | 2019-09-15 07:46:21.318027 |
description | A Rust library for parsing [Haml](http://haml.info) templates |
homepage | |
repository | https://github.com/jhartwell/haml-rs |
max_upload_size | |
id | 74328 |
size | 56,762 |
This is a library for parsing Haml templates. You are able to get Haml-rs on Crates.io. The aim for this is to produce identical HTML to what the Ruby Haml gem produces.
To include haml-rs in your project add the following to your Cargo.toml:
[dependencies]
hamlrs = "0.4.2"
Then add the following to your code:
extern crate haml;
extern crate haml;
fn main() {
let test_haml = "%span";
let html = haml::to_html(&test_haml);
}
This software is in its early stages and as such there may be issues with stability.
If you find any bugs please don't hesitate to open an issue on github or, if you want, you can reach out directly to me at jon@dontbreakthebuild.com
There are currently a few integration tests (and more to come). If you are going to contribute to an integration test please make sure that the HTML file that is generated by the Ruby Haml gem so that we can ensure that we are producing the same output as the reference implementation.
There is no variable/expression support in Haml-rs. This is something that is being thought about and if you want to add your thoughts you are more than welcome to comment here.
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Haml-rs by you, shall be licensed as MIT, without any additional terms or conditions.
If you have any questions you can reach me via email at jon@dontbreakthebuild.com