Generate an HTML index.
Over the years the HTML spec has added lots of new capabilities in a backwards compatible fashion. This means that even if something from the 90's might still work in today's browsers, it might not always be the most efficient.
This crate makes it easy to build performant HTML without needing to remember all boilerplate involved.
extern crate html_index;
pub fn main() {
let res = html_index::Builder::new()
.raw_body("<body>hello world</body>")
.script("/bundle.js")
.style("/bundle.css")
.build();
println!("{}", res);
}
Which generates:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preload" as="style" href="/bundle.css" onload="this.rel='stylesheet'">
<script src="/bundle.js" defer></script>
</head>
<body>hello world</body>
</html>
$ cargo add html-index
This crate uses #![deny(unsafe_code)]
to ensure everything is implemented in
100% Safe Rust.
Want to join us? Check out our "Contributing" guide and take a look at some of these issues:
None.
MIT OR Apache-2.0