1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
define_state_group!(attributes_states_group = {

     before_attribute_name_state {
        whitespace => ()
        b'/'       => ( --> self_closing_start_tag_state )
        b'>'       => ( emit_tag?; --> dyn next_text_parsing_state )
        eof        => ( emit_raw_without_token_and_eof?; )
        _          => ( start_attr; --> attribute_name_state )
    }

    attribute_name_state {
        whitespace => ( finish_attr_name; --> after_attribute_name_state )
        b'/'       => ( finish_attr_name; finish_attr; --> self_closing_start_tag_state )
        b'>'       => ( finish_attr_name; finish_attr; emit_tag?; --> dyn next_text_parsing_state )
        b'='       => ( finish_attr_name; --> before_attribute_value_state )
        eof        => ( emit_raw_without_token_and_eof?; )
        _          => ()
    }

    after_attribute_name_state {
        whitespace => ()
        b'/'       => ( finish_attr; --> self_closing_start_tag_state )
        b'='       => ( --> before_attribute_value_state )
        b'>'       => ( finish_attr; emit_tag?; --> dyn next_text_parsing_state )
        eof        => ( emit_raw_without_token_and_eof?; )
        _          => ( finish_attr; start_attr; --> attribute_name_state )
    }

    before_attribute_value_state {
        whitespace => ()
        b'"'       => ( set_closing_quote_to_double; --> attribute_value_quoted_state )
        b'\''      => ( set_closing_quote_to_single; --> attribute_value_quoted_state )
        b'>'       => ( finish_attr; emit_tag?; --> data_state )
        eof        => ( emit_raw_without_token_and_eof?; )
        _          => ( reconsume in attribute_value_unquoted_state )
    }

    attribute_value_quoted_state <-- ( start_token_part; ) {
        closing_quote => ( finish_attr_value; finish_attr; --> after_attribute_value_quoted_state )
        eof           => ( emit_raw_without_token_and_eof?; )
        _             => ()
    }

    after_attribute_value_quoted_state {
        whitespace => ( --> before_attribute_name_state )
        b'/'       => ( --> self_closing_start_tag_state )
        b'>'       => ( emit_tag?; --> dyn next_text_parsing_state )
        eof        => ( emit_raw_without_token_and_eof?; )
        _          => ( reconsume in before_attribute_name_state )
    }

    attribute_value_unquoted_state <-- ( start_token_part; ) {
        whitespace => ( finish_attr_value; finish_attr; --> before_attribute_name_state )
        b'>'       => ( finish_attr_value; finish_attr; emit_tag?; --> dyn next_text_parsing_state )
        eof        => ( emit_raw_without_token_and_eof?; )
        _          => ()
    }

});