hamlet

Crates.iohamlet
lib.rshamlet
version0.2.1
sourcesrc
created_at2016-03-29 17:02:57.439522
updated_at2016-04-09 15:47:54.081136
descriptionHtml token definitions for stream processing
homepagehttps://nemo157.com/hamlet
repositoryhttps://github.com/Nemo157/hamlet
max_upload_size
id4609
size36,554
Nemo157 (Nemo157)

documentation

https://nemo157.com/hamlet/docs/0.2.1/hamlet

README

hamlet

Provides token definitions for HTML stream processing. The goal of this library is to provide a simple API over which higher abstraction can be built on.

Example

#[macro_use]
extern crate hamlet;

use std::fmt::Write;

fn main() {
    use hamlet::Token;
    let tokens = vec![
        Token::text("Hello, "),
        Token::start_tag("small", attrs!(class="foo")),
        Token::text("world!"),
        Token::end_tag("small"),
    ];

    let mut html = String::from("");
    for token in tokens {
        write!(html, "{}", token);
    }

    assert_eq!(html, "Hello, <small class=\"foo\">world!</small>");
}

Links

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Commit count: 88

cargo fmt