13 releases (6 stable)

1.2.1 Mar 11, 2024
1.2.0 Sep 13, 2023
1.1.1 Jul 31, 2023
0.4.0 Apr 25, 2023
0.1.0 Nov 26, 2019

#64 in Parser implementations

Download history 1102/week @ 2023-12-23 1204/week @ 2023-12-30 1450/week @ 2024-01-06 1623/week @ 2024-01-13 1395/week @ 2024-01-20 1650/week @ 2024-01-27 1217/week @ 2024-02-03 1690/week @ 2024-02-10 1728/week @ 2024-02-17 1771/week @ 2024-02-24 2576/week @ 2024-03-02 2345/week @ 2024-03-09 2276/week @ 2024-03-16 2376/week @ 2024-03-23 2294/week @ 2024-03-30 1626/week @ 2024-04-06

8,933 downloads per month
Used in 49 crates (34 directly)

BSD-3-Clause

545KB
11K SLoC

LOL HTML

The logo is generated from https://openmoji.org/data/color/svg/1F602.svg by Emily Jäger which is licensed under CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)

Low Output Latency streaming HTML rewriter/parser with CSS-selector based API.

It is designed to modify HTML on the fly with minimal buffering. It can quickly handle very large documents, and operate in environments with limited memory resources. More details can be found in the blog post.

The crate serves as a back-end for the HTML rewriting functionality of Cloudflare Workers, but can be used as a standalone library with a convenient API for a wide variety of HTML rewriting/analysis tasks.

Documentation

https://docs.rs/lol_html/

Bindings for other programming languages

  • C
  • Lua
  • Go (unofficial, not coming from Cloudflare)
  • Ruby (unofficial, not coming from Cloudflare)

Example

Rewrite insecure hyperlinks:

use lol_html::{element, HtmlRewriter, Settings};

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut output = vec![];

    let mut rewriter = HtmlRewriter::new(
        Settings {
            element_content_handlers: vec![
                element!("a[href]", |el| {
                    let href = el
                        .get_attribute("href")
                        .expect("href was required")
                        .replace("http:", "https:");

                    el.set_attribute("href", &href)?;

                    Ok(())
                })
            ],
            ..Settings::default()
        },
        |c: &[u8]| output.extend_from_slice(c)
    );

    rewriter.write(b"<div><a href=")?;
    rewriter.write(b"http://example.com>")?;
    rewriter.write(b"</a></div>")?;
    rewriter.end()?;

    assert_eq!(
        String::from_utf8(output)?,
        r#"<div><a href="https://example.com"></a></div>"#
    );
    Ok(())
}

License

BSD licensed. See the LICENSE file for details.

Dependencies

~8MB
~211K SLoC