Skip to content

asayers/html-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

html-builder

This crate helps you generate HTML.

let mut buf = Buffer::new();                  // Contents added to buffer by each statement:
let mut html = buf.html().attr("lang='en'");  // <html lang='en'>
writeln!(html.head().title(), "Title!")?;     // <head><title>Title!
writeln!(html.body().h1(), "Header!")?;       // </title></head><body><h1>Header!
buf.finish();                                 // </h1></body></html>
  • It automatically closes your tags for you. This guarantees the output will be well-formed. It also makes your code nicer - closing tags by hand is a drag.
  • It also provides helper methods for all the valid HTML5 tags. You don't have to use these, but if you do it makes sure you don't typo a tag name.

IMO it strikes a good balance of safety to simplicity/flexibility.

It's by no means built for performance, but nevertheless the performance is OK I think. The benchmark generates a small (20-line) HTML document. On my laptop it runs in 2µs. Run cargo bench to check for yourself.

There are high quality templating libraries out there, such as askama, but personally I don't like templates. typed-html is closer to what I want, and it aims for a high level of type safety (eg. it forbids div-level elements inside span-level elements). This is great in theory, but I found working with it was too complex. This crate is much simpler by comparison, at the expense of not catching as many bugs. The design is inspired by Haskell's HTML combinator libraries such as blaze-html and lucid.

About

Flexible and convenient HTML generation

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages