lol_html/parser/state_machine/syntax/text/
plaintext.rs

1define_state_group!(plaintext_states_group = {
2
3    #[cold]
4    plaintext_state {
5        eoc => ( emit_text?; )
6        eof => ( emit_text_and_eof?; )
7        _   => ()
8    }
9
10});