lol_html 2.7.2

Streaming HTML rewriter/parser with CSS selector-based API
Documentation
1
2
3
4
5
6
7
8
9
define_state_group!(data_states_group = {

    data_state  {
        memchr(b'<') => ( emit_text?; mark_tag_start; --> #[inline] tag_open_state )
        eoc  => ( emit_text?; )
        eof  => ( emit_text_and_eof?; )
    }

});