diff --git a/corpus/spec.txt b/corpus/spec.txt index 65b0b33..41fa6e8 100644 --- a/corpus/spec.txt +++ b/corpus/spec.txt @@ -8460,7 +8460,6 @@ Example 589 - https://github.github.com/gfm/#example-589 (document (paragraph (image - (image_description) (link_destination)))) ================================================================================ diff --git a/grammar.js b/grammar.js index ef6741b..cd59831 100644 --- a/grammar.js +++ b/grammar.js @@ -204,15 +204,15 @@ module.exports = grammar(add_inline_rules({ [$.link_label, $._open_tag, $._text_inline_no_link], [$.link_label, $.hard_line_break, $._text_inline_no_link], [$.link_label, $._inline_element_no_link], - [$.image_description, $._text_inline], + [$._image_description, $._text_inline], [$._image_description_non_empty, $._text_inline], - [$.image_description, $._image_description_non_empty, $._text_inline], - [$.image_description, $._image_description_non_empty, $._text_inline_no_star], - [$.image_description, $._image_description_non_empty, $._text_inline_no_underscore], - [$._image_shortcut_link, $.image_description], + [$._image_description, $._image_description_non_empty, $._text_inline], + [$._image_description, $._image_description_non_empty, $._text_inline_no_star], + [$._image_description, $._image_description_non_empty, $._text_inline_no_underscore], + [$._image_shortcut_link, $._image_description], [$._image_inline_link, $._image_shortcut_link], [$._image_full_reference_link, $._image_collapsed_reference_link, $._image_shortcut_link], - [$.shortcut_link, $.link_text], + [$.shortcut_link, $._link_text], [$.link_destination, $.link_title], [$._link_destination_parenthesis, $.link_title], [$._soft_line_break, $._paragraph_end_newline], @@ -412,18 +412,18 @@ module.exports = grammar(add_inline_rules({ $._newline, )), - shortcut_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, alias($._link_text_non_empty, $.link_text)), // TODO: no newline + shortcut_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, $._link_text_non_empty), // TODO: no newline full_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( - $.link_text, + $._link_text, $.link_label )), // TODO: no newline collapsed_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( - $.link_text, + $._link_text, '[', ']' )), // TODO: no newline inline_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( - $.link_text, + $._link_text, '(', repeat(choice($._whitespace, $._soft_line_break)), optional(seq( @@ -437,7 +437,7 @@ module.exports = grammar(add_inline_rules({ )), // TODO: no newline image: $ => choice($._image_inline_link, $._image_shortcut_link, $._image_full_reference_link, $._image_collapsed_reference_link), // TODO no newline _image_inline_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq( - $.image_description, + $._image_description, '(', repeat(choice($._whitespace, $._soft_line_break)), optional(seq( @@ -449,14 +449,14 @@ module.exports = grammar(add_inline_rules({ )), ')' )), - _image_shortcut_link: $ => prec.dynamic(3 * PRECEDENCE_LEVEL_LINK, alias($._image_description_non_empty, $.image_description)), - _image_full_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq($.image_description, $.link_label)), - _image_collapsed_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq($.image_description, '[', ']')), - - link_text: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, choice($._link_text_non_empty, seq('[', ']'))), - _link_text_non_empty: $ => seq('[', $._inline_no_link, ']'), - image_description: $ => prec.dynamic(3 * PRECEDENCE_LEVEL_LINK, choice($._image_description_non_empty, seq('!', '[', ']'))), - _image_description_non_empty: $ => seq('!', '[', $._inline, ']'), + _image_shortcut_link: $ => prec.dynamic(3 * PRECEDENCE_LEVEL_LINK, $._image_description_non_empty), + _image_full_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq($._image_description, $.link_label)), + _image_collapsed_reference_link: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, seq($._image_description, '[', ']')), + + _link_text: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, choice($._link_text_non_empty, seq('[', ']'))), + _link_text_non_empty: $ => seq('[', alias($._inline_no_link, $.link_text), ']'), + _image_description: $ => prec.dynamic(3 * PRECEDENCE_LEVEL_LINK, choice($._image_description_non_empty, seq('!', '[', ']'))), + _image_description_non_empty: $ => seq('!', '[', alias($._inline, $.image_description), ']'), link_label: $ => seq('[', repeat1(choice($._text_inline_no_link, $.backslash_escape, $._newline)), ']'), link_destination: $ => prec.dynamic(PRECEDENCE_LEVEL_LINK, choice( seq('<', repeat(choice($._text_no_angle, $.backslash_escape)), '>'), @@ -657,7 +657,7 @@ function add_inline_rules(grammar) { conflicts.push(['_open_tag', '_text_inline' + suffix_delimiter + suffix_link]); conflicts.push(['_link_text_non_empty', 'link_label', '_text_inline' + suffix_delimiter + suffix_link]); conflicts.push(['_link_text_non_empty', '_text_inline' + suffix_delimiter + suffix_link]); - conflicts.push(['link_text', '_text_inline' + suffix_delimiter + suffix_link]); + conflicts.push(['_link_text', '_text_inline' + suffix_delimiter + suffix_link]); conflicts.push(['link_label', '_text_inline' + suffix_delimiter + suffix_link]); conflicts.push(['link_reference_definition', '_text_inline' + suffix_delimiter + suffix_link]); conflicts.push(['hard_line_break', '_text_inline' + suffix_delimiter + suffix_link]); @@ -684,9 +684,9 @@ function add_inline_rules(grammar) { } grammar.rules['_emphasis_star' + suffix_newline + suffix_link] = $ => prec.dynamic(PRECEDENCE_LEVEL_EMPHASIS, seq($._emphasis_open_star, $['_inline' + suffix_newline + '_no_star' + suffix_link], $._emphasis_close_star)); - grammar.rules['_strong_emphasis_star' + suffix_newline + suffix_link] = $ => prec.dynamic(PRECEDENCE_LEVEL_EMPHASIS, seq($._emphasis_open_star, $['_emphasis_star' + suffix_newline + suffix_link], $._emphasis_close_star)); + grammar.rules['_strong_emphasis_star' + suffix_newline + suffix_link] = $ => prec.dynamic(2 * PRECEDENCE_LEVEL_EMPHASIS, seq($._emphasis_open_star, $['_emphasis_star' + suffix_newline + suffix_link], $._emphasis_close_star)); grammar.rules['_emphasis_underscore' + suffix_newline + suffix_link] = $ => prec.dynamic(PRECEDENCE_LEVEL_EMPHASIS, seq($._emphasis_open_underscore, $['_inline' + suffix_newline + '_no_underscore' + suffix_link], $._emphasis_close_underscore)); - grammar.rules['_strong_emphasis_underscore' + suffix_newline + suffix_link] = $ => prec.dynamic(PRECEDENCE_LEVEL_EMPHASIS, seq($._emphasis_open_underscore, $['_emphasis_underscore' + suffix_newline + suffix_link], $._emphasis_close_underscore)); + grammar.rules['_strong_emphasis_underscore' + suffix_newline + suffix_link] = $ => prec.dynamic(2 * PRECEDENCE_LEVEL_EMPHASIS, seq($._emphasis_open_underscore, $['_emphasis_underscore' + suffix_newline + suffix_link], $._emphasis_close_underscore)); } grammar.rules['_code_span' + suffix_newline] = $ => prec.dynamic(PRECEDENCE_LEVEL_CODE_SPAN, seq($._code_span_start, repeat(newline ? choice($._text, $._soft_line_break) : $._text), $._code_span_close)); } diff --git a/src/grammar.json b/src/grammar.json index d3dabde..1fee6c3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3321,13 +3321,8 @@ "type": "PREC_DYNAMIC", "value": 10, "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_link_text_non_empty" - }, - "named": true, - "value": "link_text" + "type": "SYMBOL", + "name": "_link_text_non_empty" } }, "full_reference_link": { @@ -3338,7 +3333,7 @@ "members": [ { "type": "SYMBOL", - "name": "link_text" + "name": "_link_text" }, { "type": "SYMBOL", @@ -3355,7 +3350,7 @@ "members": [ { "type": "SYMBOL", - "name": "link_text" + "name": "_link_text" }, { "type": "STRING", @@ -3376,7 +3371,7 @@ "members": [ { "type": "SYMBOL", - "name": "link_text" + "name": "_link_text" }, { "type": "STRING", @@ -3514,7 +3509,7 @@ "members": [ { "type": "SYMBOL", - "name": "image_description" + "name": "_image_description" }, { "type": "STRING", @@ -3627,13 +3622,8 @@ "type": "PREC_DYNAMIC", "value": 30, "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_image_description_non_empty" - }, - "named": true, - "value": "image_description" + "type": "SYMBOL", + "name": "_image_description_non_empty" } }, "_image_full_reference_link": { @@ -3644,7 +3634,7 @@ "members": [ { "type": "SYMBOL", - "name": "image_description" + "name": "_image_description" }, { "type": "SYMBOL", @@ -3661,7 +3651,7 @@ "members": [ { "type": "SYMBOL", - "name": "image_description" + "name": "_image_description" }, { "type": "STRING", @@ -3674,7 +3664,7 @@ ] } }, - "link_text": { + "_link_text": { "type": "PREC_DYNAMIC", "value": 10, "content": { @@ -3708,8 +3698,13 @@ "value": "[" }, { - "type": "SYMBOL", - "name": "_inline_no_link" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline_no_link" + }, + "named": true, + "value": "link_text" }, { "type": "STRING", @@ -3717,7 +3712,7 @@ } ] }, - "image_description": { + "_image_description": { "type": "PREC_DYNAMIC", "value": 30, "content": { @@ -3759,8 +3754,13 @@ "value": "[" }, { - "type": "SYMBOL", - "name": "_inline" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inline" + }, + "named": true, + "value": "image_description" }, { "type": "STRING", @@ -8008,7 +8008,7 @@ }, "_strong_emphasis_star": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -8050,7 +8050,7 @@ }, "_strong_emphasis_underscore": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -8924,7 +8924,7 @@ }, "_strong_emphasis_star_no_link": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -8966,7 +8966,7 @@ }, "_strong_emphasis_underscore_no_link": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -9368,7 +9368,7 @@ }, "_strong_emphasis_star_no_newline": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -9410,7 +9410,7 @@ }, "_strong_emphasis_underscore_no_newline": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -9731,7 +9731,7 @@ }, "_strong_emphasis_star_no_newline_no_link": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -9773,7 +9773,7 @@ }, "_strong_emphasis_underscore_no_newline_no_link": { "type": "PREC_DYNAMIC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ @@ -9839,7 +9839,7 @@ "_inline_element_no_link" ], [ - "image_description", + "_image_description", "_text_inline" ], [ @@ -9847,23 +9847,23 @@ "_text_inline" ], [ - "image_description", + "_image_description", "_image_description_non_empty", "_text_inline" ], [ - "image_description", + "_image_description", "_image_description_non_empty", "_text_inline_no_star" ], [ - "image_description", + "_image_description", "_image_description_non_empty", "_text_inline_no_underscore" ], [ "_image_shortcut_link", - "image_description" + "_image_description" ], [ "_image_inline_link", @@ -9876,7 +9876,7 @@ ], [ "shortcut_link", - "link_text" + "_link_text" ], [ "link_destination", @@ -9957,7 +9957,7 @@ "_text_inline" ], [ - "link_text", + "_link_text", "_text_inline" ], [ @@ -10023,7 +10023,7 @@ "_text_inline_no_star" ], [ - "link_text", + "_link_text", "_text_inline_no_star" ], [ @@ -10089,7 +10089,7 @@ "_text_inline_no_underscore" ], [ - "link_text", + "_link_text", "_text_inline_no_underscore" ], [ @@ -10160,7 +10160,7 @@ "_text_inline_no_link" ], [ - "link_text", + "_link_text", "_text_inline_no_link" ], [ @@ -10226,7 +10226,7 @@ "_text_inline_no_star_no_link" ], [ - "link_text", + "_link_text", "_text_inline_no_star_no_link" ], [ @@ -10292,7 +10292,7 @@ "_text_inline_no_underscore_no_link" ], [ - "link_text", + "_link_text", "_text_inline_no_underscore_no_link" ], [ diff --git a/src/node-types.json b/src/node-types.json index b8cb3d7..7323356 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -135,7 +135,7 @@ "fields": {}, "children": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "link_text", @@ -504,7 +504,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "atx_heading", @@ -678,7 +678,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "atx_heading", diff --git a/src/parser.c b/src/parser.c index 9f918a7..2439c13 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,10 +14,10 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2487 +#define STATE_COUNT 2489 #define LARGE_STATE_COUNT 459 #define SYMBOL_COUNT 257 -#define ALIAS_COUNT 2 +#define ALIAS_COUNT 4 #define TOKEN_COUNT 106 #define EXTERNAL_TOKEN_COUNT 46 #define FIELD_COUNT 0 @@ -181,9 +181,9 @@ enum { sym__image_shortcut_link = 154, sym__image_full_reference_link = 155, sym__image_collapsed_reference_link = 156, - sym_link_text = 157, + sym__link_text = 157, sym__link_text_non_empty = 158, - sym_image_description = 159, + sym__image_description = 159, sym__image_description_non_empty = 160, sym_link_label = 161, sym_link_destination = 162, @@ -283,6 +283,8 @@ enum { aux_sym__code_span_no_newline_repeat1 = 256, alias_sym_emphasis = 257, alias_sym_heading_content = 258, + alias_sym_image_description = 259, + alias_sym_link_text = 260, }; static const char * const ts_symbol_names[] = { @@ -443,9 +445,9 @@ static const char * const ts_symbol_names[] = { [sym__image_shortcut_link] = "_image_shortcut_link", [sym__image_full_reference_link] = "_image_full_reference_link", [sym__image_collapsed_reference_link] = "_image_collapsed_reference_link", - [sym_link_text] = "link_text", + [sym__link_text] = "_link_text", [sym__link_text_non_empty] = "_link_text_non_empty", - [sym_image_description] = "image_description", + [sym__image_description] = "_image_description", [sym__image_description_non_empty] = "_image_description_non_empty", [sym_link_label] = "link_label", [sym_link_destination] = "link_destination", @@ -545,6 +547,8 @@ static const char * const ts_symbol_names[] = { [aux_sym__code_span_no_newline_repeat1] = "_code_span_no_newline_repeat1", [alias_sym_emphasis] = "emphasis", [alias_sym_heading_content] = "heading_content", + [alias_sym_image_description] = "image_description", + [alias_sym_link_text] = "link_text", }; static const TSSymbol ts_symbol_map[] = { @@ -705,9 +709,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__image_shortcut_link] = sym__image_shortcut_link, [sym__image_full_reference_link] = sym__image_full_reference_link, [sym__image_collapsed_reference_link] = sym__image_collapsed_reference_link, - [sym_link_text] = sym_link_text, + [sym__link_text] = sym__link_text, [sym__link_text_non_empty] = sym__link_text_non_empty, - [sym_image_description] = sym_image_description, + [sym__image_description] = sym__image_description, [sym__image_description_non_empty] = sym__image_description_non_empty, [sym_link_label] = sym_link_label, [sym_link_destination] = sym_link_destination, @@ -807,6 +811,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__code_span_no_newline_repeat1] = aux_sym__code_span_no_newline_repeat1, [alias_sym_emphasis] = alias_sym_emphasis, [alias_sym_heading_content] = alias_sym_heading_content, + [alias_sym_image_description] = alias_sym_image_description, + [alias_sym_link_text] = alias_sym_link_text, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1438,16 +1444,16 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_link_text] = { - .visible = true, + [sym__link_text] = { + .visible = false, .named = true, }, [sym__link_text_non_empty] = { .visible = false, .named = true, }, - [sym_image_description] = { - .visible = true, + [sym__image_description] = { + .visible = false, .named = true, }, [sym__image_description_non_empty] = { @@ -1846,24 +1852,32 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_image_description] = { + .visible = true, + .named = true, + }, + [alias_sym_link_text] = { + .visible = true, + .named = true, + }, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { - [0] = sym_link_text, + [0] = alias_sym_emphasis, }, [2] = { - [0] = sym_image_description, + [1] = alias_sym_heading_content, }, [3] = { - [0] = alias_sym_emphasis, + [1] = alias_sym_link_text, }, [4] = { - [1] = alias_sym_heading_content, + [0] = alias_sym_heading_content, }, [5] = { - [0] = alias_sym_heading_content, + [2] = alias_sym_image_description, }, }; @@ -1871,18 +1885,18 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_paragraph, 2, sym_paragraph, alias_sym_heading_content, - sym__link_text_non_empty, 2, - sym__link_text_non_empty, - sym_link_text, - sym__image_description_non_empty, 2, - sym__image_description_non_empty, - sym_image_description, + aux_sym__inline, 2, + aux_sym__inline, + alias_sym_image_description, sym__emphasis_star, 2, sym__emphasis_star, alias_sym_emphasis, sym__emphasis_underscore, 2, sym__emphasis_underscore, alias_sym_emphasis, + aux_sym__inline_no_link, 2, + aux_sym__inline_no_link, + alias_sym_link_text, sym__emphasis_star_no_link, 2, sym__emphasis_star_no_link, alias_sym_emphasis, @@ -23495,42 +23509,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 2901, .external_lex_state = 2}, - [2] = {.lex_state = 2901, .external_lex_state = 3}, + [2] = {.lex_state = 2901, .external_lex_state = 2}, [3] = {.lex_state = 2901, .external_lex_state = 2}, [4] = {.lex_state = 2901, .external_lex_state = 2}, [5] = {.lex_state = 2901, .external_lex_state = 3}, [6] = {.lex_state = 2901, .external_lex_state = 2}, [7] = {.lex_state = 2901, .external_lex_state = 2}, [8] = {.lex_state = 2901, .external_lex_state = 2}, - [9] = {.lex_state = 2901, .external_lex_state = 2}, + [9] = {.lex_state = 2901, .external_lex_state = 3}, [10] = {.lex_state = 2901, .external_lex_state = 2}, [11] = {.lex_state = 2901, .external_lex_state = 2}, - [12] = {.lex_state = 2901, .external_lex_state = 2}, + [12] = {.lex_state = 2901, .external_lex_state = 3}, [13] = {.lex_state = 2901, .external_lex_state = 3}, [14] = {.lex_state = 2901, .external_lex_state = 3}, [15] = {.lex_state = 2901, .external_lex_state = 3}, - [16] = {.lex_state = 2901, .external_lex_state = 2}, - [17] = {.lex_state = 2901, .external_lex_state = 2}, + [16] = {.lex_state = 2901, .external_lex_state = 3}, + [17] = {.lex_state = 2901, .external_lex_state = 3}, [18] = {.lex_state = 2901, .external_lex_state = 3}, - [19] = {.lex_state = 2901, .external_lex_state = 3}, - [20] = {.lex_state = 2901, .external_lex_state = 3}, - [21] = {.lex_state = 2901, .external_lex_state = 2}, + [19] = {.lex_state = 2901, .external_lex_state = 2}, + [20] = {.lex_state = 2901, .external_lex_state = 2}, + [21] = {.lex_state = 2901, .external_lex_state = 3}, [22] = {.lex_state = 2901, .external_lex_state = 2}, [23] = {.lex_state = 2901, .external_lex_state = 3}, - [24] = {.lex_state = 2901, .external_lex_state = 2}, + [24] = {.lex_state = 2901, .external_lex_state = 3}, [25] = {.lex_state = 2901, .external_lex_state = 3}, [26] = {.lex_state = 2901, .external_lex_state = 3}, [27] = {.lex_state = 2901, .external_lex_state = 3}, [28] = {.lex_state = 2901, .external_lex_state = 3}, [29] = {.lex_state = 2901, .external_lex_state = 3}, [30] = {.lex_state = 2901, .external_lex_state = 3}, - [31] = {.lex_state = 2901, .external_lex_state = 3}, - [32] = {.lex_state = 2901, .external_lex_state = 3}, + [31] = {.lex_state = 2901, .external_lex_state = 2}, + [32] = {.lex_state = 2901, .external_lex_state = 2}, [33] = {.lex_state = 2901, .external_lex_state = 2}, - [34] = {.lex_state = 2901, .external_lex_state = 3}, + [34] = {.lex_state = 2901, .external_lex_state = 2}, [35] = {.lex_state = 2901, .external_lex_state = 3}, - [36] = {.lex_state = 2901, .external_lex_state = 2}, - [37] = {.lex_state = 2901, .external_lex_state = 3}, + [36] = {.lex_state = 2901, .external_lex_state = 3}, + [37] = {.lex_state = 2901, .external_lex_state = 2}, [38] = {.lex_state = 2901, .external_lex_state = 2}, [39] = {.lex_state = 2901, .external_lex_state = 2}, [40] = {.lex_state = 2901, .external_lex_state = 2}, @@ -23548,9 +23562,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [52] = {.lex_state = 2901, .external_lex_state = 5}, [53] = {.lex_state = 2901, .external_lex_state = 5}, [54] = {.lex_state = 2901, .external_lex_state = 5}, - [55] = {.lex_state = 2901, .external_lex_state = 5}, + [55] = {.lex_state = 2901, .external_lex_state = 4}, [56] = {.lex_state = 2901, .external_lex_state = 5}, - [57] = {.lex_state = 2901, .external_lex_state = 5}, + [57] = {.lex_state = 2901, .external_lex_state = 4}, [58] = {.lex_state = 2901, .external_lex_state = 5}, [59] = {.lex_state = 2901, .external_lex_state = 5}, [60] = {.lex_state = 2901, .external_lex_state = 5}, @@ -23559,32 +23573,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 2901, .external_lex_state = 5}, [64] = {.lex_state = 2901, .external_lex_state = 5}, [65] = {.lex_state = 2901, .external_lex_state = 5}, - [66] = {.lex_state = 2901, .external_lex_state = 4}, - [67] = {.lex_state = 2901, .external_lex_state = 4}, + [66] = {.lex_state = 2901, .external_lex_state = 5}, + [67] = {.lex_state = 2901, .external_lex_state = 5}, [68] = {.lex_state = 2901, .external_lex_state = 5}, [69] = {.lex_state = 2901, .external_lex_state = 5}, [70] = {.lex_state = 2901, .external_lex_state = 5}, [71] = {.lex_state = 2901, .external_lex_state = 5}, - [72] = {.lex_state = 2901, .external_lex_state = 6}, - [73] = {.lex_state = 2, .external_lex_state = 7}, - [74] = {.lex_state = 2901, .external_lex_state = 8}, + [72] = {.lex_state = 2, .external_lex_state = 6}, + [73] = {.lex_state = 2, .external_lex_state = 6}, + [74] = {.lex_state = 2, .external_lex_state = 7}, [75] = {.lex_state = 2, .external_lex_state = 7}, - [76] = {.lex_state = 2, .external_lex_state = 9}, - [77] = {.lex_state = 2, .external_lex_state = 9}, - [78] = {.lex_state = 2, .external_lex_state = 10}, - [79] = {.lex_state = 2901, .external_lex_state = 11}, - [80] = {.lex_state = 2901, .external_lex_state = 11}, - [81] = {.lex_state = 2901, .external_lex_state = 12}, - [82] = {.lex_state = 2901, .external_lex_state = 11}, - [83] = {.lex_state = 2901, .external_lex_state = 12}, - [84] = {.lex_state = 2901, .external_lex_state = 12}, + [76] = {.lex_state = 2901, .external_lex_state = 8}, + [77] = {.lex_state = 2901, .external_lex_state = 9}, + [78] = {.lex_state = 2901, .external_lex_state = 10}, + [79] = {.lex_state = 2, .external_lex_state = 6}, + [80] = {.lex_state = 2901, .external_lex_state = 10}, + [81] = {.lex_state = 2901, .external_lex_state = 10}, + [82] = {.lex_state = 2, .external_lex_state = 7}, + [83] = {.lex_state = 2901, .external_lex_state = 11}, + [84] = {.lex_state = 2, .external_lex_state = 12}, [85] = {.lex_state = 2901, .external_lex_state = 11}, - [86] = {.lex_state = 2, .external_lex_state = 7}, - [87] = {.lex_state = 2, .external_lex_state = 9}, - [88] = {.lex_state = 2901, .external_lex_state = 12}, - [89] = {.lex_state = 2, .external_lex_state = 7}, - [90] = {.lex_state = 2, .external_lex_state = 10}, - [91] = {.lex_state = 2, .external_lex_state = 9}, + [86] = {.lex_state = 2, .external_lex_state = 12}, + [87] = {.lex_state = 2, .external_lex_state = 7}, + [88] = {.lex_state = 2901, .external_lex_state = 11}, + [89] = {.lex_state = 2, .external_lex_state = 6}, + [90] = {.lex_state = 2901, .external_lex_state = 11}, + [91] = {.lex_state = 2901, .external_lex_state = 10}, [92] = {.lex_state = 2901, .external_lex_state = 13}, [93] = {.lex_state = 2901, .external_lex_state = 14}, [94] = {.lex_state = 2901, .external_lex_state = 15}, @@ -23593,908 +23607,908 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [97] = {.lex_state = 2901, .external_lex_state = 18}, [98] = {.lex_state = 2901, .external_lex_state = 18}, [99] = {.lex_state = 2901, .external_lex_state = 19}, - [100] = {.lex_state = 2901, .external_lex_state = 20}, - [101] = {.lex_state = 2901, .external_lex_state = 18}, + [100] = {.lex_state = 2901, .external_lex_state = 13}, + [101] = {.lex_state = 2901, .external_lex_state = 20}, [102] = {.lex_state = 2901, .external_lex_state = 21}, [103] = {.lex_state = 2901, .external_lex_state = 22}, - [104] = {.lex_state = 2901, .external_lex_state = 13}, - [105] = {.lex_state = 2901, .external_lex_state = 17}, - [106] = {.lex_state = 2901, .external_lex_state = 22}, - [107] = {.lex_state = 2901, .external_lex_state = 22}, - [108] = {.lex_state = 2901, .external_lex_state = 22}, - [109] = {.lex_state = 2901, .external_lex_state = 18}, - [110] = {.lex_state = 2901, .external_lex_state = 23}, - [111] = {.lex_state = 2901, .external_lex_state = 24}, - [112] = {.lex_state = 2901, .external_lex_state = 14}, - [113] = {.lex_state = 2901, .external_lex_state = 20}, + [104] = {.lex_state = 2901, .external_lex_state = 20}, + [105] = {.lex_state = 2901, .external_lex_state = 20}, + [106] = {.lex_state = 2901, .external_lex_state = 20}, + [107] = {.lex_state = 2901, .external_lex_state = 17}, + [108] = {.lex_state = 2901, .external_lex_state = 23}, + [109] = {.lex_state = 2901, .external_lex_state = 14}, + [110] = {.lex_state = 2901, .external_lex_state = 17}, + [111] = {.lex_state = 2901, .external_lex_state = 21}, + [112] = {.lex_state = 2901, .external_lex_state = 24}, + [113] = {.lex_state = 2901, .external_lex_state = 17}, [114] = {.lex_state = 2901, .external_lex_state = 2}, - [115] = {.lex_state = 2901, .external_lex_state = 2}, - [116] = {.lex_state = 5, .external_lex_state = 25}, - [117] = {.lex_state = 2901, .external_lex_state = 3}, - [118] = {.lex_state = 2901, .external_lex_state = 2}, - [119] = {.lex_state = 2901, .external_lex_state = 3}, - [120] = {.lex_state = 2901, .external_lex_state = 2}, - [121] = {.lex_state = 2901, .external_lex_state = 2}, - [122] = {.lex_state = 2901, .external_lex_state = 26}, - [123] = {.lex_state = 2901, .external_lex_state = 2}, + [115] = {.lex_state = 2901, .external_lex_state = 3}, + [116] = {.lex_state = 2901, .external_lex_state = 3}, + [117] = {.lex_state = 5, .external_lex_state = 25}, + [118] = {.lex_state = 2901, .external_lex_state = 3}, + [119] = {.lex_state = 2901, .external_lex_state = 26}, + [120] = {.lex_state = 2901, .external_lex_state = 3}, + [121] = {.lex_state = 2901, .external_lex_state = 3}, + [122] = {.lex_state = 2901, .external_lex_state = 2}, + [123] = {.lex_state = 2901, .external_lex_state = 3}, [124] = {.lex_state = 2901, .external_lex_state = 3}, - [125] = {.lex_state = 2901, .external_lex_state = 27}, - [126] = {.lex_state = 2901, .external_lex_state = 2}, - [127] = {.lex_state = 2901, .external_lex_state = 2}, + [125] = {.lex_state = 5, .external_lex_state = 25}, + [126] = {.lex_state = 2901, .external_lex_state = 26}, + [127] = {.lex_state = 2901, .external_lex_state = 3}, [128] = {.lex_state = 2901, .external_lex_state = 3}, [129] = {.lex_state = 2901, .external_lex_state = 3}, [130] = {.lex_state = 2901, .external_lex_state = 3}, [131] = {.lex_state = 2901, .external_lex_state = 3}, [132] = {.lex_state = 2901, .external_lex_state = 3}, - [133] = {.lex_state = 2901, .external_lex_state = 2}, - [134] = {.lex_state = 2901, .external_lex_state = 2}, + [133] = {.lex_state = 2901, .external_lex_state = 3}, + [134] = {.lex_state = 2901, .external_lex_state = 3}, [135] = {.lex_state = 2901, .external_lex_state = 3}, - [136] = {.lex_state = 2901, .external_lex_state = 2}, + [136] = {.lex_state = 2901, .external_lex_state = 3}, [137] = {.lex_state = 2901, .external_lex_state = 3}, [138] = {.lex_state = 2901, .external_lex_state = 3}, - [139] = {.lex_state = 2901, .external_lex_state = 4}, + [139] = {.lex_state = 2901, .external_lex_state = 3}, [140] = {.lex_state = 2901, .external_lex_state = 3}, [141] = {.lex_state = 2901, .external_lex_state = 3}, - [142] = {.lex_state = 2901, .external_lex_state = 3}, - [143] = {.lex_state = 2901, .external_lex_state = 3}, + [142] = {.lex_state = 2901, .external_lex_state = 2}, + [143] = {.lex_state = 2901, .external_lex_state = 26}, [144] = {.lex_state = 2901, .external_lex_state = 3}, - [145] = {.lex_state = 2901, .external_lex_state = 2}, + [145] = {.lex_state = 2901, .external_lex_state = 3}, [146] = {.lex_state = 2901, .external_lex_state = 3}, [147] = {.lex_state = 2901, .external_lex_state = 3}, [148] = {.lex_state = 2901, .external_lex_state = 3}, [149] = {.lex_state = 2901, .external_lex_state = 3}, - [150] = {.lex_state = 2901, .external_lex_state = 2}, + [150] = {.lex_state = 2901, .external_lex_state = 3}, [151] = {.lex_state = 2901, .external_lex_state = 3}, [152] = {.lex_state = 2901, .external_lex_state = 3}, [153] = {.lex_state = 2901, .external_lex_state = 3}, [154] = {.lex_state = 2901, .external_lex_state = 3}, [155] = {.lex_state = 2901, .external_lex_state = 3}, [156] = {.lex_state = 2901, .external_lex_state = 3}, - [157] = {.lex_state = 2901, .external_lex_state = 2}, - [158] = {.lex_state = 2901, .external_lex_state = 2}, - [159] = {.lex_state = 2901, .external_lex_state = 2}, - [160] = {.lex_state = 2901, .external_lex_state = 2}, + [157] = {.lex_state = 2901, .external_lex_state = 3}, + [158] = {.lex_state = 2901, .external_lex_state = 3}, + [159] = {.lex_state = 2901, .external_lex_state = 3}, + [160] = {.lex_state = 2901, .external_lex_state = 3}, [161] = {.lex_state = 2901, .external_lex_state = 3}, - [162] = {.lex_state = 2901, .external_lex_state = 2}, - [163] = {.lex_state = 2901, .external_lex_state = 2}, - [164] = {.lex_state = 2901, .external_lex_state = 2}, - [165] = {.lex_state = 2901, .external_lex_state = 3}, + [162] = {.lex_state = 2901, .external_lex_state = 3}, + [163] = {.lex_state = 2901, .external_lex_state = 3}, + [164] = {.lex_state = 2901, .external_lex_state = 3}, + [165] = {.lex_state = 5, .external_lex_state = 27}, [166] = {.lex_state = 2901, .external_lex_state = 3}, - [167] = {.lex_state = 5, .external_lex_state = 28}, - [168] = {.lex_state = 2901, .external_lex_state = 4}, - [169] = {.lex_state = 2901, .external_lex_state = 27}, - [170] = {.lex_state = 5, .external_lex_state = 25}, - [171] = {.lex_state = 5, .external_lex_state = 25}, - [172] = {.lex_state = 2901, .external_lex_state = 2}, - [173] = {.lex_state = 2901, .external_lex_state = 2}, - [174] = {.lex_state = 2901, .external_lex_state = 2}, - [175] = {.lex_state = 2901, .external_lex_state = 2}, + [167] = {.lex_state = 2901, .external_lex_state = 3}, + [168] = {.lex_state = 2901, .external_lex_state = 3}, + [169] = {.lex_state = 2901, .external_lex_state = 3}, + [170] = {.lex_state = 2901, .external_lex_state = 4}, + [171] = {.lex_state = 2901, .external_lex_state = 3}, + [172] = {.lex_state = 2901, .external_lex_state = 3}, + [173] = {.lex_state = 2901, .external_lex_state = 3}, + [174] = {.lex_state = 2901, .external_lex_state = 26}, + [175] = {.lex_state = 2901, .external_lex_state = 3}, [176] = {.lex_state = 2901, .external_lex_state = 3}, - [177] = {.lex_state = 2901, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 28}, - [179] = {.lex_state = 2901, .external_lex_state = 2}, - [180] = {.lex_state = 2901, .external_lex_state = 3}, + [177] = {.lex_state = 2901, .external_lex_state = 3}, + [178] = {.lex_state = 2901, .external_lex_state = 3}, + [179] = {.lex_state = 2901, .external_lex_state = 3}, + [180] = {.lex_state = 2901, .external_lex_state = 26}, [181] = {.lex_state = 2901, .external_lex_state = 3}, - [182] = {.lex_state = 2901, .external_lex_state = 3}, + [182] = {.lex_state = 2901, .external_lex_state = 2}, [183] = {.lex_state = 2901, .external_lex_state = 3}, - [184] = {.lex_state = 2901, .external_lex_state = 5}, - [185] = {.lex_state = 2901, .external_lex_state = 2}, - [186] = {.lex_state = 2901, .external_lex_state = 3}, + [184] = {.lex_state = 2901, .external_lex_state = 3}, + [185] = {.lex_state = 2901, .external_lex_state = 3}, + [186] = {.lex_state = 2901, .external_lex_state = 5}, [187] = {.lex_state = 2901, .external_lex_state = 3}, - [188] = {.lex_state = 2901, .external_lex_state = 2}, - [189] = {.lex_state = 2901, .external_lex_state = 2}, + [188] = {.lex_state = 2901, .external_lex_state = 3}, + [189] = {.lex_state = 2901, .external_lex_state = 3}, [190] = {.lex_state = 2901, .external_lex_state = 3}, [191] = {.lex_state = 2901, .external_lex_state = 3}, [192] = {.lex_state = 2901, .external_lex_state = 3}, - [193] = {.lex_state = 2901, .external_lex_state = 2}, + [193] = {.lex_state = 2901, .external_lex_state = 3}, [194] = {.lex_state = 2901, .external_lex_state = 3}, - [195] = {.lex_state = 2901, .external_lex_state = 2}, + [195] = {.lex_state = 2901, .external_lex_state = 3}, [196] = {.lex_state = 2901, .external_lex_state = 3}, - [197] = {.lex_state = 2901, .external_lex_state = 2}, - [198] = {.lex_state = 2901, .external_lex_state = 2}, + [197] = {.lex_state = 5, .external_lex_state = 25}, + [198] = {.lex_state = 2901, .external_lex_state = 3}, [199] = {.lex_state = 2901, .external_lex_state = 2}, - [200] = {.lex_state = 2901, .external_lex_state = 2}, - [201] = {.lex_state = 2901, .external_lex_state = 2}, - [202] = {.lex_state = 2901, .external_lex_state = 2}, - [203] = {.lex_state = 2901, .external_lex_state = 4}, - [204] = {.lex_state = 2901, .external_lex_state = 4}, + [200] = {.lex_state = 2901, .external_lex_state = 3}, + [201] = {.lex_state = 5, .external_lex_state = 28}, + [202] = {.lex_state = 5, .external_lex_state = 27}, + [203] = {.lex_state = 2901, .external_lex_state = 2}, + [204] = {.lex_state = 2901, .external_lex_state = 2}, [205] = {.lex_state = 2901, .external_lex_state = 4}, [206] = {.lex_state = 2901, .external_lex_state = 4}, [207] = {.lex_state = 2901, .external_lex_state = 4}, - [208] = {.lex_state = 2901, .external_lex_state = 2}, - [209] = {.lex_state = 2901, .external_lex_state = 2}, - [210] = {.lex_state = 2901, .external_lex_state = 3}, + [208] = {.lex_state = 2901, .external_lex_state = 4}, + [209] = {.lex_state = 2901, .external_lex_state = 4}, + [210] = {.lex_state = 2901, .external_lex_state = 2}, [211] = {.lex_state = 2901, .external_lex_state = 2}, - [212] = {.lex_state = 2901, .external_lex_state = 3}, + [212] = {.lex_state = 2901, .external_lex_state = 2}, [213] = {.lex_state = 2901, .external_lex_state = 2}, - [214] = {.lex_state = 2901, .external_lex_state = 3}, - [215] = {.lex_state = 2901, .external_lex_state = 3}, + [214] = {.lex_state = 2901, .external_lex_state = 2}, + [215] = {.lex_state = 2901, .external_lex_state = 2}, [216] = {.lex_state = 2901, .external_lex_state = 3}, - [217] = {.lex_state = 2901, .external_lex_state = 2}, - [218] = {.lex_state = 2901, .external_lex_state = 2}, - [219] = {.lex_state = 2901, .external_lex_state = 3}, - [220] = {.lex_state = 2901, .external_lex_state = 2}, + [217] = {.lex_state = 2901, .external_lex_state = 5}, + [218] = {.lex_state = 2901, .external_lex_state = 5}, + [219] = {.lex_state = 2901, .external_lex_state = 5}, + [220] = {.lex_state = 2901, .external_lex_state = 5}, [221] = {.lex_state = 2901, .external_lex_state = 5}, - [222] = {.lex_state = 2901, .external_lex_state = 5}, - [223] = {.lex_state = 2901, .external_lex_state = 2}, - [224] = {.lex_state = 2901, .external_lex_state = 3}, - [225] = {.lex_state = 2901, .external_lex_state = 2}, - [226] = {.lex_state = 2901, .external_lex_state = 26}, - [227] = {.lex_state = 2901, .external_lex_state = 5}, - [228] = {.lex_state = 2901, .external_lex_state = 5}, - [229] = {.lex_state = 2901, .external_lex_state = 2}, - [230] = {.lex_state = 2901, .external_lex_state = 2}, + [222] = {.lex_state = 2901, .external_lex_state = 2}, + [223] = {.lex_state = 2901, .external_lex_state = 4}, + [224] = {.lex_state = 2901, .external_lex_state = 2}, + [225] = {.lex_state = 2901, .external_lex_state = 3}, + [226] = {.lex_state = 2901, .external_lex_state = 5}, + [227] = {.lex_state = 2901, .external_lex_state = 3}, + [228] = {.lex_state = 2901, .external_lex_state = 3}, + [229] = {.lex_state = 2901, .external_lex_state = 5}, + [230] = {.lex_state = 2901, .external_lex_state = 5}, [231] = {.lex_state = 2901, .external_lex_state = 5}, - [232] = {.lex_state = 2901, .external_lex_state = 2}, - [233] = {.lex_state = 2901, .external_lex_state = 3}, - [234] = {.lex_state = 2901, .external_lex_state = 3}, - [235] = {.lex_state = 2901, .external_lex_state = 3}, - [236] = {.lex_state = 2901, .external_lex_state = 3}, - [237] = {.lex_state = 2901, .external_lex_state = 3}, - [238] = {.lex_state = 2901, .external_lex_state = 27}, - [239] = {.lex_state = 2901, .external_lex_state = 5}, - [240] = {.lex_state = 2901, .external_lex_state = 3}, - [241] = {.lex_state = 2901, .external_lex_state = 3}, - [242] = {.lex_state = 2901, .external_lex_state = 3}, - [243] = {.lex_state = 5, .external_lex_state = 28}, - [244] = {.lex_state = 2901, .external_lex_state = 3}, - [245] = {.lex_state = 2901, .external_lex_state = 3}, - [246] = {.lex_state = 2901, .external_lex_state = 3}, - [247] = {.lex_state = 5, .external_lex_state = 25}, - [248] = {.lex_state = 2901, .external_lex_state = 3}, - [249] = {.lex_state = 2901, .external_lex_state = 2}, + [232] = {.lex_state = 2901, .external_lex_state = 5}, + [233] = {.lex_state = 2901, .external_lex_state = 5}, + [234] = {.lex_state = 2901, .external_lex_state = 5}, + [235] = {.lex_state = 5, .external_lex_state = 27}, + [236] = {.lex_state = 2901, .external_lex_state = 2}, + [237] = {.lex_state = 2901, .external_lex_state = 2}, + [238] = {.lex_state = 2901, .external_lex_state = 2}, + [239] = {.lex_state = 2901, .external_lex_state = 2}, + [240] = {.lex_state = 2901, .external_lex_state = 2}, + [241] = {.lex_state = 2901, .external_lex_state = 2}, + [242] = {.lex_state = 2901, .external_lex_state = 29}, + [243] = {.lex_state = 2901, .external_lex_state = 2}, + [244] = {.lex_state = 2901, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 27}, + [246] = {.lex_state = 2901, .external_lex_state = 2}, + [247] = {.lex_state = 2901, .external_lex_state = 2}, + [248] = {.lex_state = 2901, .external_lex_state = 2}, + [249] = {.lex_state = 5, .external_lex_state = 25}, [250] = {.lex_state = 2901, .external_lex_state = 2}, - [251] = {.lex_state = 5, .external_lex_state = 29}, - [252] = {.lex_state = 5, .external_lex_state = 28}, - [253] = {.lex_state = 2901, .external_lex_state = 26}, - [254] = {.lex_state = 5, .external_lex_state = 25}, - [255] = {.lex_state = 5, .external_lex_state = 28}, + [251] = {.lex_state = 2901, .external_lex_state = 2}, + [252] = {.lex_state = 2901, .external_lex_state = 29}, + [253] = {.lex_state = 2901, .external_lex_state = 2}, + [254] = {.lex_state = 2901, .external_lex_state = 2}, + [255] = {.lex_state = 2901, .external_lex_state = 2}, [256] = {.lex_state = 2901, .external_lex_state = 2}, [257] = {.lex_state = 2901, .external_lex_state = 2}, - [258] = {.lex_state = 2901, .external_lex_state = 3}, - [259] = {.lex_state = 2901, .external_lex_state = 2}, + [258] = {.lex_state = 2901, .external_lex_state = 2}, + [259] = {.lex_state = 2901, .external_lex_state = 4}, [260] = {.lex_state = 2901, .external_lex_state = 2}, - [261] = {.lex_state = 2901, .external_lex_state = 2}, - [262] = {.lex_state = 2901, .external_lex_state = 2}, - [263] = {.lex_state = 2901, .external_lex_state = 3}, - [264] = {.lex_state = 2901, .external_lex_state = 3}, - [265] = {.lex_state = 5, .external_lex_state = 29}, - [266] = {.lex_state = 2901, .external_lex_state = 3}, - [267] = {.lex_state = 2901, .external_lex_state = 4}, - [268] = {.lex_state = 2901, .external_lex_state = 4}, + [261] = {.lex_state = 2901, .external_lex_state = 4}, + [262] = {.lex_state = 2901, .external_lex_state = 4}, + [263] = {.lex_state = 2901, .external_lex_state = 2}, + [264] = {.lex_state = 2901, .external_lex_state = 4}, + [265] = {.lex_state = 2901, .external_lex_state = 29}, + [266] = {.lex_state = 2901, .external_lex_state = 4}, + [267] = {.lex_state = 5, .external_lex_state = 28}, + [268] = {.lex_state = 2901, .external_lex_state = 2}, [269] = {.lex_state = 2901, .external_lex_state = 2}, [270] = {.lex_state = 2901, .external_lex_state = 2}, [271] = {.lex_state = 2901, .external_lex_state = 2}, - [272] = {.lex_state = 2901, .external_lex_state = 4}, - [273] = {.lex_state = 2901, .external_lex_state = 4}, - [274] = {.lex_state = 2901, .external_lex_state = 3}, - [275] = {.lex_state = 2901, .external_lex_state = 4}, + [272] = {.lex_state = 2901, .external_lex_state = 2}, + [273] = {.lex_state = 2901, .external_lex_state = 29}, + [274] = {.lex_state = 2901, .external_lex_state = 2}, + [275] = {.lex_state = 2901, .external_lex_state = 2}, [276] = {.lex_state = 2901, .external_lex_state = 2}, [277] = {.lex_state = 2901, .external_lex_state = 2}, - [278] = {.lex_state = 2901, .external_lex_state = 3}, - [279] = {.lex_state = 2901, .external_lex_state = 3}, - [280] = {.lex_state = 2901, .external_lex_state = 5}, - [281] = {.lex_state = 2901, .external_lex_state = 5}, - [282] = {.lex_state = 2901, .external_lex_state = 27}, - [283] = {.lex_state = 2901, .external_lex_state = 26}, - [284] = {.lex_state = 2901, .external_lex_state = 5}, + [278] = {.lex_state = 2901, .external_lex_state = 2}, + [279] = {.lex_state = 2901, .external_lex_state = 2}, + [280] = {.lex_state = 2901, .external_lex_state = 3}, + [281] = {.lex_state = 2901, .external_lex_state = 2}, + [282] = {.lex_state = 2901, .external_lex_state = 2}, + [283] = {.lex_state = 2901, .external_lex_state = 2}, + [284] = {.lex_state = 2901, .external_lex_state = 3}, [285] = {.lex_state = 2901, .external_lex_state = 3}, [286] = {.lex_state = 2901, .external_lex_state = 2}, - [287] = {.lex_state = 2901, .external_lex_state = 5}, - [288] = {.lex_state = 2901, .external_lex_state = 5}, + [287] = {.lex_state = 2901, .external_lex_state = 2}, + [288] = {.lex_state = 2901, .external_lex_state = 2}, [289] = {.lex_state = 2901, .external_lex_state = 2}, [290] = {.lex_state = 2901, .external_lex_state = 2}, [291] = {.lex_state = 2901, .external_lex_state = 2}, [292] = {.lex_state = 2901, .external_lex_state = 2}, - [293] = {.lex_state = 2901, .external_lex_state = 5}, + [293] = {.lex_state = 2901, .external_lex_state = 4}, [294] = {.lex_state = 2901, .external_lex_state = 2}, - [295] = {.lex_state = 2901, .external_lex_state = 2}, - [296] = {.lex_state = 2901, .external_lex_state = 3}, - [297] = {.lex_state = 2901, .external_lex_state = 2}, - [298] = {.lex_state = 2901, .external_lex_state = 3}, - [299] = {.lex_state = 2901, .external_lex_state = 3}, + [295] = {.lex_state = 2901, .external_lex_state = 29}, + [296] = {.lex_state = 2901, .external_lex_state = 2}, + [297] = {.lex_state = 5, .external_lex_state = 25}, + [298] = {.lex_state = 2901, .external_lex_state = 2}, + [299] = {.lex_state = 2901, .external_lex_state = 2}, [300] = {.lex_state = 2901, .external_lex_state = 2}, [301] = {.lex_state = 2901, .external_lex_state = 2}, - [302] = {.lex_state = 2901, .external_lex_state = 4}, - [303] = {.lex_state = 2901, .external_lex_state = 3}, + [302] = {.lex_state = 2901, .external_lex_state = 2}, + [303] = {.lex_state = 2901, .external_lex_state = 2}, [304] = {.lex_state = 2901, .external_lex_state = 2}, - [305] = {.lex_state = 2901, .external_lex_state = 3}, - [306] = {.lex_state = 2901, .external_lex_state = 3}, - [307] = {.lex_state = 2901, .external_lex_state = 3}, - [308] = {.lex_state = 2901, .external_lex_state = 3}, + [305] = {.lex_state = 2901, .external_lex_state = 2}, + [306] = {.lex_state = 2901, .external_lex_state = 2}, + [307] = {.lex_state = 2901, .external_lex_state = 2}, + [308] = {.lex_state = 2901, .external_lex_state = 2}, [309] = {.lex_state = 2901, .external_lex_state = 2}, - [310] = {.lex_state = 2901, .external_lex_state = 3}, - [311] = {.lex_state = 2901, .external_lex_state = 26}, + [310] = {.lex_state = 2901, .external_lex_state = 2}, + [311] = {.lex_state = 2901, .external_lex_state = 2}, [312] = {.lex_state = 2901, .external_lex_state = 2}, - [313] = {.lex_state = 2901, .external_lex_state = 27}, - [314] = {.lex_state = 2901, .external_lex_state = 3}, + [313] = {.lex_state = 2901, .external_lex_state = 2}, + [314] = {.lex_state = 2901, .external_lex_state = 2}, [315] = {.lex_state = 2901, .external_lex_state = 2}, - [316] = {.lex_state = 2901, .external_lex_state = 2}, + [316] = {.lex_state = 5, .external_lex_state = 27}, [317] = {.lex_state = 2901, .external_lex_state = 2}, - [318] = {.lex_state = 5, .external_lex_state = 29}, - [319] = {.lex_state = 2901, .external_lex_state = 2}, - [320] = {.lex_state = 5, .external_lex_state = 29}, - [321] = {.lex_state = 5, .external_lex_state = 29}, - [322] = {.lex_state = 5, .external_lex_state = 29}, - [323] = {.lex_state = 5, .external_lex_state = 29}, - [324] = {.lex_state = 5, .external_lex_state = 29}, - [325] = {.lex_state = 5, .external_lex_state = 29}, - [326] = {.lex_state = 5, .external_lex_state = 29}, - [327] = {.lex_state = 5, .external_lex_state = 29}, - [328] = {.lex_state = 5, .external_lex_state = 29}, - [329] = {.lex_state = 5, .external_lex_state = 29}, - [330] = {.lex_state = 6, .external_lex_state = 30}, - [331] = {.lex_state = 5, .external_lex_state = 29}, - [332] = {.lex_state = 5, .external_lex_state = 29}, - [333] = {.lex_state = 2901, .external_lex_state = 23}, - [334] = {.lex_state = 5, .external_lex_state = 29}, - [335] = {.lex_state = 5, .external_lex_state = 29}, - [336] = {.lex_state = 5, .external_lex_state = 29}, - [337] = {.lex_state = 5, .external_lex_state = 29}, - [338] = {.lex_state = 5, .external_lex_state = 29}, - [339] = {.lex_state = 2901, .external_lex_state = 24}, - [340] = {.lex_state = 6, .external_lex_state = 30}, - [341] = {.lex_state = 5, .external_lex_state = 29}, - [342] = {.lex_state = 2901, .external_lex_state = 2}, - [343] = {.lex_state = 5, .external_lex_state = 29}, - [344] = {.lex_state = 5, .external_lex_state = 29}, - [345] = {.lex_state = 5, .external_lex_state = 29}, - [346] = {.lex_state = 2901, .external_lex_state = 5}, - [347] = {.lex_state = 5, .external_lex_state = 29}, - [348] = {.lex_state = 2901, .external_lex_state = 2}, - [349] = {.lex_state = 5, .external_lex_state = 29}, - [350] = {.lex_state = 2901, .external_lex_state = 2}, - [351] = {.lex_state = 2901, .external_lex_state = 2}, - [352] = {.lex_state = 5, .external_lex_state = 29}, - [353] = {.lex_state = 5, .external_lex_state = 29}, - [354] = {.lex_state = 5, .external_lex_state = 29}, - [355] = {.lex_state = 5, .external_lex_state = 29}, - [356] = {.lex_state = 2901, .external_lex_state = 2}, - [357] = {.lex_state = 5, .external_lex_state = 29}, - [358] = {.lex_state = 5, .external_lex_state = 29}, - [359] = {.lex_state = 5, .external_lex_state = 29}, - [360] = {.lex_state = 5, .external_lex_state = 29}, - [361] = {.lex_state = 5, .external_lex_state = 29}, - [362] = {.lex_state = 5, .external_lex_state = 29}, - [363] = {.lex_state = 5, .external_lex_state = 29}, - [364] = {.lex_state = 5, .external_lex_state = 29}, - [365] = {.lex_state = 5, .external_lex_state = 29}, - [366] = {.lex_state = 5, .external_lex_state = 29}, - [367] = {.lex_state = 5, .external_lex_state = 29}, - [368] = {.lex_state = 5, .external_lex_state = 29}, - [369] = {.lex_state = 5, .external_lex_state = 29}, - [370] = {.lex_state = 9, .external_lex_state = 31}, - [371] = {.lex_state = 2901, .external_lex_state = 5}, - [372] = {.lex_state = 6, .external_lex_state = 30}, - [373] = {.lex_state = 2901, .external_lex_state = 5}, - [374] = {.lex_state = 5, .external_lex_state = 28}, - [375] = {.lex_state = 2901, .external_lex_state = 5}, - [376] = {.lex_state = 2901, .external_lex_state = 4}, - [377] = {.lex_state = 2901, .external_lex_state = 5}, + [318] = {.lex_state = 6, .external_lex_state = 30}, + [319] = {.lex_state = 5, .external_lex_state = 28}, + [320] = {.lex_state = 5, .external_lex_state = 28}, + [321] = {.lex_state = 5, .external_lex_state = 28}, + [322] = {.lex_state = 5, .external_lex_state = 28}, + [323] = {.lex_state = 5, .external_lex_state = 28}, + [324] = {.lex_state = 5, .external_lex_state = 28}, + [325] = {.lex_state = 5, .external_lex_state = 28}, + [326] = {.lex_state = 5, .external_lex_state = 28}, + [327] = {.lex_state = 5, .external_lex_state = 28}, + [328] = {.lex_state = 5, .external_lex_state = 28}, + [329] = {.lex_state = 5, .external_lex_state = 28}, + [330] = {.lex_state = 5, .external_lex_state = 28}, + [331] = {.lex_state = 5, .external_lex_state = 28}, + [332] = {.lex_state = 2901, .external_lex_state = 23}, + [333] = {.lex_state = 2901, .external_lex_state = 2}, + [334] = {.lex_state = 5, .external_lex_state = 28}, + [335] = {.lex_state = 5, .external_lex_state = 28}, + [336] = {.lex_state = 2901, .external_lex_state = 19}, + [337] = {.lex_state = 5, .external_lex_state = 28}, + [338] = {.lex_state = 5, .external_lex_state = 28}, + [339] = {.lex_state = 6, .external_lex_state = 30}, + [340] = {.lex_state = 5, .external_lex_state = 28}, + [341] = {.lex_state = 5, .external_lex_state = 28}, + [342] = {.lex_state = 5, .external_lex_state = 28}, + [343] = {.lex_state = 2901, .external_lex_state = 2}, + [344] = {.lex_state = 5, .external_lex_state = 28}, + [345] = {.lex_state = 5, .external_lex_state = 28}, + [346] = {.lex_state = 5, .external_lex_state = 28}, + [347] = {.lex_state = 5, .external_lex_state = 28}, + [348] = {.lex_state = 5, .external_lex_state = 28}, + [349] = {.lex_state = 5, .external_lex_state = 28}, + [350] = {.lex_state = 5, .external_lex_state = 28}, + [351] = {.lex_state = 5, .external_lex_state = 28}, + [352] = {.lex_state = 5, .external_lex_state = 28}, + [353] = {.lex_state = 2901, .external_lex_state = 5}, + [354] = {.lex_state = 5, .external_lex_state = 28}, + [355] = {.lex_state = 5, .external_lex_state = 28}, + [356] = {.lex_state = 5, .external_lex_state = 28}, + [357] = {.lex_state = 5, .external_lex_state = 28}, + [358] = {.lex_state = 5, .external_lex_state = 28}, + [359] = {.lex_state = 5, .external_lex_state = 28}, + [360] = {.lex_state = 5, .external_lex_state = 28}, + [361] = {.lex_state = 5, .external_lex_state = 28}, + [362] = {.lex_state = 2901, .external_lex_state = 2}, + [363] = {.lex_state = 5, .external_lex_state = 28}, + [364] = {.lex_state = 5, .external_lex_state = 28}, + [365] = {.lex_state = 5, .external_lex_state = 28}, + [366] = {.lex_state = 5, .external_lex_state = 28}, + [367] = {.lex_state = 2901, .external_lex_state = 2}, + [368] = {.lex_state = 2901, .external_lex_state = 2}, + [369] = {.lex_state = 2901, .external_lex_state = 2}, + [370] = {.lex_state = 2901, .external_lex_state = 5}, + [371] = {.lex_state = 2901, .external_lex_state = 4}, + [372] = {.lex_state = 5, .external_lex_state = 27}, + [373] = {.lex_state = 5, .external_lex_state = 27}, + [374] = {.lex_state = 5, .external_lex_state = 25}, + [375] = {.lex_state = 2901, .external_lex_state = 4}, + [376] = {.lex_state = 5, .external_lex_state = 25}, + [377] = {.lex_state = 9, .external_lex_state = 31}, [378] = {.lex_state = 2901, .external_lex_state = 5}, - [379] = {.lex_state = 2901, .external_lex_state = 4}, - [380] = {.lex_state = 2901, .external_lex_state = 5}, - [381] = {.lex_state = 2901, .external_lex_state = 4}, + [379] = {.lex_state = 2901, .external_lex_state = 5}, + [380] = {.lex_state = 5, .external_lex_state = 27}, + [381] = {.lex_state = 5, .external_lex_state = 27}, [382] = {.lex_state = 2901, .external_lex_state = 5}, - [383] = {.lex_state = 2901, .external_lex_state = 5}, + [383] = {.lex_state = 5, .external_lex_state = 25}, [384] = {.lex_state = 2901, .external_lex_state = 4}, - [385] = {.lex_state = 5, .external_lex_state = 28}, - [386] = {.lex_state = 2901, .external_lex_state = 5}, - [387] = {.lex_state = 5, .external_lex_state = 25}, + [385] = {.lex_state = 2901, .external_lex_state = 4}, + [386] = {.lex_state = 2901, .external_lex_state = 4}, + [387] = {.lex_state = 6, .external_lex_state = 30}, [388] = {.lex_state = 2901, .external_lex_state = 4}, - [389] = {.lex_state = 2901, .external_lex_state = 4}, - [390] = {.lex_state = 2901, .external_lex_state = 4}, - [391] = {.lex_state = 5, .external_lex_state = 25}, - [392] = {.lex_state = 9, .external_lex_state = 31}, + [389] = {.lex_state = 2901, .external_lex_state = 5}, + [390] = {.lex_state = 5, .external_lex_state = 28}, + [391] = {.lex_state = 2901, .external_lex_state = 4}, + [392] = {.lex_state = 2901, .external_lex_state = 5}, [393] = {.lex_state = 2901, .external_lex_state = 5}, - [394] = {.lex_state = 2901, .external_lex_state = 4}, - [395] = {.lex_state = 2901, .external_lex_state = 5}, + [394] = {.lex_state = 5, .external_lex_state = 25}, + [395] = {.lex_state = 2901, .external_lex_state = 4}, [396] = {.lex_state = 2901, .external_lex_state = 5}, - [397] = {.lex_state = 5, .external_lex_state = 29}, + [397] = {.lex_state = 5, .external_lex_state = 28}, [398] = {.lex_state = 2901, .external_lex_state = 4}, - [399] = {.lex_state = 2901, .external_lex_state = 4}, + [399] = {.lex_state = 2901, .external_lex_state = 5}, [400] = {.lex_state = 2901, .external_lex_state = 4}, [401] = {.lex_state = 2901, .external_lex_state = 5}, - [402] = {.lex_state = 2901, .external_lex_state = 4}, + [402] = {.lex_state = 2901, .external_lex_state = 5}, [403] = {.lex_state = 2901, .external_lex_state = 5}, - [404] = {.lex_state = 2901, .external_lex_state = 5}, - [405] = {.lex_state = 2901, .external_lex_state = 4}, - [406] = {.lex_state = 2901, .external_lex_state = 5}, + [404] = {.lex_state = 2901, .external_lex_state = 4}, + [405] = {.lex_state = 6, .external_lex_state = 30}, + [406] = {.lex_state = 2901, .external_lex_state = 4}, [407] = {.lex_state = 2901, .external_lex_state = 4}, - [408] = {.lex_state = 2901, .external_lex_state = 5}, - [409] = {.lex_state = 2901, .external_lex_state = 4}, - [410] = {.lex_state = 2901, .external_lex_state = 5}, - [411] = {.lex_state = 2901, .external_lex_state = 4}, - [412] = {.lex_state = 6, .external_lex_state = 30}, + [408] = {.lex_state = 2901, .external_lex_state = 4}, + [409] = {.lex_state = 9, .external_lex_state = 31}, + [410] = {.lex_state = 2901, .external_lex_state = 4}, + [411] = {.lex_state = 5, .external_lex_state = 27}, + [412] = {.lex_state = 2901, .external_lex_state = 4}, [413] = {.lex_state = 2901, .external_lex_state = 5}, - [414] = {.lex_state = 2901, .external_lex_state = 4}, + [414] = {.lex_state = 2901, .external_lex_state = 5}, [415] = {.lex_state = 2901, .external_lex_state = 4}, [416] = {.lex_state = 2901, .external_lex_state = 4}, - [417] = {.lex_state = 2901, .external_lex_state = 5}, - [418] = {.lex_state = 5, .external_lex_state = 29}, - [419] = {.lex_state = 5, .external_lex_state = 28}, - [420] = {.lex_state = 2901, .external_lex_state = 4}, - [421] = {.lex_state = 5, .external_lex_state = 25}, + [417] = {.lex_state = 2901, .external_lex_state = 4}, + [418] = {.lex_state = 5, .external_lex_state = 25}, + [419] = {.lex_state = 2901, .external_lex_state = 4}, + [420] = {.lex_state = 2901, .external_lex_state = 5}, + [421] = {.lex_state = 2901, .external_lex_state = 5}, [422] = {.lex_state = 2901, .external_lex_state = 5}, - [423] = {.lex_state = 5, .external_lex_state = 29}, - [424] = {.lex_state = 2901, .external_lex_state = 5}, - [425] = {.lex_state = 5, .external_lex_state = 25}, - [426] = {.lex_state = 5, .external_lex_state = 25}, + [423] = {.lex_state = 2901, .external_lex_state = 5}, + [424] = {.lex_state = 2901, .external_lex_state = 4}, + [425] = {.lex_state = 2901, .external_lex_state = 5}, + [426] = {.lex_state = 5, .external_lex_state = 28}, [427] = {.lex_state = 2901, .external_lex_state = 4}, - [428] = {.lex_state = 2901, .external_lex_state = 4}, - [429] = {.lex_state = 5, .external_lex_state = 28}, - [430] = {.lex_state = 5, .external_lex_state = 28}, - [431] = {.lex_state = 9, .external_lex_state = 30}, - [432] = {.lex_state = 5, .external_lex_state = 29}, - [433] = {.lex_state = 9, .external_lex_state = 30}, - [434] = {.lex_state = 5, .external_lex_state = 29}, + [428] = {.lex_state = 2901, .external_lex_state = 5}, + [429] = {.lex_state = 2901, .external_lex_state = 5}, + [430] = {.lex_state = 2901, .external_lex_state = 5}, + [431] = {.lex_state = 5, .external_lex_state = 28}, + [432] = {.lex_state = 9, .external_lex_state = 30}, + [433] = {.lex_state = 5, .external_lex_state = 28}, + [434] = {.lex_state = 9, .external_lex_state = 30}, [435] = {.lex_state = 5, .external_lex_state = 32}, [436] = {.lex_state = 5, .external_lex_state = 33}, [437] = {.lex_state = 5, .external_lex_state = 34}, - [438] = {.lex_state = 5, .external_lex_state = 34}, - [439] = {.lex_state = 5, .external_lex_state = 33}, - [440] = {.lex_state = 5, .external_lex_state = 32}, - [441] = {.lex_state = 5, .external_lex_state = 25}, - [442] = {.lex_state = 5, .external_lex_state = 29}, - [443] = {.lex_state = 5, .external_lex_state = 29}, - [444] = {.lex_state = 5, .external_lex_state = 25}, - [445] = {.lex_state = 5, .external_lex_state = 29}, - [446] = {.lex_state = 5, .external_lex_state = 29}, - [447] = {.lex_state = 5, .external_lex_state = 28}, - [448] = {.lex_state = 5, .external_lex_state = 29}, - [449] = {.lex_state = 5, .external_lex_state = 28}, + [438] = {.lex_state = 5, .external_lex_state = 33}, + [439] = {.lex_state = 5, .external_lex_state = 32}, + [440] = {.lex_state = 5, .external_lex_state = 34}, + [441] = {.lex_state = 5, .external_lex_state = 28}, + [442] = {.lex_state = 5, .external_lex_state = 28}, + [443] = {.lex_state = 5, .external_lex_state = 25}, + [444] = {.lex_state = 5, .external_lex_state = 28}, + [445] = {.lex_state = 5, .external_lex_state = 25}, + [446] = {.lex_state = 5, .external_lex_state = 27}, + [447] = {.lex_state = 5, .external_lex_state = 25}, + [448] = {.lex_state = 5, .external_lex_state = 27}, + [449] = {.lex_state = 5, .external_lex_state = 25}, [450] = {.lex_state = 5, .external_lex_state = 28}, - [451] = {.lex_state = 5, .external_lex_state = 25}, - [452] = {.lex_state = 5, .external_lex_state = 25}, - [453] = {.lex_state = 5, .external_lex_state = 28}, - [454] = {.lex_state = 5, .external_lex_state = 25}, + [451] = {.lex_state = 5, .external_lex_state = 27}, + [452] = {.lex_state = 5, .external_lex_state = 27}, + [453] = {.lex_state = 5, .external_lex_state = 27}, + [454] = {.lex_state = 5, .external_lex_state = 28}, [455] = {.lex_state = 5, .external_lex_state = 28}, - [456] = {.lex_state = 5, .external_lex_state = 29}, - [457] = {.lex_state = 5, .external_lex_state = 29}, - [458] = {.lex_state = 5, .external_lex_state = 29}, - [459] = {.lex_state = 2901, .external_lex_state = 29}, - [460] = {.lex_state = 2901, .external_lex_state = 29}, + [456] = {.lex_state = 5, .external_lex_state = 25}, + [457] = {.lex_state = 5, .external_lex_state = 28}, + [458] = {.lex_state = 5, .external_lex_state = 28}, + [459] = {.lex_state = 2901, .external_lex_state = 28}, + [460] = {.lex_state = 2901, .external_lex_state = 28}, [461] = {.lex_state = 2901, .external_lex_state = 35}, [462] = {.lex_state = 5, .external_lex_state = 36}, - [463] = {.lex_state = 2901, .external_lex_state = 35}, - [464] = {.lex_state = 5, .external_lex_state = 37}, + [463] = {.lex_state = 5, .external_lex_state = 37}, + [464] = {.lex_state = 2901, .external_lex_state = 35}, [465] = {.lex_state = 5, .external_lex_state = 36}, [466] = {.lex_state = 5, .external_lex_state = 37}, - [467] = {.lex_state = 2901, .external_lex_state = 29}, + [467] = {.lex_state = 5, .external_lex_state = 38}, [468] = {.lex_state = 5, .external_lex_state = 38}, - [469] = {.lex_state = 5, .external_lex_state = 38}, - [470] = {.lex_state = 1, .external_lex_state = 28}, - [471] = {.lex_state = 3, .external_lex_state = 28}, - [472] = {.lex_state = 3, .external_lex_state = 39}, - [473] = {.lex_state = 1, .external_lex_state = 39}, - [474] = {.lex_state = 4, .external_lex_state = 25}, - [475] = {.lex_state = 3, .external_lex_state = 39}, + [469] = {.lex_state = 2901, .external_lex_state = 28}, + [470] = {.lex_state = 4, .external_lex_state = 27}, + [471] = {.lex_state = 4, .external_lex_state = 39}, + [472] = {.lex_state = 4, .external_lex_state = 27}, + [473] = {.lex_state = 4, .external_lex_state = 39}, + [474] = {.lex_state = 3, .external_lex_state = 27}, + [475] = {.lex_state = 1, .external_lex_state = 25}, [476] = {.lex_state = 3, .external_lex_state = 25}, - [477] = {.lex_state = 4, .external_lex_state = 39}, - [478] = {.lex_state = 4, .external_lex_state = 28}, + [477] = {.lex_state = 3, .external_lex_state = 39}, + [478] = {.lex_state = 4, .external_lex_state = 25}, [479] = {.lex_state = 1, .external_lex_state = 25}, [480] = {.lex_state = 3, .external_lex_state = 25}, - [481] = {.lex_state = 1, .external_lex_state = 28}, - [482] = {.lex_state = 4, .external_lex_state = 25}, - [483] = {.lex_state = 4, .external_lex_state = 28}, - [484] = {.lex_state = 3, .external_lex_state = 25}, - [485] = {.lex_state = 1, .external_lex_state = 25}, - [486] = {.lex_state = 1, .external_lex_state = 25}, - [487] = {.lex_state = 4, .external_lex_state = 25}, - [488] = {.lex_state = 1, .external_lex_state = 39}, - [489] = {.lex_state = 3, .external_lex_state = 28}, - [490] = {.lex_state = 4, .external_lex_state = 28}, - [491] = {.lex_state = 4, .external_lex_state = 39}, - [492] = {.lex_state = 3, .external_lex_state = 28}, - [493] = {.lex_state = 1, .external_lex_state = 28}, - [494] = {.lex_state = 4, .external_lex_state = 29}, - [495] = {.lex_state = 5, .external_lex_state = 40}, - [496] = {.lex_state = 3, .external_lex_state = 29}, - [497] = {.lex_state = 3, .external_lex_state = 29}, - [498] = {.lex_state = 5, .external_lex_state = 41}, - [499] = {.lex_state = 1, .external_lex_state = 29}, + [481] = {.lex_state = 4, .external_lex_state = 25}, + [482] = {.lex_state = 1, .external_lex_state = 25}, + [483] = {.lex_state = 4, .external_lex_state = 27}, + [484] = {.lex_state = 3, .external_lex_state = 27}, + [485] = {.lex_state = 3, .external_lex_state = 27}, + [486] = {.lex_state = 1, .external_lex_state = 27}, + [487] = {.lex_state = 1, .external_lex_state = 27}, + [488] = {.lex_state = 4, .external_lex_state = 25}, + [489] = {.lex_state = 3, .external_lex_state = 39}, + [490] = {.lex_state = 1, .external_lex_state = 39}, + [491] = {.lex_state = 1, .external_lex_state = 27}, + [492] = {.lex_state = 3, .external_lex_state = 25}, + [493] = {.lex_state = 1, .external_lex_state = 39}, + [494] = {.lex_state = 5, .external_lex_state = 40}, + [495] = {.lex_state = 5, .external_lex_state = 41}, + [496] = {.lex_state = 4, .external_lex_state = 28}, + [497] = {.lex_state = 3, .external_lex_state = 28}, + [498] = {.lex_state = 1, .external_lex_state = 28}, + [499] = {.lex_state = 5, .external_lex_state = 36}, [500] = {.lex_state = 5, .external_lex_state = 37}, - [501] = {.lex_state = 4, .external_lex_state = 29}, - [502] = {.lex_state = 1, .external_lex_state = 29}, + [501] = {.lex_state = 1, .external_lex_state = 28}, + [502] = {.lex_state = 4, .external_lex_state = 28}, [503] = {.lex_state = 5, .external_lex_state = 38}, - [504] = {.lex_state = 5, .external_lex_state = 36}, + [504] = {.lex_state = 3, .external_lex_state = 28}, [505] = {.lex_state = 5, .external_lex_state = 42}, - [506] = {.lex_state = 5, .external_lex_state = 43}, - [507] = {.lex_state = 5, .external_lex_state = 44}, + [506] = {.lex_state = 5, .external_lex_state = 42}, + [507] = {.lex_state = 5, .external_lex_state = 43}, [508] = {.lex_state = 5, .external_lex_state = 44}, - [509] = {.lex_state = 5, .external_lex_state = 44}, - [510] = {.lex_state = 5, .external_lex_state = 44}, - [511] = {.lex_state = 5, .external_lex_state = 44}, - [512] = {.lex_state = 5, .external_lex_state = 44}, + [509] = {.lex_state = 5, .external_lex_state = 42}, + [510] = {.lex_state = 5, .external_lex_state = 33}, + [511] = {.lex_state = 5, .external_lex_state = 32}, + [512] = {.lex_state = 5, .external_lex_state = 32}, [513] = {.lex_state = 5, .external_lex_state = 42}, - [514] = {.lex_state = 5, .external_lex_state = 44}, + [514] = {.lex_state = 5, .external_lex_state = 42}, [515] = {.lex_state = 5, .external_lex_state = 42}, - [516] = {.lex_state = 5, .external_lex_state = 44}, + [516] = {.lex_state = 5, .external_lex_state = 42}, [517] = {.lex_state = 5, .external_lex_state = 42}, - [518] = {.lex_state = 5, .external_lex_state = 44}, - [519] = {.lex_state = 5, .external_lex_state = 44}, - [520] = {.lex_state = 5, .external_lex_state = 44}, + [518] = {.lex_state = 5, .external_lex_state = 42}, + [519] = {.lex_state = 5, .external_lex_state = 45}, + [520] = {.lex_state = 5, .external_lex_state = 42}, [521] = {.lex_state = 5, .external_lex_state = 44}, - [522] = {.lex_state = 5, .external_lex_state = 44}, - [523] = {.lex_state = 5, .external_lex_state = 44}, - [524] = {.lex_state = 5, .external_lex_state = 44}, - [525] = {.lex_state = 5, .external_lex_state = 44}, + [522] = {.lex_state = 5, .external_lex_state = 45}, + [523] = {.lex_state = 5, .external_lex_state = 45}, + [524] = {.lex_state = 5, .external_lex_state = 45}, + [525] = {.lex_state = 5, .external_lex_state = 45}, [526] = {.lex_state = 5, .external_lex_state = 42}, - [527] = {.lex_state = 5, .external_lex_state = 44}, - [528] = {.lex_state = 5, .external_lex_state = 44}, - [529] = {.lex_state = 5, .external_lex_state = 44}, - [530] = {.lex_state = 5, .external_lex_state = 45}, - [531] = {.lex_state = 5, .external_lex_state = 44}, - [532] = {.lex_state = 5, .external_lex_state = 46}, - [533] = {.lex_state = 5, .external_lex_state = 44}, - [534] = {.lex_state = 5, .external_lex_state = 44}, - [535] = {.lex_state = 5, .external_lex_state = 42}, - [536] = {.lex_state = 5, .external_lex_state = 42}, + [527] = {.lex_state = 5, .external_lex_state = 45}, + [528] = {.lex_state = 5, .external_lex_state = 42}, + [529] = {.lex_state = 5, .external_lex_state = 45}, + [530] = {.lex_state = 5, .external_lex_state = 42}, + [531] = {.lex_state = 5, .external_lex_state = 42}, + [532] = {.lex_state = 5, .external_lex_state = 42}, + [533] = {.lex_state = 5, .external_lex_state = 42}, + [534] = {.lex_state = 5, .external_lex_state = 42}, + [535] = {.lex_state = 5, .external_lex_state = 45}, + [536] = {.lex_state = 5, .external_lex_state = 46}, [537] = {.lex_state = 5, .external_lex_state = 42}, - [538] = {.lex_state = 5, .external_lex_state = 44}, - [539] = {.lex_state = 5, .external_lex_state = 44}, - [540] = {.lex_state = 5, .external_lex_state = 42}, - [541] = {.lex_state = 5, .external_lex_state = 44}, + [538] = {.lex_state = 5, .external_lex_state = 45}, + [539] = {.lex_state = 5, .external_lex_state = 42}, + [540] = {.lex_state = 5, .external_lex_state = 45}, + [541] = {.lex_state = 5, .external_lex_state = 42}, [542] = {.lex_state = 5, .external_lex_state = 42}, - [543] = {.lex_state = 5, .external_lex_state = 44}, - [544] = {.lex_state = 5, .external_lex_state = 44}, - [545] = {.lex_state = 5, .external_lex_state = 34}, + [543] = {.lex_state = 5, .external_lex_state = 45}, + [544] = {.lex_state = 5, .external_lex_state = 42}, + [545] = {.lex_state = 5, .external_lex_state = 42}, [546] = {.lex_state = 5, .external_lex_state = 42}, - [547] = {.lex_state = 5, .external_lex_state = 44}, - [548] = {.lex_state = 5, .external_lex_state = 42}, - [549] = {.lex_state = 5, .external_lex_state = 44}, - [550] = {.lex_state = 5, .external_lex_state = 44}, - [551] = {.lex_state = 5, .external_lex_state = 44}, - [552] = {.lex_state = 5, .external_lex_state = 44}, - [553] = {.lex_state = 5, .external_lex_state = 44}, - [554] = {.lex_state = 5, .external_lex_state = 42}, - [555] = {.lex_state = 5, .external_lex_state = 44}, - [556] = {.lex_state = 5, .external_lex_state = 44}, - [557] = {.lex_state = 5, .external_lex_state = 42}, - [558] = {.lex_state = 5, .external_lex_state = 44}, - [559] = {.lex_state = 5, .external_lex_state = 44}, - [560] = {.lex_state = 5, .external_lex_state = 42}, - [561] = {.lex_state = 5, .external_lex_state = 44}, - [562] = {.lex_state = 5, .external_lex_state = 33}, - [563] = {.lex_state = 5, .external_lex_state = 42}, - [564] = {.lex_state = 5, .external_lex_state = 42}, - [565] = {.lex_state = 5, .external_lex_state = 43}, - [566] = {.lex_state = 5, .external_lex_state = 42}, + [547] = {.lex_state = 5, .external_lex_state = 42}, + [548] = {.lex_state = 5, .external_lex_state = 45}, + [549] = {.lex_state = 5, .external_lex_state = 45}, + [550] = {.lex_state = 5, .external_lex_state = 45}, + [551] = {.lex_state = 5, .external_lex_state = 45}, + [552] = {.lex_state = 5, .external_lex_state = 45}, + [553] = {.lex_state = 5, .external_lex_state = 45}, + [554] = {.lex_state = 5, .external_lex_state = 45}, + [555] = {.lex_state = 5, .external_lex_state = 42}, + [556] = {.lex_state = 5, .external_lex_state = 45}, + [557] = {.lex_state = 5, .external_lex_state = 45}, + [558] = {.lex_state = 5, .external_lex_state = 45}, + [559] = {.lex_state = 5, .external_lex_state = 45}, + [560] = {.lex_state = 5, .external_lex_state = 45}, + [561] = {.lex_state = 5, .external_lex_state = 45}, + [562] = {.lex_state = 5, .external_lex_state = 45}, + [563] = {.lex_state = 5, .external_lex_state = 45}, + [564] = {.lex_state = 5, .external_lex_state = 45}, + [565] = {.lex_state = 5, .external_lex_state = 45}, + [566] = {.lex_state = 5, .external_lex_state = 45}, [567] = {.lex_state = 5, .external_lex_state = 42}, - [568] = {.lex_state = 5, .external_lex_state = 42}, - [569] = {.lex_state = 5, .external_lex_state = 44}, + [568] = {.lex_state = 5, .external_lex_state = 45}, + [569] = {.lex_state = 5, .external_lex_state = 45}, [570] = {.lex_state = 5, .external_lex_state = 42}, [571] = {.lex_state = 5, .external_lex_state = 42}, - [572] = {.lex_state = 5, .external_lex_state = 42}, - [573] = {.lex_state = 5, .external_lex_state = 42}, + [572] = {.lex_state = 5, .external_lex_state = 45}, + [573] = {.lex_state = 5, .external_lex_state = 45}, [574] = {.lex_state = 5, .external_lex_state = 42}, [575] = {.lex_state = 5, .external_lex_state = 42}, - [576] = {.lex_state = 5, .external_lex_state = 42}, - [577] = {.lex_state = 5, .external_lex_state = 42}, - [578] = {.lex_state = 5, .external_lex_state = 42}, - [579] = {.lex_state = 5, .external_lex_state = 42}, - [580] = {.lex_state = 5, .external_lex_state = 42}, - [581] = {.lex_state = 5, .external_lex_state = 42}, + [576] = {.lex_state = 5, .external_lex_state = 45}, + [577] = {.lex_state = 5, .external_lex_state = 45}, + [578] = {.lex_state = 5, .external_lex_state = 45}, + [579] = {.lex_state = 5, .external_lex_state = 45}, + [580] = {.lex_state = 5, .external_lex_state = 45}, + [581] = {.lex_state = 5, .external_lex_state = 45}, [582] = {.lex_state = 5, .external_lex_state = 42}, [583] = {.lex_state = 5, .external_lex_state = 42}, [584] = {.lex_state = 5, .external_lex_state = 42}, - [585] = {.lex_state = 5, .external_lex_state = 42}, + [585] = {.lex_state = 5, .external_lex_state = 45}, [586] = {.lex_state = 5, .external_lex_state = 45}, [587] = {.lex_state = 5, .external_lex_state = 42}, - [588] = {.lex_state = 5, .external_lex_state = 42}, + [588] = {.lex_state = 5, .external_lex_state = 33}, [589] = {.lex_state = 5, .external_lex_state = 42}, [590] = {.lex_state = 5, .external_lex_state = 42}, - [591] = {.lex_state = 5, .external_lex_state = 33}, - [592] = {.lex_state = 5, .external_lex_state = 44}, + [591] = {.lex_state = 5, .external_lex_state = 42}, + [592] = {.lex_state = 5, .external_lex_state = 42}, [593] = {.lex_state = 5, .external_lex_state = 42}, - [594] = {.lex_state = 5, .external_lex_state = 34}, - [595] = {.lex_state = 5, .external_lex_state = 44}, + [594] = {.lex_state = 5, .external_lex_state = 45}, + [595] = {.lex_state = 5, .external_lex_state = 42}, [596] = {.lex_state = 5, .external_lex_state = 42}, - [597] = {.lex_state = 5, .external_lex_state = 44}, - [598] = {.lex_state = 5, .external_lex_state = 28}, - [599] = {.lex_state = 5, .external_lex_state = 47}, + [597] = {.lex_state = 5, .external_lex_state = 43}, + [598] = {.lex_state = 5, .external_lex_state = 47}, + [599] = {.lex_state = 5, .external_lex_state = 25}, [600] = {.lex_state = 5, .external_lex_state = 47}, - [601] = {.lex_state = 5, .external_lex_state = 25}, + [601] = {.lex_state = 5, .external_lex_state = 47}, [602] = {.lex_state = 5, .external_lex_state = 47}, - [603] = {.lex_state = 5, .external_lex_state = 47}, + [603] = {.lex_state = 5, .external_lex_state = 34}, [604] = {.lex_state = 5, .external_lex_state = 47}, [605] = {.lex_state = 5, .external_lex_state = 47}, [606] = {.lex_state = 5, .external_lex_state = 47}, [607] = {.lex_state = 5, .external_lex_state = 47}, - [608] = {.lex_state = 5, .external_lex_state = 32}, + [608] = {.lex_state = 5, .external_lex_state = 47}, [609] = {.lex_state = 5, .external_lex_state = 47}, - [610] = {.lex_state = 5, .external_lex_state = 47}, + [610] = {.lex_state = 5, .external_lex_state = 27}, [611] = {.lex_state = 5, .external_lex_state = 47}, [612] = {.lex_state = 5, .external_lex_state = 47}, [613] = {.lex_state = 5, .external_lex_state = 47}, [614] = {.lex_state = 5, .external_lex_state = 47}, [615] = {.lex_state = 5, .external_lex_state = 47}, [616] = {.lex_state = 5, .external_lex_state = 47}, - [617] = {.lex_state = 5, .external_lex_state = 33}, - [618] = {.lex_state = 5, .external_lex_state = 28}, - [619] = {.lex_state = 5, .external_lex_state = 35}, + [617] = {.lex_state = 5, .external_lex_state = 47}, + [618] = {.lex_state = 5, .external_lex_state = 33}, + [619] = {.lex_state = 5, .external_lex_state = 47}, [620] = {.lex_state = 5, .external_lex_state = 47}, [621] = {.lex_state = 5, .external_lex_state = 47}, [622] = {.lex_state = 5, .external_lex_state = 47}, [623] = {.lex_state = 5, .external_lex_state = 47}, - [624] = {.lex_state = 5, .external_lex_state = 39}, + [624] = {.lex_state = 5, .external_lex_state = 32}, [625] = {.lex_state = 5, .external_lex_state = 47}, - [626] = {.lex_state = 5, .external_lex_state = 34}, - [627] = {.lex_state = 5, .external_lex_state = 25}, - [628] = {.lex_state = 5, .external_lex_state = 39}, + [626] = {.lex_state = 5, .external_lex_state = 47}, + [627] = {.lex_state = 5, .external_lex_state = 47}, + [628] = {.lex_state = 5, .external_lex_state = 47}, [629] = {.lex_state = 5, .external_lex_state = 47}, - [630] = {.lex_state = 5, .external_lex_state = 47}, + [630] = {.lex_state = 5, .external_lex_state = 39}, [631] = {.lex_state = 5, .external_lex_state = 47}, [632] = {.lex_state = 5, .external_lex_state = 47}, - [633] = {.lex_state = 5, .external_lex_state = 47}, - [634] = {.lex_state = 5, .external_lex_state = 47}, + [633] = {.lex_state = 5, .external_lex_state = 25}, + [634] = {.lex_state = 5, .external_lex_state = 35}, [635] = {.lex_state = 5, .external_lex_state = 47}, [636] = {.lex_state = 5, .external_lex_state = 47}, [637] = {.lex_state = 5, .external_lex_state = 47}, [638] = {.lex_state = 5, .external_lex_state = 47}, [639] = {.lex_state = 5, .external_lex_state = 47}, - [640] = {.lex_state = 5, .external_lex_state = 47}, + [640] = {.lex_state = 5, .external_lex_state = 39}, [641] = {.lex_state = 5, .external_lex_state = 47}, [642] = {.lex_state = 5, .external_lex_state = 47}, [643] = {.lex_state = 5, .external_lex_state = 47}, [644] = {.lex_state = 5, .external_lex_state = 47}, [645] = {.lex_state = 5, .external_lex_state = 47}, [646] = {.lex_state = 5, .external_lex_state = 47}, - [647] = {.lex_state = 5, .external_lex_state = 47}, + [647] = {.lex_state = 5, .external_lex_state = 27}, [648] = {.lex_state = 5, .external_lex_state = 47}, [649] = {.lex_state = 5, .external_lex_state = 47}, - [650] = {.lex_state = 5, .external_lex_state = 45}, - [651] = {.lex_state = 5, .external_lex_state = 32}, - [652] = {.lex_state = 5, .external_lex_state = 34}, - [653] = {.lex_state = 5, .external_lex_state = 28}, - [654] = {.lex_state = 5, .external_lex_state = 33}, - [655] = {.lex_state = 5, .external_lex_state = 28}, - [656] = {.lex_state = 5, .external_lex_state = 43}, - [657] = {.lex_state = 5, .external_lex_state = 32}, - [658] = {.lex_state = 5, .external_lex_state = 34}, - [659] = {.lex_state = 5, .external_lex_state = 33}, - [660] = {.lex_state = 6, .external_lex_state = 30}, - [661] = {.lex_state = 5, .external_lex_state = 25}, - [662] = {.lex_state = 6, .external_lex_state = 30}, + [650] = {.lex_state = 5, .external_lex_state = 32}, + [651] = {.lex_state = 5, .external_lex_state = 43}, + [652] = {.lex_state = 5, .external_lex_state = 32}, + [653] = {.lex_state = 5, .external_lex_state = 33}, + [654] = {.lex_state = 5, .external_lex_state = 44}, + [655] = {.lex_state = 5, .external_lex_state = 33}, + [656] = {.lex_state = 5, .external_lex_state = 32}, + [657] = {.lex_state = 5, .external_lex_state = 33}, + [658] = {.lex_state = 5, .external_lex_state = 25}, + [659] = {.lex_state = 6, .external_lex_state = 30}, + [660] = {.lex_state = 5, .external_lex_state = 32}, + [661] = {.lex_state = 5, .external_lex_state = 34}, + [662] = {.lex_state = 5, .external_lex_state = 25}, [663] = {.lex_state = 5, .external_lex_state = 33}, - [664] = {.lex_state = 5, .external_lex_state = 34}, - [665] = {.lex_state = 5, .external_lex_state = 34}, - [666] = {.lex_state = 5, .external_lex_state = 33}, - [667] = {.lex_state = 5, .external_lex_state = 25}, - [668] = {.lex_state = 5, .external_lex_state = 29}, + [664] = {.lex_state = 5, .external_lex_state = 33}, + [665] = {.lex_state = 5, .external_lex_state = 32}, + [666] = {.lex_state = 5, .external_lex_state = 34}, + [667] = {.lex_state = 5, .external_lex_state = 32}, + [668] = {.lex_state = 5, .external_lex_state = 27}, [669] = {.lex_state = 5, .external_lex_state = 33}, - [670] = {.lex_state = 5, .external_lex_state = 34}, - [671] = {.lex_state = 5, .external_lex_state = 33}, - [672] = {.lex_state = 5, .external_lex_state = 34}, + [670] = {.lex_state = 5, .external_lex_state = 28}, + [671] = {.lex_state = 6, .external_lex_state = 30}, + [672] = {.lex_state = 5, .external_lex_state = 27}, [673] = {.lex_state = 5, .external_lex_state = 25}, - [674] = {.lex_state = 5, .external_lex_state = 28}, - [675] = {.lex_state = 5, .external_lex_state = 28}, - [676] = {.lex_state = 5, .external_lex_state = 28}, - [677] = {.lex_state = 5, .external_lex_state = 33}, - [678] = {.lex_state = 5, .external_lex_state = 28}, - [679] = {.lex_state = 5, .external_lex_state = 25}, - [680] = {.lex_state = 5, .external_lex_state = 25}, - [681] = {.lex_state = 5, .external_lex_state = 32}, + [674] = {.lex_state = 5, .external_lex_state = 25}, + [675] = {.lex_state = 5, .external_lex_state = 25}, + [676] = {.lex_state = 5, .external_lex_state = 25}, + [677] = {.lex_state = 5, .external_lex_state = 27}, + [678] = {.lex_state = 5, .external_lex_state = 25}, + [679] = {.lex_state = 5, .external_lex_state = 27}, + [680] = {.lex_state = 5, .external_lex_state = 35}, + [681] = {.lex_state = 5, .external_lex_state = 25}, [682] = {.lex_state = 5, .external_lex_state = 25}, - [683] = {.lex_state = 5, .external_lex_state = 28}, + [683] = {.lex_state = 5, .external_lex_state = 25}, [684] = {.lex_state = 5, .external_lex_state = 25}, - [685] = {.lex_state = 5, .external_lex_state = 28}, + [685] = {.lex_state = 5, .external_lex_state = 27}, [686] = {.lex_state = 5, .external_lex_state = 25}, - [687] = {.lex_state = 5, .external_lex_state = 28}, - [688] = {.lex_state = 5, .external_lex_state = 28}, - [689] = {.lex_state = 5, .external_lex_state = 28}, - [690] = {.lex_state = 5, .external_lex_state = 28}, + [687] = {.lex_state = 5, .external_lex_state = 27}, + [688] = {.lex_state = 5, .external_lex_state = 27}, + [689] = {.lex_state = 5, .external_lex_state = 25}, + [690] = {.lex_state = 5, .external_lex_state = 25}, [691] = {.lex_state = 5, .external_lex_state = 25}, - [692] = {.lex_state = 5, .external_lex_state = 28}, - [693] = {.lex_state = 5, .external_lex_state = 28}, - [694] = {.lex_state = 5, .external_lex_state = 28}, - [695] = {.lex_state = 5, .external_lex_state = 28}, - [696] = {.lex_state = 5, .external_lex_state = 28}, - [697] = {.lex_state = 5, .external_lex_state = 25}, - [698] = {.lex_state = 5, .external_lex_state = 25}, - [699] = {.lex_state = 5, .external_lex_state = 25}, - [700] = {.lex_state = 5, .external_lex_state = 25}, - [701] = {.lex_state = 5, .external_lex_state = 34}, - [702] = {.lex_state = 5, .external_lex_state = 28}, + [692] = {.lex_state = 5, .external_lex_state = 25}, + [693] = {.lex_state = 5, .external_lex_state = 25}, + [694] = {.lex_state = 5, .external_lex_state = 27}, + [695] = {.lex_state = 5, .external_lex_state = 27}, + [696] = {.lex_state = 5, .external_lex_state = 27}, + [697] = {.lex_state = 5, .external_lex_state = 27}, + [698] = {.lex_state = 5, .external_lex_state = 27}, + [699] = {.lex_state = 5, .external_lex_state = 27}, + [700] = {.lex_state = 5, .external_lex_state = 34}, + [701] = {.lex_state = 5, .external_lex_state = 27}, + [702] = {.lex_state = 5, .external_lex_state = 27}, [703] = {.lex_state = 5, .external_lex_state = 34}, - [704] = {.lex_state = 5, .external_lex_state = 28}, - [705] = {.lex_state = 5, .external_lex_state = 28}, - [706] = {.lex_state = 5, .external_lex_state = 28}, - [707] = {.lex_state = 5, .external_lex_state = 28}, - [708] = {.lex_state = 5, .external_lex_state = 33}, + [704] = {.lex_state = 5, .external_lex_state = 27}, + [705] = {.lex_state = 5, .external_lex_state = 34}, + [706] = {.lex_state = 5, .external_lex_state = 25}, + [707] = {.lex_state = 5, .external_lex_state = 27}, + [708] = {.lex_state = 5, .external_lex_state = 32}, [709] = {.lex_state = 5, .external_lex_state = 25}, - [710] = {.lex_state = 5, .external_lex_state = 25}, - [711] = {.lex_state = 5, .external_lex_state = 33}, - [712] = {.lex_state = 5, .external_lex_state = 25}, + [710] = {.lex_state = 5, .external_lex_state = 27}, + [711] = {.lex_state = 5, .external_lex_state = 25}, + [712] = {.lex_state = 10, .external_lex_state = 48}, [713] = {.lex_state = 5, .external_lex_state = 25}, - [714] = {.lex_state = 5, .external_lex_state = 25}, - [715] = {.lex_state = 5, .external_lex_state = 32}, + [714] = {.lex_state = 5, .external_lex_state = 27}, + [715] = {.lex_state = 5, .external_lex_state = 25}, [716] = {.lex_state = 5, .external_lex_state = 25}, [717] = {.lex_state = 5, .external_lex_state = 25}, - [718] = {.lex_state = 5, .external_lex_state = 28}, - [719] = {.lex_state = 5, .external_lex_state = 28}, - [720] = {.lex_state = 5, .external_lex_state = 35}, - [721] = {.lex_state = 5, .external_lex_state = 28}, - [722] = {.lex_state = 5, .external_lex_state = 28}, - [723] = {.lex_state = 5, .external_lex_state = 28}, - [724] = {.lex_state = 5, .external_lex_state = 32}, + [718] = {.lex_state = 5, .external_lex_state = 27}, + [719] = {.lex_state = 5, .external_lex_state = 25}, + [720] = {.lex_state = 5, .external_lex_state = 27}, + [721] = {.lex_state = 5, .external_lex_state = 27}, + [722] = {.lex_state = 5, .external_lex_state = 27}, + [723] = {.lex_state = 5, .external_lex_state = 25}, + [724] = {.lex_state = 5, .external_lex_state = 25}, [725] = {.lex_state = 5, .external_lex_state = 25}, - [726] = {.lex_state = 5, .external_lex_state = 25}, - [727] = {.lex_state = 5, .external_lex_state = 25}, + [726] = {.lex_state = 5, .external_lex_state = 27}, + [727] = {.lex_state = 5, .external_lex_state = 27}, [728] = {.lex_state = 5, .external_lex_state = 28}, - [729] = {.lex_state = 5, .external_lex_state = 25}, - [730] = {.lex_state = 5, .external_lex_state = 28}, - [731] = {.lex_state = 5, .external_lex_state = 28}, - [732] = {.lex_state = 5, .external_lex_state = 32}, - [733] = {.lex_state = 5, .external_lex_state = 25}, - [734] = {.lex_state = 5, .external_lex_state = 28}, - [735] = {.lex_state = 5, .external_lex_state = 25}, - [736] = {.lex_state = 5, .external_lex_state = 28}, - [737] = {.lex_state = 5, .external_lex_state = 28}, - [738] = {.lex_state = 5, .external_lex_state = 28}, + [729] = {.lex_state = 5, .external_lex_state = 27}, + [730] = {.lex_state = 5, .external_lex_state = 27}, + [731] = {.lex_state = 5, .external_lex_state = 27}, + [732] = {.lex_state = 5, .external_lex_state = 25}, + [733] = {.lex_state = 5, .external_lex_state = 27}, + [734] = {.lex_state = 5, .external_lex_state = 25}, + [735] = {.lex_state = 5, .external_lex_state = 27}, + [736] = {.lex_state = 5, .external_lex_state = 25}, + [737] = {.lex_state = 5, .external_lex_state = 25}, + [738] = {.lex_state = 5, .external_lex_state = 25}, [739] = {.lex_state = 5, .external_lex_state = 25}, [740] = {.lex_state = 5, .external_lex_state = 25}, [741] = {.lex_state = 5, .external_lex_state = 25}, - [742] = {.lex_state = 5, .external_lex_state = 28}, - [743] = {.lex_state = 5, .external_lex_state = 28}, + [742] = {.lex_state = 5, .external_lex_state = 34}, + [743] = {.lex_state = 5, .external_lex_state = 25}, [744] = {.lex_state = 5, .external_lex_state = 25}, - [745] = {.lex_state = 10, .external_lex_state = 48}, - [746] = {.lex_state = 5, .external_lex_state = 28}, - [747] = {.lex_state = 5, .external_lex_state = 25}, - [748] = {.lex_state = 5, .external_lex_state = 28}, - [749] = {.lex_state = 5, .external_lex_state = 28}, - [750] = {.lex_state = 5, .external_lex_state = 28}, - [751] = {.lex_state = 5, .external_lex_state = 28}, - [752] = {.lex_state = 5, .external_lex_state = 28}, - [753] = {.lex_state = 5, .external_lex_state = 28}, - [754] = {.lex_state = 5, .external_lex_state = 25}, - [755] = {.lex_state = 5, .external_lex_state = 28}, - [756] = {.lex_state = 5, .external_lex_state = 28}, - [757] = {.lex_state = 5, .external_lex_state = 25}, - [758] = {.lex_state = 5, .external_lex_state = 28}, - [759] = {.lex_state = 5, .external_lex_state = 25}, - [760] = {.lex_state = 5, .external_lex_state = 28}, - [761] = {.lex_state = 5, .external_lex_state = 25}, - [762] = {.lex_state = 5, .external_lex_state = 28}, - [763] = {.lex_state = 5, .external_lex_state = 28}, - [764] = {.lex_state = 5, .external_lex_state = 28}, - [765] = {.lex_state = 5, .external_lex_state = 28}, + [745] = {.lex_state = 5, .external_lex_state = 25}, + [746] = {.lex_state = 5, .external_lex_state = 25}, + [747] = {.lex_state = 5, .external_lex_state = 27}, + [748] = {.lex_state = 5, .external_lex_state = 25}, + [749] = {.lex_state = 5, .external_lex_state = 33}, + [750] = {.lex_state = 5, .external_lex_state = 25}, + [751] = {.lex_state = 5, .external_lex_state = 27}, + [752] = {.lex_state = 5, .external_lex_state = 27}, + [753] = {.lex_state = 5, .external_lex_state = 27}, + [754] = {.lex_state = 5, .external_lex_state = 27}, + [755] = {.lex_state = 5, .external_lex_state = 27}, + [756] = {.lex_state = 5, .external_lex_state = 25}, + [757] = {.lex_state = 5, .external_lex_state = 27}, + [758] = {.lex_state = 5, .external_lex_state = 33}, + [759] = {.lex_state = 5, .external_lex_state = 27}, + [760] = {.lex_state = 5, .external_lex_state = 25}, + [761] = {.lex_state = 5, .external_lex_state = 34}, + [762] = {.lex_state = 5, .external_lex_state = 27}, + [763] = {.lex_state = 5, .external_lex_state = 27}, + [764] = {.lex_state = 5, .external_lex_state = 27}, + [765] = {.lex_state = 5, .external_lex_state = 27}, [766] = {.lex_state = 5, .external_lex_state = 25}, - [767] = {.lex_state = 5, .external_lex_state = 25}, - [768] = {.lex_state = 5, .external_lex_state = 25}, - [769] = {.lex_state = 5, .external_lex_state = 25}, - [770] = {.lex_state = 5, .external_lex_state = 25}, + [767] = {.lex_state = 5, .external_lex_state = 27}, + [768] = {.lex_state = 5, .external_lex_state = 27}, + [769] = {.lex_state = 5, .external_lex_state = 34}, + [770] = {.lex_state = 5, .external_lex_state = 27}, [771] = {.lex_state = 5, .external_lex_state = 25}, [772] = {.lex_state = 5, .external_lex_state = 25}, [773] = {.lex_state = 5, .external_lex_state = 25}, - [774] = {.lex_state = 5, .external_lex_state = 28}, - [775] = {.lex_state = 5, .external_lex_state = 28}, - [776] = {.lex_state = 5, .external_lex_state = 28}, - [777] = {.lex_state = 5, .external_lex_state = 28}, - [778] = {.lex_state = 5, .external_lex_state = 28}, + [774] = {.lex_state = 5, .external_lex_state = 25}, + [775] = {.lex_state = 5, .external_lex_state = 27}, + [776] = {.lex_state = 5, .external_lex_state = 27}, + [777] = {.lex_state = 5, .external_lex_state = 25}, + [778] = {.lex_state = 5, .external_lex_state = 25}, [779] = {.lex_state = 5, .external_lex_state = 25}, - [780] = {.lex_state = 5, .external_lex_state = 28}, - [781] = {.lex_state = 5, .external_lex_state = 34}, - [782] = {.lex_state = 5, .external_lex_state = 25}, - [783] = {.lex_state = 5, .external_lex_state = 28}, - [784] = {.lex_state = 5, .external_lex_state = 25}, + [780] = {.lex_state = 5, .external_lex_state = 25}, + [781] = {.lex_state = 5, .external_lex_state = 27}, + [782] = {.lex_state = 5, .external_lex_state = 27}, + [783] = {.lex_state = 5, .external_lex_state = 27}, + [784] = {.lex_state = 5, .external_lex_state = 27}, [785] = {.lex_state = 5, .external_lex_state = 25}, - [786] = {.lex_state = 5, .external_lex_state = 25}, - [787] = {.lex_state = 5, .external_lex_state = 28}, - [788] = {.lex_state = 5, .external_lex_state = 28}, - [789] = {.lex_state = 5, .external_lex_state = 28}, - [790] = {.lex_state = 5, .external_lex_state = 28}, + [786] = {.lex_state = 5, .external_lex_state = 27}, + [787] = {.lex_state = 5, .external_lex_state = 27}, + [788] = {.lex_state = 5, .external_lex_state = 32}, + [789] = {.lex_state = 5, .external_lex_state = 27}, + [790] = {.lex_state = 5, .external_lex_state = 25}, [791] = {.lex_state = 5, .external_lex_state = 25}, - [792] = {.lex_state = 5, .external_lex_state = 25}, - [793] = {.lex_state = 5, .external_lex_state = 28}, - [794] = {.lex_state = 5, .external_lex_state = 25}, - [795] = {.lex_state = 5, .external_lex_state = 25}, + [792] = {.lex_state = 5, .external_lex_state = 33}, + [793] = {.lex_state = 5, .external_lex_state = 25}, + [794] = {.lex_state = 5, .external_lex_state = 27}, + [795] = {.lex_state = 5, .external_lex_state = 27}, [796] = {.lex_state = 5, .external_lex_state = 25}, [797] = {.lex_state = 5, .external_lex_state = 25}, - [798] = {.lex_state = 5, .external_lex_state = 28}, + [798] = {.lex_state = 5, .external_lex_state = 27}, [799] = {.lex_state = 5, .external_lex_state = 25}, [800] = {.lex_state = 5, .external_lex_state = 25}, - [801] = {.lex_state = 5, .external_lex_state = 25}, - [802] = {.lex_state = 5, .external_lex_state = 25}, - [803] = {.lex_state = 5, .external_lex_state = 25}, - [804] = {.lex_state = 5, .external_lex_state = 25}, - [805] = {.lex_state = 5, .external_lex_state = 25}, + [801] = {.lex_state = 5, .external_lex_state = 27}, + [802] = {.lex_state = 5, .external_lex_state = 27}, + [803] = {.lex_state = 5, .external_lex_state = 27}, + [804] = {.lex_state = 5, .external_lex_state = 27}, + [805] = {.lex_state = 5, .external_lex_state = 27}, [806] = {.lex_state = 5, .external_lex_state = 25}, - [807] = {.lex_state = 5, .external_lex_state = 25}, - [808] = {.lex_state = 5, .external_lex_state = 28}, - [809] = {.lex_state = 5, .external_lex_state = 29}, - [810] = {.lex_state = 5, .external_lex_state = 25}, - [811] = {.lex_state = 5, .external_lex_state = 28}, - [812] = {.lex_state = 5, .external_lex_state = 32}, - [813] = {.lex_state = 5, .external_lex_state = 29}, - [814] = {.lex_state = 5, .external_lex_state = 32}, - [815] = {.lex_state = 5, .external_lex_state = 28}, - [816] = {.lex_state = 5, .external_lex_state = 28}, - [817] = {.lex_state = 5, .external_lex_state = 25}, + [807] = {.lex_state = 5, .external_lex_state = 28}, + [808] = {.lex_state = 5, .external_lex_state = 27}, + [809] = {.lex_state = 5, .external_lex_state = 32}, + [810] = {.lex_state = 5, .external_lex_state = 27}, + [811] = {.lex_state = 5, .external_lex_state = 25}, + [812] = {.lex_state = 5, .external_lex_state = 27}, + [813] = {.lex_state = 5, .external_lex_state = 25}, + [814] = {.lex_state = 5, .external_lex_state = 25}, + [815] = {.lex_state = 5, .external_lex_state = 27}, + [816] = {.lex_state = 5, .external_lex_state = 25}, + [817] = {.lex_state = 5, .external_lex_state = 27}, [818] = {.lex_state = 5, .external_lex_state = 25}, [819] = {.lex_state = 5, .external_lex_state = 25}, - [820] = {.lex_state = 5, .external_lex_state = 25}, - [821] = {.lex_state = 5, .external_lex_state = 28}, + [820] = {.lex_state = 5, .external_lex_state = 27}, + [821] = {.lex_state = 5, .external_lex_state = 27}, [822] = {.lex_state = 5, .external_lex_state = 25}, - [823] = {.lex_state = 5, .external_lex_state = 29}, - [824] = {.lex_state = 5, .external_lex_state = 29}, + [823] = {.lex_state = 5, .external_lex_state = 28}, + [824] = {.lex_state = 10, .external_lex_state = 28}, [825] = {.lex_state = 5, .external_lex_state = 28}, [826] = {.lex_state = 5, .external_lex_state = 28}, - [827] = {.lex_state = 5, .external_lex_state = 28}, + [827] = {.lex_state = 10, .external_lex_state = 28}, [828] = {.lex_state = 5, .external_lex_state = 28}, - [829] = {.lex_state = 5, .external_lex_state = 28}, - [830] = {.lex_state = 5, .external_lex_state = 29}, - [831] = {.lex_state = 5, .external_lex_state = 29}, - [832] = {.lex_state = 10, .external_lex_state = 49}, - [833] = {.lex_state = 10, .external_lex_state = 29}, - [834] = {.lex_state = 5, .external_lex_state = 29}, - [835] = {.lex_state = 5, .external_lex_state = 29}, + [829] = {.lex_state = 10, .external_lex_state = 28}, + [830] = {.lex_state = 5, .external_lex_state = 28}, + [831] = {.lex_state = 5, .external_lex_state = 27}, + [832] = {.lex_state = 5, .external_lex_state = 27}, + [833] = {.lex_state = 5, .external_lex_state = 27}, + [834] = {.lex_state = 5, .external_lex_state = 27}, + [835] = {.lex_state = 5, .external_lex_state = 27}, [836] = {.lex_state = 5, .external_lex_state = 28}, - [837] = {.lex_state = 5, .external_lex_state = 29}, - [838] = {.lex_state = 10, .external_lex_state = 29}, - [839] = {.lex_state = 5, .external_lex_state = 29}, - [840] = {.lex_state = 5, .external_lex_state = 29}, - [841] = {.lex_state = 5, .external_lex_state = 29}, - [842] = {.lex_state = 5, .external_lex_state = 34}, + [837] = {.lex_state = 5, .external_lex_state = 28}, + [838] = {.lex_state = 5, .external_lex_state = 25}, + [839] = {.lex_state = 5, .external_lex_state = 27}, + [840] = {.lex_state = 5, .external_lex_state = 28}, + [841] = {.lex_state = 10, .external_lex_state = 28}, + [842] = {.lex_state = 5, .external_lex_state = 28}, [843] = {.lex_state = 5, .external_lex_state = 28}, - [844] = {.lex_state = 5, .external_lex_state = 29}, - [845] = {.lex_state = 5, .external_lex_state = 29}, - [846] = {.lex_state = 5, .external_lex_state = 29}, - [847] = {.lex_state = 5, .external_lex_state = 29}, - [848] = {.lex_state = 5, .external_lex_state = 29}, - [849] = {.lex_state = 10, .external_lex_state = 29}, - [850] = {.lex_state = 5, .external_lex_state = 29}, - [851] = {.lex_state = 5, .external_lex_state = 29}, - [852] = {.lex_state = 10, .external_lex_state = 29}, - [853] = {.lex_state = 5, .external_lex_state = 28}, - [854] = {.lex_state = 5, .external_lex_state = 25}, - [855] = {.lex_state = 5, .external_lex_state = 29}, - [856] = {.lex_state = 5, .external_lex_state = 29}, - [857] = {.lex_state = 5, .external_lex_state = 33}, - [858] = {.lex_state = 5, .external_lex_state = 29}, - [859] = {.lex_state = 5, .external_lex_state = 29}, - [860] = {.lex_state = 5, .external_lex_state = 29}, - [861] = {.lex_state = 5, .external_lex_state = 29}, - [862] = {.lex_state = 5, .external_lex_state = 29}, - [863] = {.lex_state = 5, .external_lex_state = 29}, - [864] = {.lex_state = 5, .external_lex_state = 29}, - [865] = {.lex_state = 5, .external_lex_state = 29}, - [866] = {.lex_state = 5, .external_lex_state = 29}, - [867] = {.lex_state = 5, .external_lex_state = 29}, - [868] = {.lex_state = 5, .external_lex_state = 29}, - [869] = {.lex_state = 5, .external_lex_state = 29}, - [870] = {.lex_state = 5, .external_lex_state = 29}, - [871] = {.lex_state = 5, .external_lex_state = 29}, - [872] = {.lex_state = 5, .external_lex_state = 29}, - [873] = {.lex_state = 5, .external_lex_state = 25}, - [874] = {.lex_state = 5, .external_lex_state = 25}, - [875] = {.lex_state = 5, .external_lex_state = 29}, + [844] = {.lex_state = 5, .external_lex_state = 28}, + [845] = {.lex_state = 5, .external_lex_state = 28}, + [846] = {.lex_state = 10, .external_lex_state = 28}, + [847] = {.lex_state = 10, .external_lex_state = 28}, + [848] = {.lex_state = 5, .external_lex_state = 28}, + [849] = {.lex_state = 5, .external_lex_state = 28}, + [850] = {.lex_state = 10, .external_lex_state = 28}, + [851] = {.lex_state = 5, .external_lex_state = 28}, + [852] = {.lex_state = 5, .external_lex_state = 28}, + [853] = {.lex_state = 5, .external_lex_state = 27}, + [854] = {.lex_state = 5, .external_lex_state = 28}, + [855] = {.lex_state = 5, .external_lex_state = 34}, + [856] = {.lex_state = 5, .external_lex_state = 27}, + [857] = {.lex_state = 5, .external_lex_state = 28}, + [858] = {.lex_state = 5, .external_lex_state = 27}, + [859] = {.lex_state = 5, .external_lex_state = 28}, + [860] = {.lex_state = 5, .external_lex_state = 28}, + [861] = {.lex_state = 5, .external_lex_state = 28}, + [862] = {.lex_state = 5, .external_lex_state = 27}, + [863] = {.lex_state = 5, .external_lex_state = 25}, + [864] = {.lex_state = 5, .external_lex_state = 25}, + [865] = {.lex_state = 5, .external_lex_state = 25}, + [866] = {.lex_state = 5, .external_lex_state = 28}, + [867] = {.lex_state = 5, .external_lex_state = 28}, + [868] = {.lex_state = 5, .external_lex_state = 28}, + [869] = {.lex_state = 5, .external_lex_state = 28}, + [870] = {.lex_state = 5, .external_lex_state = 25}, + [871] = {.lex_state = 5, .external_lex_state = 28}, + [872] = {.lex_state = 5, .external_lex_state = 28}, + [873] = {.lex_state = 5, .external_lex_state = 28}, + [874] = {.lex_state = 5, .external_lex_state = 28}, + [875] = {.lex_state = 5, .external_lex_state = 25}, [876] = {.lex_state = 5, .external_lex_state = 28}, - [877] = {.lex_state = 5, .external_lex_state = 29}, - [878] = {.lex_state = 10, .external_lex_state = 29}, - [879] = {.lex_state = 5, .external_lex_state = 29}, - [880] = {.lex_state = 5, .external_lex_state = 29}, - [881] = {.lex_state = 5, .external_lex_state = 29}, + [877] = {.lex_state = 5, .external_lex_state = 28}, + [878] = {.lex_state = 5, .external_lex_state = 32}, + [879] = {.lex_state = 5, .external_lex_state = 28}, + [880] = {.lex_state = 5, .external_lex_state = 28}, + [881] = {.lex_state = 5, .external_lex_state = 25}, [882] = {.lex_state = 5, .external_lex_state = 28}, - [883] = {.lex_state = 5, .external_lex_state = 29}, - [884] = {.lex_state = 10, .external_lex_state = 29}, - [885] = {.lex_state = 5, .external_lex_state = 29}, - [886] = {.lex_state = 10, .external_lex_state = 29}, - [887] = {.lex_state = 5, .external_lex_state = 29}, + [883] = {.lex_state = 5, .external_lex_state = 28}, + [884] = {.lex_state = 10, .external_lex_state = 49}, + [885] = {.lex_state = 10, .external_lex_state = 49}, + [886] = {.lex_state = 5, .external_lex_state = 28}, + [887] = {.lex_state = 5, .external_lex_state = 25}, [888] = {.lex_state = 5, .external_lex_state = 28}, - [889] = {.lex_state = 5, .external_lex_state = 29}, - [890] = {.lex_state = 5, .external_lex_state = 25}, + [889] = {.lex_state = 10, .external_lex_state = 49}, + [890] = {.lex_state = 5, .external_lex_state = 28}, [891] = {.lex_state = 5, .external_lex_state = 25}, - [892] = {.lex_state = 5, .external_lex_state = 29}, - [893] = {.lex_state = 5, .external_lex_state = 29}, - [894] = {.lex_state = 10, .external_lex_state = 49}, - [895] = {.lex_state = 5, .external_lex_state = 29}, - [896] = {.lex_state = 5, .external_lex_state = 29}, - [897] = {.lex_state = 10, .external_lex_state = 49}, - [898] = {.lex_state = 5, .external_lex_state = 29}, - [899] = {.lex_state = 5, .external_lex_state = 29}, - [900] = {.lex_state = 5, .external_lex_state = 29}, - [901] = {.lex_state = 5, .external_lex_state = 29}, - [902] = {.lex_state = 10, .external_lex_state = 29}, - [903] = {.lex_state = 5, .external_lex_state = 29}, - [904] = {.lex_state = 5, .external_lex_state = 29}, - [905] = {.lex_state = 5, .external_lex_state = 29}, - [906] = {.lex_state = 5, .external_lex_state = 29}, - [907] = {.lex_state = 5, .external_lex_state = 29}, - [908] = {.lex_state = 10, .external_lex_state = 29}, - [909] = {.lex_state = 5, .external_lex_state = 29}, - [910] = {.lex_state = 5, .external_lex_state = 29}, - [911] = {.lex_state = 5, .external_lex_state = 29}, - [912] = {.lex_state = 10, .external_lex_state = 29}, - [913] = {.lex_state = 5, .external_lex_state = 29}, - [914] = {.lex_state = 5, .external_lex_state = 29}, - [915] = {.lex_state = 5, .external_lex_state = 25}, - [916] = {.lex_state = 5, .external_lex_state = 25}, - [917] = {.lex_state = 5, .external_lex_state = 25}, - [918] = {.lex_state = 5, .external_lex_state = 29}, - [919] = {.lex_state = 5, .external_lex_state = 29}, - [920] = {.lex_state = 5, .external_lex_state = 25}, + [892] = {.lex_state = 5, .external_lex_state = 33}, + [893] = {.lex_state = 5, .external_lex_state = 28}, + [894] = {.lex_state = 5, .external_lex_state = 28}, + [895] = {.lex_state = 5, .external_lex_state = 28}, + [896] = {.lex_state = 5, .external_lex_state = 28}, + [897] = {.lex_state = 5, .external_lex_state = 28}, + [898] = {.lex_state = 5, .external_lex_state = 28}, + [899] = {.lex_state = 5, .external_lex_state = 28}, + [900] = {.lex_state = 10, .external_lex_state = 28}, + [901] = {.lex_state = 5, .external_lex_state = 28}, + [902] = {.lex_state = 5, .external_lex_state = 28}, + [903] = {.lex_state = 5, .external_lex_state = 28}, + [904] = {.lex_state = 5, .external_lex_state = 28}, + [905] = {.lex_state = 10, .external_lex_state = 49}, + [906] = {.lex_state = 5, .external_lex_state = 28}, + [907] = {.lex_state = 5, .external_lex_state = 28}, + [908] = {.lex_state = 5, .external_lex_state = 28}, + [909] = {.lex_state = 5, .external_lex_state = 28}, + [910] = {.lex_state = 5, .external_lex_state = 28}, + [911] = {.lex_state = 5, .external_lex_state = 28}, + [912] = {.lex_state = 5, .external_lex_state = 28}, + [913] = {.lex_state = 5, .external_lex_state = 28}, + [914] = {.lex_state = 5, .external_lex_state = 28}, + [915] = {.lex_state = 5, .external_lex_state = 28}, + [916] = {.lex_state = 5, .external_lex_state = 28}, + [917] = {.lex_state = 5, .external_lex_state = 28}, + [918] = {.lex_state = 5, .external_lex_state = 25}, + [919] = {.lex_state = 5, .external_lex_state = 28}, + [920] = {.lex_state = 5, .external_lex_state = 28}, [921] = {.lex_state = 5, .external_lex_state = 25}, - [922] = {.lex_state = 5, .external_lex_state = 29}, - [923] = {.lex_state = 5, .external_lex_state = 29}, - [924] = {.lex_state = 10, .external_lex_state = 49}, - [925] = {.lex_state = 5, .external_lex_state = 25}, - [926] = {.lex_state = 5, .external_lex_state = 29}, - [927] = {.lex_state = 5, .external_lex_state = 29}, - [928] = {.lex_state = 5, .external_lex_state = 29}, - [929] = {.lex_state = 5, .external_lex_state = 29}, - [930] = {.lex_state = 5, .external_lex_state = 29}, - [931] = {.lex_state = 5, .external_lex_state = 29}, - [932] = {.lex_state = 5, .external_lex_state = 29}, - [933] = {.lex_state = 10, .external_lex_state = 29}, - [934] = {.lex_state = 5, .external_lex_state = 32}, + [922] = {.lex_state = 5, .external_lex_state = 27}, + [923] = {.lex_state = 5, .external_lex_state = 28}, + [924] = {.lex_state = 10, .external_lex_state = 28}, + [925] = {.lex_state = 10, .external_lex_state = 28}, + [926] = {.lex_state = 5, .external_lex_state = 28}, + [927] = {.lex_state = 5, .external_lex_state = 28}, + [928] = {.lex_state = 5, .external_lex_state = 28}, + [929] = {.lex_state = 5, .external_lex_state = 28}, + [930] = {.lex_state = 10, .external_lex_state = 28}, + [931] = {.lex_state = 5, .external_lex_state = 28}, + [932] = {.lex_state = 5, .external_lex_state = 28}, + [933] = {.lex_state = 5, .external_lex_state = 28}, + [934] = {.lex_state = 5, .external_lex_state = 28}, [935] = {.lex_state = 5, .external_lex_state = 28}, - [936] = {.lex_state = 15, .external_lex_state = 30}, - [937] = {.lex_state = 7}, - [938] = {.lex_state = 7}, + [936] = {.lex_state = 16, .external_lex_state = 30}, + [937] = {.lex_state = 10, .external_lex_state = 46}, + [938] = {.lex_state = 5, .external_lex_state = 27}, [939] = {.lex_state = 7}, - [940] = {.lex_state = 5, .external_lex_state = 29}, - [941] = {.lex_state = 15, .external_lex_state = 30}, - [942] = {.lex_state = 5, .external_lex_state = 29}, + [940] = {.lex_state = 5, .external_lex_state = 28}, + [941] = {.lex_state = 5, .external_lex_state = 28}, + [942] = {.lex_state = 5, .external_lex_state = 25}, [943] = {.lex_state = 5, .external_lex_state = 28}, - [944] = {.lex_state = 7}, - [945] = {.lex_state = 5, .external_lex_state = 29}, - [946] = {.lex_state = 5, .external_lex_state = 25}, - [947] = {.lex_state = 5, .external_lex_state = 28}, - [948] = {.lex_state = 16, .external_lex_state = 30}, - [949] = {.lex_state = 10, .external_lex_state = 46}, - [950] = {.lex_state = 5, .external_lex_state = 29}, - [951] = {.lex_state = 16, .external_lex_state = 30}, + [944] = {.lex_state = 5, .external_lex_state = 28}, + [945] = {.lex_state = 5, .external_lex_state = 27}, + [946] = {.lex_state = 7}, + [947] = {.lex_state = 7}, + [948] = {.lex_state = 5, .external_lex_state = 28}, + [949] = {.lex_state = 16, .external_lex_state = 30}, + [950] = {.lex_state = 7}, + [951] = {.lex_state = 5, .external_lex_state = 25}, [952] = {.lex_state = 7}, - [953] = {.lex_state = 10, .external_lex_state = 29}, - [954] = {.lex_state = 5, .external_lex_state = 29}, - [955] = {.lex_state = 5, .external_lex_state = 29}, - [956] = {.lex_state = 5, .external_lex_state = 28}, - [957] = {.lex_state = 5, .external_lex_state = 25}, - [958] = {.lex_state = 5, .external_lex_state = 25}, - [959] = {.lex_state = 5, .external_lex_state = 28}, - [960] = {.lex_state = 5, .external_lex_state = 29}, - [961] = {.lex_state = 5, .external_lex_state = 25}, + [953] = {.lex_state = 7}, + [954] = {.lex_state = 7}, + [955] = {.lex_state = 5, .external_lex_state = 25}, + [956] = {.lex_state = 5, .external_lex_state = 25}, + [957] = {.lex_state = 5, .external_lex_state = 27}, + [958] = {.lex_state = 5, .external_lex_state = 27}, + [959] = {.lex_state = 10, .external_lex_state = 28}, + [960] = {.lex_state = 15, .external_lex_state = 30}, + [961] = {.lex_state = 15, .external_lex_state = 30}, [962] = {.lex_state = 7}, [963] = {.lex_state = 5, .external_lex_state = 28}, [964] = {.lex_state = 5, .external_lex_state = 28}, - [965] = {.lex_state = 5, .external_lex_state = 25}, + [965] = {.lex_state = 5, .external_lex_state = 28}, [966] = {.lex_state = 7}, - [967] = {.lex_state = 5, .external_lex_state = 28}, - [968] = {.lex_state = 5, .external_lex_state = 28}, - [969] = {.lex_state = 7}, + [967] = {.lex_state = 5, .external_lex_state = 25}, + [968] = {.lex_state = 5, .external_lex_state = 25}, + [969] = {.lex_state = 5, .external_lex_state = 25}, [970] = {.lex_state = 5, .external_lex_state = 25}, - [971] = {.lex_state = 5, .external_lex_state = 25}, - [972] = {.lex_state = 5, .external_lex_state = 25}, - [973] = {.lex_state = 5, .external_lex_state = 25}, - [974] = {.lex_state = 7}, - [975] = {.lex_state = 7}, - [976] = {.lex_state = 7}, + [971] = {.lex_state = 7}, + [972] = {.lex_state = 5, .external_lex_state = 27}, + [973] = {.lex_state = 7}, + [974] = {.lex_state = 5, .external_lex_state = 27}, + [975] = {.lex_state = 5, .external_lex_state = 27}, + [976] = {.lex_state = 5, .external_lex_state = 27}, [977] = {.lex_state = 7}, - [978] = {.lex_state = 13, .external_lex_state = 50}, - [979] = {.lex_state = 13, .external_lex_state = 50}, + [978] = {.lex_state = 5, .external_lex_state = 27}, + [979] = {.lex_state = 5, .external_lex_state = 25}, [980] = {.lex_state = 13, .external_lex_state = 50}, [981] = {.lex_state = 13, .external_lex_state = 50}, [982] = {.lex_state = 13, .external_lex_state = 50}, [983] = {.lex_state = 13, .external_lex_state = 50}, [984] = {.lex_state = 13, .external_lex_state = 50}, - [985] = {.lex_state = 13, .external_lex_state = 50}, - [986] = {.lex_state = 13, .external_lex_state = 50}, + [985] = {.lex_state = 10, .external_lex_state = 47}, + [986] = {.lex_state = 10, .external_lex_state = 47}, [987] = {.lex_state = 13, .external_lex_state = 50}, [988] = {.lex_state = 13, .external_lex_state = 50}, [989] = {.lex_state = 13, .external_lex_state = 50}, [990] = {.lex_state = 13, .external_lex_state = 50}, - [991] = {.lex_state = 13, .external_lex_state = 50}, - [992] = {.lex_state = 10, .external_lex_state = 47}, - [993] = {.lex_state = 13, .external_lex_state = 50}, - [994] = {.lex_state = 13, .external_lex_state = 50}, - [995] = {.lex_state = 10, .external_lex_state = 47}, - [996] = {.lex_state = 10, .external_lex_state = 47}, - [997] = {.lex_state = 10, .external_lex_state = 47}, + [991] = {.lex_state = 10, .external_lex_state = 47}, + [992] = {.lex_state = 13, .external_lex_state = 50}, + [993] = {.lex_state = 7, .external_lex_state = 51}, + [994] = {.lex_state = 10, .external_lex_state = 52}, + [995] = {.lex_state = 13, .external_lex_state = 50}, + [996] = {.lex_state = 13, .external_lex_state = 50}, + [997] = {.lex_state = 13, .external_lex_state = 50}, [998] = {.lex_state = 7, .external_lex_state = 51}, - [999] = {.lex_state = 7, .external_lex_state = 51}, + [999] = {.lex_state = 13, .external_lex_state = 50}, [1000] = {.lex_state = 13, .external_lex_state = 50}, - [1001] = {.lex_state = 13, .external_lex_state = 50}, + [1001] = {.lex_state = 10, .external_lex_state = 47}, [1002] = {.lex_state = 13, .external_lex_state = 50}, [1003] = {.lex_state = 13, .external_lex_state = 50}, [1004] = {.lex_state = 13, .external_lex_state = 50}, @@ -24503,9 +24517,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1007] = {.lex_state = 13, .external_lex_state = 50}, [1008] = {.lex_state = 13, .external_lex_state = 50}, [1009] = {.lex_state = 13, .external_lex_state = 50}, - [1010] = {.lex_state = 10, .external_lex_state = 52}, - [1011] = {.lex_state = 7}, - [1012] = {.lex_state = 7}, + [1010] = {.lex_state = 13, .external_lex_state = 50}, + [1011] = {.lex_state = 13, .external_lex_state = 50}, + [1012] = {.lex_state = 13, .external_lex_state = 50}, [1013] = {.lex_state = 7}, [1014] = {.lex_state = 7}, [1015] = {.lex_state = 7}, @@ -24525,251 +24539,251 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1029] = {.lex_state = 7}, [1030] = {.lex_state = 7}, [1031] = {.lex_state = 7}, - [1032] = {.lex_state = 13, .external_lex_state = 53}, - [1033] = {.lex_state = 13, .external_lex_state = 54}, + [1032] = {.lex_state = 7}, + [1033] = {.lex_state = 7}, [1034] = {.lex_state = 13, .external_lex_state = 53}, - [1035] = {.lex_state = 13, .external_lex_state = 53}, + [1035] = {.lex_state = 7}, [1036] = {.lex_state = 13, .external_lex_state = 53}, [1037] = {.lex_state = 13, .external_lex_state = 54}, [1038] = {.lex_state = 13, .external_lex_state = 54}, [1039] = {.lex_state = 13, .external_lex_state = 53}, - [1040] = {.lex_state = 13, .external_lex_state = 53}, + [1040] = {.lex_state = 13, .external_lex_state = 54}, [1041] = {.lex_state = 13, .external_lex_state = 54}, - [1042] = {.lex_state = 13, .external_lex_state = 54}, + [1042] = {.lex_state = 13, .external_lex_state = 53}, [1043] = {.lex_state = 13, .external_lex_state = 53}, - [1044] = {.lex_state = 13, .external_lex_state = 53}, - [1045] = {.lex_state = 13, .external_lex_state = 54}, - [1046] = {.lex_state = 13, .external_lex_state = 54}, + [1044] = {.lex_state = 7}, + [1045] = {.lex_state = 10, .external_lex_state = 35}, + [1046] = {.lex_state = 13, .external_lex_state = 53}, [1047] = {.lex_state = 13, .external_lex_state = 53}, - [1048] = {.lex_state = 7}, - [1049] = {.lex_state = 13, .external_lex_state = 53}, + [1048] = {.lex_state = 13, .external_lex_state = 54}, + [1049] = {.lex_state = 13, .external_lex_state = 54}, [1050] = {.lex_state = 13, .external_lex_state = 54}, [1051] = {.lex_state = 13, .external_lex_state = 53}, [1052] = {.lex_state = 13, .external_lex_state = 54}, - [1053] = {.lex_state = 10, .external_lex_state = 32}, + [1053] = {.lex_state = 13, .external_lex_state = 54}, [1054] = {.lex_state = 13, .external_lex_state = 53}, [1055] = {.lex_state = 13, .external_lex_state = 54}, - [1056] = {.lex_state = 7}, - [1057] = {.lex_state = 13, .external_lex_state = 54}, + [1056] = {.lex_state = 13, .external_lex_state = 53}, + [1057] = {.lex_state = 7, .external_lex_state = 55}, [1058] = {.lex_state = 13, .external_lex_state = 54}, [1059] = {.lex_state = 13, .external_lex_state = 54}, - [1060] = {.lex_state = 13, .external_lex_state = 53}, - [1061] = {.lex_state = 7}, - [1062] = {.lex_state = 13, .external_lex_state = 53}, + [1060] = {.lex_state = 7}, + [1061] = {.lex_state = 13, .external_lex_state = 53}, + [1062] = {.lex_state = 13, .external_lex_state = 54}, [1063] = {.lex_state = 13, .external_lex_state = 53}, [1064] = {.lex_state = 13, .external_lex_state = 54}, - [1065] = {.lex_state = 13, .external_lex_state = 54}, + [1065] = {.lex_state = 13, .external_lex_state = 53}, [1066] = {.lex_state = 13, .external_lex_state = 53}, [1067] = {.lex_state = 13, .external_lex_state = 54}, - [1068] = {.lex_state = 13, .external_lex_state = 53}, + [1068] = {.lex_state = 13, .external_lex_state = 54}, [1069] = {.lex_state = 13, .external_lex_state = 53}, - [1070] = {.lex_state = 13, .external_lex_state = 54}, - [1071] = {.lex_state = 13, .external_lex_state = 54}, - [1072] = {.lex_state = 13, .external_lex_state = 53}, - [1073] = {.lex_state = 7}, - [1074] = {.lex_state = 7, .external_lex_state = 55}, - [1075] = {.lex_state = 13, .external_lex_state = 53}, - [1076] = {.lex_state = 13, .external_lex_state = 54}, - [1077] = {.lex_state = 13, .external_lex_state = 54}, - [1078] = {.lex_state = 10, .external_lex_state = 35}, - [1079] = {.lex_state = 7, .external_lex_state = 51}, - [1080] = {.lex_state = 7}, - [1081] = {.lex_state = 7}, - [1082] = {.lex_state = 7}, - [1083] = {.lex_state = 7, .external_lex_state = 56}, - [1084] = {.lex_state = 7, .external_lex_state = 56}, - [1085] = {.lex_state = 7}, - [1086] = {.lex_state = 7, .external_lex_state = 56}, - [1087] = {.lex_state = 13, .external_lex_state = 54}, - [1088] = {.lex_state = 7, .external_lex_state = 56}, - [1089] = {.lex_state = 13, .external_lex_state = 57}, - [1090] = {.lex_state = 7}, - [1091] = {.lex_state = 7}, - [1092] = {.lex_state = 13, .external_lex_state = 57}, - [1093] = {.lex_state = 7, .external_lex_state = 51}, + [1070] = {.lex_state = 13, .external_lex_state = 53}, + [1071] = {.lex_state = 13, .external_lex_state = 53}, + [1072] = {.lex_state = 13, .external_lex_state = 54}, + [1073] = {.lex_state = 13, .external_lex_state = 54}, + [1074] = {.lex_state = 13, .external_lex_state = 53}, + [1075] = {.lex_state = 13, .external_lex_state = 54}, + [1076] = {.lex_state = 7}, + [1077] = {.lex_state = 10, .external_lex_state = 34}, + [1078] = {.lex_state = 13, .external_lex_state = 53}, + [1079] = {.lex_state = 13, .external_lex_state = 54}, + [1080] = {.lex_state = 13, .external_lex_state = 53}, + [1081] = {.lex_state = 13, .external_lex_state = 54}, + [1082] = {.lex_state = 13, .external_lex_state = 56}, + [1083] = {.lex_state = 7, .external_lex_state = 57}, + [1084] = {.lex_state = 7, .external_lex_state = 57}, + [1085] = {.lex_state = 13, .external_lex_state = 56}, + [1086] = {.lex_state = 7, .external_lex_state = 57}, + [1087] = {.lex_state = 7, .external_lex_state = 57}, + [1088] = {.lex_state = 7}, + [1089] = {.lex_state = 7}, + [1090] = {.lex_state = 13, .external_lex_state = 54}, + [1091] = {.lex_state = 10, .external_lex_state = 28}, + [1092] = {.lex_state = 7}, + [1093] = {.lex_state = 7}, [1094] = {.lex_state = 13, .external_lex_state = 53}, - [1095] = {.lex_state = 13, .external_lex_state = 54}, + [1095] = {.lex_state = 7, .external_lex_state = 51}, [1096] = {.lex_state = 7}, [1097] = {.lex_state = 7}, - [1098] = {.lex_state = 10, .external_lex_state = 29}, - [1099] = {.lex_state = 7, .external_lex_state = 51}, - [1100] = {.lex_state = 7}, - [1101] = {.lex_state = 13, .external_lex_state = 53}, - [1102] = {.lex_state = 13, .external_lex_state = 57}, - [1103] = {.lex_state = 7, .external_lex_state = 58}, - [1104] = {.lex_state = 13, .external_lex_state = 57}, - [1105] = {.lex_state = 10, .external_lex_state = 29}, - [1106] = {.lex_state = 11, .external_lex_state = 59}, - [1107] = {.lex_state = 14, .external_lex_state = 60}, - [1108] = {.lex_state = 14, .external_lex_state = 59}, - [1109] = {.lex_state = 14, .external_lex_state = 59}, + [1098] = {.lex_state = 7, .external_lex_state = 51}, + [1099] = {.lex_state = 7}, + [1100] = {.lex_state = 13, .external_lex_state = 56}, + [1101] = {.lex_state = 10, .external_lex_state = 28}, + [1102] = {.lex_state = 7, .external_lex_state = 58}, + [1103] = {.lex_state = 13, .external_lex_state = 56}, + [1104] = {.lex_state = 7}, + [1105] = {.lex_state = 7, .external_lex_state = 51}, + [1106] = {.lex_state = 13, .external_lex_state = 53}, + [1107] = {.lex_state = 7}, + [1108] = {.lex_state = 8, .external_lex_state = 59}, + [1109] = {.lex_state = 12, .external_lex_state = 59}, [1110] = {.lex_state = 8, .external_lex_state = 59}, - [1111] = {.lex_state = 11, .external_lex_state = 59}, - [1112] = {.lex_state = 12, .external_lex_state = 59}, - [1113] = {.lex_state = 8, .external_lex_state = 59}, + [1111] = {.lex_state = 8, .external_lex_state = 51}, + [1112] = {.lex_state = 14, .external_lex_state = 59}, + [1113] = {.lex_state = 11, .external_lex_state = 59}, [1114] = {.lex_state = 11, .external_lex_state = 59}, - [1115] = {.lex_state = 11, .external_lex_state = 59}, - [1116] = {.lex_state = 12, .external_lex_state = 59}, - [1117] = {.lex_state = 8, .external_lex_state = 51}, - [1118] = {.lex_state = 14, .external_lex_state = 59}, - [1119] = {.lex_state = 12, .external_lex_state = 59}, - [1120] = {.lex_state = 8, .external_lex_state = 59}, - [1121] = {.lex_state = 13, .external_lex_state = 61}, - [1122] = {.lex_state = 11, .external_lex_state = 59}, - [1123] = {.lex_state = 8, .external_lex_state = 59}, - [1124] = {.lex_state = 12, .external_lex_state = 59}, - [1125] = {.lex_state = 11, .external_lex_state = 59}, - [1126] = {.lex_state = 8, .external_lex_state = 60}, - [1127] = {.lex_state = 11, .external_lex_state = 60}, - [1128] = {.lex_state = 12, .external_lex_state = 60}, - [1129] = {.lex_state = 13, .external_lex_state = 62}, - [1130] = {.lex_state = 7}, + [1115] = {.lex_state = 12, .external_lex_state = 59}, + [1116] = {.lex_state = 11, .external_lex_state = 59}, + [1117] = {.lex_state = 13, .external_lex_state = 59}, + [1118] = {.lex_state = 12, .external_lex_state = 59}, + [1119] = {.lex_state = 8, .external_lex_state = 59}, + [1120] = {.lex_state = 7, .external_lex_state = 60}, + [1121] = {.lex_state = 14, .external_lex_state = 59}, + [1122] = {.lex_state = 8, .external_lex_state = 51}, + [1123] = {.lex_state = 14, .external_lex_state = 59}, + [1124] = {.lex_state = 8, .external_lex_state = 59}, + [1125] = {.lex_state = 8, .external_lex_state = 51}, + [1126] = {.lex_state = 14, .external_lex_state = 59}, + [1127] = {.lex_state = 8, .external_lex_state = 59}, + [1128] = {.lex_state = 8, .external_lex_state = 59}, + [1129] = {.lex_state = 11, .external_lex_state = 59}, + [1130] = {.lex_state = 11, .external_lex_state = 59}, [1131] = {.lex_state = 12, .external_lex_state = 59}, - [1132] = {.lex_state = 11, .external_lex_state = 59}, - [1133] = {.lex_state = 8, .external_lex_state = 59}, + [1132] = {.lex_state = 12, .external_lex_state = 59}, + [1133] = {.lex_state = 14, .external_lex_state = 59}, [1134] = {.lex_state = 14, .external_lex_state = 59}, - [1135] = {.lex_state = 14, .external_lex_state = 59}, + [1135] = {.lex_state = 8, .external_lex_state = 59}, [1136] = {.lex_state = 14, .external_lex_state = 59}, - [1137] = {.lex_state = 14, .external_lex_state = 59}, - [1138] = {.lex_state = 14, .external_lex_state = 59}, - [1139] = {.lex_state = 8, .external_lex_state = 59}, + [1137] = {.lex_state = 8, .external_lex_state = 59}, + [1138] = {.lex_state = 11, .external_lex_state = 59}, + [1139] = {.lex_state = 14, .external_lex_state = 59}, [1140] = {.lex_state = 8, .external_lex_state = 59}, [1141] = {.lex_state = 14, .external_lex_state = 59}, - [1142] = {.lex_state = 7, .external_lex_state = 63}, - [1143] = {.lex_state = 12, .external_lex_state = 59}, - [1144] = {.lex_state = 7, .external_lex_state = 63}, - [1145] = {.lex_state = 7, .external_lex_state = 63}, - [1146] = {.lex_state = 11, .external_lex_state = 59}, - [1147] = {.lex_state = 7, .external_lex_state = 63}, - [1148] = {.lex_state = 13, .external_lex_state = 59}, - [1149] = {.lex_state = 13, .external_lex_state = 64}, - [1150] = {.lex_state = 12, .external_lex_state = 59}, - [1151] = {.lex_state = 11, .external_lex_state = 59}, - [1152] = {.lex_state = 8, .external_lex_state = 59}, - [1153] = {.lex_state = 8, .external_lex_state = 59}, - [1154] = {.lex_state = 14, .external_lex_state = 59}, - [1155] = {.lex_state = 11, .external_lex_state = 59}, + [1142] = {.lex_state = 7}, + [1143] = {.lex_state = 14, .external_lex_state = 59}, + [1144] = {.lex_state = 12, .external_lex_state = 59}, + [1145] = {.lex_state = 11, .external_lex_state = 59}, + [1146] = {.lex_state = 12, .external_lex_state = 59}, + [1147] = {.lex_state = 11, .external_lex_state = 59}, + [1148] = {.lex_state = 8, .external_lex_state = 59}, + [1149] = {.lex_state = 7}, + [1150] = {.lex_state = 11, .external_lex_state = 59}, + [1151] = {.lex_state = 7}, + [1152] = {.lex_state = 7, .external_lex_state = 60}, + [1153] = {.lex_state = 7, .external_lex_state = 60}, + [1154] = {.lex_state = 7, .external_lex_state = 60}, + [1155] = {.lex_state = 7, .external_lex_state = 60}, [1156] = {.lex_state = 14, .external_lex_state = 59}, - [1157] = {.lex_state = 12, .external_lex_state = 59}, - [1158] = {.lex_state = 13, .external_lex_state = 59}, - [1159] = {.lex_state = 12, .external_lex_state = 59}, - [1160] = {.lex_state = 8, .external_lex_state = 59}, - [1161] = {.lex_state = 11, .external_lex_state = 59}, - [1162] = {.lex_state = 12, .external_lex_state = 59}, - [1163] = {.lex_state = 11, .external_lex_state = 59}, - [1164] = {.lex_state = 8, .external_lex_state = 59}, + [1157] = {.lex_state = 7, .external_lex_state = 60}, + [1158] = {.lex_state = 12, .external_lex_state = 59}, + [1159] = {.lex_state = 7, .external_lex_state = 60}, + [1160] = {.lex_state = 7, .external_lex_state = 60}, + [1161] = {.lex_state = 7, .external_lex_state = 60}, + [1162] = {.lex_state = 8, .external_lex_state = 59}, + [1163] = {.lex_state = 7, .external_lex_state = 60}, + [1164] = {.lex_state = 11, .external_lex_state = 59}, [1165] = {.lex_state = 14, .external_lex_state = 59}, - [1166] = {.lex_state = 7}, - [1167] = {.lex_state = 7}, - [1168] = {.lex_state = 12, .external_lex_state = 59}, - [1169] = {.lex_state = 11, .external_lex_state = 59}, - [1170] = {.lex_state = 8, .external_lex_state = 59}, - [1171] = {.lex_state = 14, .external_lex_state = 59}, - [1172] = {.lex_state = 12, .external_lex_state = 59}, - [1173] = {.lex_state = 7}, - [1174] = {.lex_state = 11, .external_lex_state = 59}, - [1175] = {.lex_state = 8, .external_lex_state = 59}, - [1176] = {.lex_state = 14, .external_lex_state = 59}, - [1177] = {.lex_state = 12, .external_lex_state = 59}, - [1178] = {.lex_state = 11, .external_lex_state = 59}, - [1179] = {.lex_state = 12, .external_lex_state = 59}, - [1180] = {.lex_state = 8, .external_lex_state = 59}, - [1181] = {.lex_state = 8, .external_lex_state = 51}, - [1182] = {.lex_state = 12, .external_lex_state = 59}, - [1183] = {.lex_state = 7, .external_lex_state = 63}, - [1184] = {.lex_state = 11, .external_lex_state = 59}, - [1185] = {.lex_state = 11, .external_lex_state = 59}, - [1186] = {.lex_state = 8, .external_lex_state = 59}, - [1187] = {.lex_state = 12, .external_lex_state = 59}, - [1188] = {.lex_state = 12, .external_lex_state = 59}, + [1166] = {.lex_state = 8, .external_lex_state = 59}, + [1167] = {.lex_state = 7, .external_lex_state = 60}, + [1168] = {.lex_state = 7, .external_lex_state = 60}, + [1169] = {.lex_state = 8, .external_lex_state = 59}, + [1170] = {.lex_state = 14, .external_lex_state = 61}, + [1171] = {.lex_state = 11, .external_lex_state = 59}, + [1172] = {.lex_state = 7, .external_lex_state = 60}, + [1173] = {.lex_state = 7, .external_lex_state = 60}, + [1174] = {.lex_state = 7, .external_lex_state = 60}, + [1175] = {.lex_state = 7, .external_lex_state = 60}, + [1176] = {.lex_state = 12, .external_lex_state = 59}, + [1177] = {.lex_state = 7, .external_lex_state = 60}, + [1178] = {.lex_state = 12, .external_lex_state = 59}, + [1179] = {.lex_state = 8, .external_lex_state = 51}, + [1180] = {.lex_state = 14, .external_lex_state = 59}, + [1181] = {.lex_state = 8, .external_lex_state = 59}, + [1182] = {.lex_state = 11, .external_lex_state = 59}, + [1183] = {.lex_state = 12, .external_lex_state = 59}, + [1184] = {.lex_state = 7, .external_lex_state = 60}, + [1185] = {.lex_state = 12, .external_lex_state = 59}, + [1186] = {.lex_state = 11, .external_lex_state = 59}, + [1187] = {.lex_state = 13, .external_lex_state = 62}, + [1188] = {.lex_state = 7, .external_lex_state = 60}, [1189] = {.lex_state = 8, .external_lex_state = 51}, - [1190] = {.lex_state = 8, .external_lex_state = 59}, - [1191] = {.lex_state = 11, .external_lex_state = 59}, - [1192] = {.lex_state = 8, .external_lex_state = 59}, - [1193] = {.lex_state = 14, .external_lex_state = 59}, - [1194] = {.lex_state = 7}, - [1195] = {.lex_state = 13, .external_lex_state = 59}, - [1196] = {.lex_state = 13, .external_lex_state = 59}, - [1197] = {.lex_state = 7}, - [1198] = {.lex_state = 12, .external_lex_state = 59}, - [1199] = {.lex_state = 8, .external_lex_state = 59}, - [1200] = {.lex_state = 14, .external_lex_state = 59}, - [1201] = {.lex_state = 7, .external_lex_state = 63}, - [1202] = {.lex_state = 14, .external_lex_state = 59}, - [1203] = {.lex_state = 7}, - [1204] = {.lex_state = 12, .external_lex_state = 59}, - [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 11, .external_lex_state = 59}, - [1207] = {.lex_state = 8, .external_lex_state = 59}, - [1208] = {.lex_state = 14, .external_lex_state = 59}, - [1209] = {.lex_state = 12, .external_lex_state = 59}, - [1210] = {.lex_state = 11, .external_lex_state = 59}, - [1211] = {.lex_state = 13, .external_lex_state = 59}, - [1212] = {.lex_state = 8, .external_lex_state = 51}, - [1213] = {.lex_state = 8, .external_lex_state = 59}, - [1214] = {.lex_state = 14, .external_lex_state = 59}, - [1215] = {.lex_state = 14, .external_lex_state = 59}, - [1216] = {.lex_state = 11, .external_lex_state = 59}, - [1217] = {.lex_state = 8, .external_lex_state = 51}, - [1218] = {.lex_state = 8, .external_lex_state = 59}, - [1219] = {.lex_state = 14, .external_lex_state = 59}, - [1220] = {.lex_state = 7, .external_lex_state = 63}, - [1221] = {.lex_state = 12, .external_lex_state = 59}, - [1222] = {.lex_state = 7, .external_lex_state = 63}, - [1223] = {.lex_state = 7, .external_lex_state = 63}, - [1224] = {.lex_state = 7, .external_lex_state = 63}, - [1225] = {.lex_state = 7, .external_lex_state = 63}, - [1226] = {.lex_state = 12, .external_lex_state = 59}, - [1227] = {.lex_state = 11, .external_lex_state = 59}, - [1228] = {.lex_state = 7, .external_lex_state = 63}, - [1229] = {.lex_state = 7, .external_lex_state = 63}, - [1230] = {.lex_state = 7, .external_lex_state = 63}, - [1231] = {.lex_state = 7, .external_lex_state = 63}, - [1232] = {.lex_state = 8, .external_lex_state = 51}, - [1233] = {.lex_state = 7, .external_lex_state = 63}, - [1234] = {.lex_state = 7, .external_lex_state = 63}, - [1235] = {.lex_state = 7, .external_lex_state = 63}, - [1236] = {.lex_state = 7, .external_lex_state = 63}, - [1237] = {.lex_state = 7, .external_lex_state = 63}, - [1238] = {.lex_state = 7, .external_lex_state = 63}, - [1239] = {.lex_state = 7, .external_lex_state = 63}, - [1240] = {.lex_state = 7, .external_lex_state = 63}, - [1241] = {.lex_state = 7, .external_lex_state = 63}, - [1242] = {.lex_state = 7, .external_lex_state = 63}, - [1243] = {.lex_state = 7, .external_lex_state = 63}, - [1244] = {.lex_state = 7, .external_lex_state = 63}, - [1245] = {.lex_state = 7, .external_lex_state = 63}, - [1246] = {.lex_state = 7, .external_lex_state = 63}, - [1247] = {.lex_state = 8, .external_lex_state = 59}, - [1248] = {.lex_state = 7, .external_lex_state = 63}, - [1249] = {.lex_state = 7, .external_lex_state = 63}, - [1250] = {.lex_state = 7, .external_lex_state = 63}, - [1251] = {.lex_state = 7, .external_lex_state = 63}, - [1252] = {.lex_state = 7, .external_lex_state = 63}, - [1253] = {.lex_state = 14, .external_lex_state = 59}, - [1254] = {.lex_state = 12, .external_lex_state = 59}, - [1255] = {.lex_state = 11, .external_lex_state = 59}, - [1256] = {.lex_state = 7, .external_lex_state = 63}, - [1257] = {.lex_state = 7, .external_lex_state = 63}, - [1258] = {.lex_state = 7, .external_lex_state = 63}, - [1259] = {.lex_state = 7, .external_lex_state = 63}, - [1260] = {.lex_state = 7, .external_lex_state = 63}, - [1261] = {.lex_state = 7, .external_lex_state = 63}, - [1262] = {.lex_state = 7, .external_lex_state = 63}, - [1263] = {.lex_state = 7, .external_lex_state = 63}, + [1190] = {.lex_state = 7}, + [1191] = {.lex_state = 14, .external_lex_state = 59}, + [1192] = {.lex_state = 13, .external_lex_state = 59}, + [1193] = {.lex_state = 8, .external_lex_state = 59}, + [1194] = {.lex_state = 12, .external_lex_state = 59}, + [1195] = {.lex_state = 7, .external_lex_state = 60}, + [1196] = {.lex_state = 7}, + [1197] = {.lex_state = 7, .external_lex_state = 60}, + [1198] = {.lex_state = 11, .external_lex_state = 59}, + [1199] = {.lex_state = 7, .external_lex_state = 60}, + [1200] = {.lex_state = 13, .external_lex_state = 63}, + [1201] = {.lex_state = 14, .external_lex_state = 59}, + [1202] = {.lex_state = 7, .external_lex_state = 60}, + [1203] = {.lex_state = 8, .external_lex_state = 61}, + [1204] = {.lex_state = 7, .external_lex_state = 60}, + [1205] = {.lex_state = 7, .external_lex_state = 60}, + [1206] = {.lex_state = 12, .external_lex_state = 59}, + [1207] = {.lex_state = 7, .external_lex_state = 60}, + [1208] = {.lex_state = 7, .external_lex_state = 60}, + [1209] = {.lex_state = 7, .external_lex_state = 60}, + [1210] = {.lex_state = 7, .external_lex_state = 60}, + [1211] = {.lex_state = 7}, + [1212] = {.lex_state = 7, .external_lex_state = 60}, + [1213] = {.lex_state = 7}, + [1214] = {.lex_state = 7, .external_lex_state = 60}, + [1215] = {.lex_state = 11, .external_lex_state = 59}, + [1216] = {.lex_state = 7, .external_lex_state = 60}, + [1217] = {.lex_state = 7, .external_lex_state = 60}, + [1218] = {.lex_state = 7, .external_lex_state = 60}, + [1219] = {.lex_state = 7, .external_lex_state = 60}, + [1220] = {.lex_state = 14, .external_lex_state = 59}, + [1221] = {.lex_state = 11, .external_lex_state = 59}, + [1222] = {.lex_state = 14, .external_lex_state = 59}, + [1223] = {.lex_state = 8, .external_lex_state = 59}, + [1224] = {.lex_state = 7, .external_lex_state = 60}, + [1225] = {.lex_state = 7, .external_lex_state = 60}, + [1226] = {.lex_state = 7, .external_lex_state = 60}, + [1227] = {.lex_state = 7, .external_lex_state = 60}, + [1228] = {.lex_state = 11, .external_lex_state = 59}, + [1229] = {.lex_state = 14, .external_lex_state = 59}, + [1230] = {.lex_state = 11, .external_lex_state = 61}, + [1231] = {.lex_state = 12, .external_lex_state = 61}, + [1232] = {.lex_state = 12, .external_lex_state = 59}, + [1233] = {.lex_state = 13, .external_lex_state = 59}, + [1234] = {.lex_state = 12, .external_lex_state = 59}, + [1235] = {.lex_state = 14, .external_lex_state = 59}, + [1236] = {.lex_state = 11, .external_lex_state = 59}, + [1237] = {.lex_state = 8, .external_lex_state = 59}, + [1238] = {.lex_state = 12, .external_lex_state = 59}, + [1239] = {.lex_state = 7, .external_lex_state = 60}, + [1240] = {.lex_state = 11, .external_lex_state = 59}, + [1241] = {.lex_state = 8, .external_lex_state = 59}, + [1242] = {.lex_state = 8, .external_lex_state = 59}, + [1243] = {.lex_state = 14, .external_lex_state = 59}, + [1244] = {.lex_state = 13, .external_lex_state = 64}, + [1245] = {.lex_state = 12, .external_lex_state = 59}, + [1246] = {.lex_state = 12, .external_lex_state = 59}, + [1247] = {.lex_state = 12, .external_lex_state = 59}, + [1248] = {.lex_state = 11, .external_lex_state = 59}, + [1249] = {.lex_state = 8, .external_lex_state = 59}, + [1250] = {.lex_state = 14, .external_lex_state = 59}, + [1251] = {.lex_state = 7, .external_lex_state = 60}, + [1252] = {.lex_state = 13, .external_lex_state = 59}, + [1253] = {.lex_state = 7}, + [1254] = {.lex_state = 11, .external_lex_state = 59}, + [1255] = {.lex_state = 13, .external_lex_state = 59}, + [1256] = {.lex_state = 12, .external_lex_state = 59}, + [1257] = {.lex_state = 8, .external_lex_state = 51}, + [1258] = {.lex_state = 8, .external_lex_state = 59}, + [1259] = {.lex_state = 11, .external_lex_state = 59}, + [1260] = {.lex_state = 12, .external_lex_state = 59}, + [1261] = {.lex_state = 11, .external_lex_state = 59}, + [1262] = {.lex_state = 8, .external_lex_state = 59}, + [1263] = {.lex_state = 14, .external_lex_state = 59}, [1264] = {.lex_state = 14, .external_lex_state = 59}, [1265] = {.lex_state = 8, .external_lex_state = 59}, - [1266] = {.lex_state = 13, .external_lex_state = 59}, - [1267] = {.lex_state = 13, .external_lex_state = 59}, - [1268] = {.lex_state = 8}, + [1266] = {.lex_state = 7, .external_lex_state = 60}, + [1267] = {.lex_state = 12, .external_lex_state = 59}, + [1268] = {.lex_state = 13, .external_lex_state = 59}, [1269] = {.lex_state = 8}, - [1270] = {.lex_state = 11}, - [1271] = {.lex_state = 7}, - [1272] = {.lex_state = 7}, + [1270] = {.lex_state = 13, .external_lex_state = 59}, + [1271] = {.lex_state = 13, .external_lex_state = 59}, + [1272] = {.lex_state = 13, .external_lex_state = 59}, [1273] = {.lex_state = 7}, - [1274] = {.lex_state = 7}, - [1275] = {.lex_state = 7}, - [1276] = {.lex_state = 12}, + [1274] = {.lex_state = 13, .external_lex_state = 59}, + [1275] = {.lex_state = 13, .external_lex_state = 59}, + [1276] = {.lex_state = 7}, [1277] = {.lex_state = 13, .external_lex_state = 59}, [1278] = {.lex_state = 13, .external_lex_state = 59}, [1279] = {.lex_state = 13, .external_lex_state = 59}, @@ -24778,10 +24792,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1282] = {.lex_state = 13, .external_lex_state = 59}, [1283] = {.lex_state = 13, .external_lex_state = 59}, [1284] = {.lex_state = 13, .external_lex_state = 59}, - [1285] = {.lex_state = 11, .external_lex_state = 58}, + [1285] = {.lex_state = 13, .external_lex_state = 59}, [1286] = {.lex_state = 13, .external_lex_state = 59}, - [1287] = {.lex_state = 13, .external_lex_state = 59}, - [1288] = {.lex_state = 13, .external_lex_state = 59}, + [1287] = {.lex_state = 11, .external_lex_state = 58}, + [1288] = {.lex_state = 13, .external_lex_state = 65}, [1289] = {.lex_state = 13, .external_lex_state = 59}, [1290] = {.lex_state = 13, .external_lex_state = 59}, [1291] = {.lex_state = 13, .external_lex_state = 59}, @@ -24790,16 +24804,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1294] = {.lex_state = 13, .external_lex_state = 59}, [1295] = {.lex_state = 13, .external_lex_state = 59}, [1296] = {.lex_state = 13, .external_lex_state = 59}, - [1297] = {.lex_state = 13, .external_lex_state = 59}, - [1298] = {.lex_state = 8}, + [1297] = {.lex_state = 13, .external_lex_state = 66}, + [1298] = {.lex_state = 13, .external_lex_state = 59}, [1299] = {.lex_state = 13, .external_lex_state = 59}, - [1300] = {.lex_state = 8}, - [1301] = {.lex_state = 8}, + [1300] = {.lex_state = 13, .external_lex_state = 59}, + [1301] = {.lex_state = 13, .external_lex_state = 59}, [1302] = {.lex_state = 13, .external_lex_state = 59}, [1303] = {.lex_state = 13, .external_lex_state = 59}, [1304] = {.lex_state = 13, .external_lex_state = 59}, - [1305] = {.lex_state = 13, .external_lex_state = 59}, - [1306] = {.lex_state = 13, .external_lex_state = 59}, + [1305] = {.lex_state = 8, .external_lex_state = 58}, + [1306] = {.lex_state = 8}, [1307] = {.lex_state = 13, .external_lex_state = 59}, [1308] = {.lex_state = 13, .external_lex_state = 59}, [1309] = {.lex_state = 13, .external_lex_state = 59}, @@ -24809,50 +24823,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1313] = {.lex_state = 13, .external_lex_state = 59}, [1314] = {.lex_state = 13, .external_lex_state = 59}, [1315] = {.lex_state = 13, .external_lex_state = 59}, - [1316] = {.lex_state = 7}, - [1317] = {.lex_state = 7}, + [1316] = {.lex_state = 13, .external_lex_state = 59}, + [1317] = {.lex_state = 13, .external_lex_state = 59}, [1318] = {.lex_state = 13, .external_lex_state = 59}, [1319] = {.lex_state = 13, .external_lex_state = 59}, [1320] = {.lex_state = 13, .external_lex_state = 59}, - [1321] = {.lex_state = 13, .external_lex_state = 59}, + [1321] = {.lex_state = 8}, [1322] = {.lex_state = 13, .external_lex_state = 59}, [1323] = {.lex_state = 13, .external_lex_state = 59}, [1324] = {.lex_state = 13, .external_lex_state = 59}, [1325] = {.lex_state = 13, .external_lex_state = 59}, [1326] = {.lex_state = 13, .external_lex_state = 59}, [1327] = {.lex_state = 13, .external_lex_state = 59}, - [1328] = {.lex_state = 8}, - [1329] = {.lex_state = 8}, + [1328] = {.lex_state = 7}, + [1329] = {.lex_state = 13, .external_lex_state = 59}, [1330] = {.lex_state = 13, .external_lex_state = 59}, [1331] = {.lex_state = 13, .external_lex_state = 59}, [1332] = {.lex_state = 13, .external_lex_state = 59}, - [1333] = {.lex_state = 13, .external_lex_state = 65}, - [1334] = {.lex_state = 13, .external_lex_state = 59}, - [1335] = {.lex_state = 13, .external_lex_state = 59}, - [1336] = {.lex_state = 13, .external_lex_state = 59}, + [1333] = {.lex_state = 13, .external_lex_state = 59}, + [1334] = {.lex_state = 13, .external_lex_state = 67}, + [1335] = {.lex_state = 13}, + [1336] = {.lex_state = 13}, [1337] = {.lex_state = 13, .external_lex_state = 59}, - [1338] = {.lex_state = 13, .external_lex_state = 59}, + [1338] = {.lex_state = 12}, [1339] = {.lex_state = 13, .external_lex_state = 59}, [1340] = {.lex_state = 13, .external_lex_state = 59}, [1341] = {.lex_state = 13, .external_lex_state = 59}, [1342] = {.lex_state = 13, .external_lex_state = 59}, - [1343] = {.lex_state = 13, .external_lex_state = 59}, - [1344] = {.lex_state = 8, .external_lex_state = 58}, + [1343] = {.lex_state = 7}, + [1344] = {.lex_state = 13, .external_lex_state = 59}, [1345] = {.lex_state = 13, .external_lex_state = 59}, - [1346] = {.lex_state = 7, .external_lex_state = 66}, - [1347] = {.lex_state = 7, .external_lex_state = 66}, + [1346] = {.lex_state = 13, .external_lex_state = 59}, + [1347] = {.lex_state = 13, .external_lex_state = 59}, [1348] = {.lex_state = 13, .external_lex_state = 59}, - [1349] = {.lex_state = 13, .external_lex_state = 59}, + [1349] = {.lex_state = 8}, [1350] = {.lex_state = 13, .external_lex_state = 59}, - [1351] = {.lex_state = 13, .external_lex_state = 59}, + [1351] = {.lex_state = 11}, [1352] = {.lex_state = 13, .external_lex_state = 59}, [1353] = {.lex_state = 13, .external_lex_state = 59}, [1354] = {.lex_state = 13, .external_lex_state = 59}, [1355] = {.lex_state = 13, .external_lex_state = 59}, - [1356] = {.lex_state = 13, .external_lex_state = 59}, - [1357] = {.lex_state = 13, .external_lex_state = 59}, - [1358] = {.lex_state = 7}, - [1359] = {.lex_state = 7}, + [1356] = {.lex_state = 8}, + [1357] = {.lex_state = 8}, + [1358] = {.lex_state = 13, .external_lex_state = 59}, + [1359] = {.lex_state = 13, .external_lex_state = 59}, [1360] = {.lex_state = 13, .external_lex_state = 59}, [1361] = {.lex_state = 13, .external_lex_state = 59}, [1362] = {.lex_state = 13, .external_lex_state = 59}, @@ -24860,560 +24874,560 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1364] = {.lex_state = 13, .external_lex_state = 59}, [1365] = {.lex_state = 13, .external_lex_state = 59}, [1366] = {.lex_state = 13, .external_lex_state = 59}, - [1367] = {.lex_state = 13, .external_lex_state = 59}, + [1367] = {.lex_state = 13}, [1368] = {.lex_state = 8}, - [1369] = {.lex_state = 13, .external_lex_state = 59}, + [1369] = {.lex_state = 13}, [1370] = {.lex_state = 13, .external_lex_state = 59}, [1371] = {.lex_state = 13, .external_lex_state = 59}, [1372] = {.lex_state = 13, .external_lex_state = 59}, [1373] = {.lex_state = 13, .external_lex_state = 59}, [1374] = {.lex_state = 13, .external_lex_state = 59}, [1375] = {.lex_state = 13, .external_lex_state = 59}, - [1376] = {.lex_state = 13, .external_lex_state = 59}, + [1376] = {.lex_state = 11}, [1377] = {.lex_state = 13, .external_lex_state = 59}, [1378] = {.lex_state = 13, .external_lex_state = 59}, [1379] = {.lex_state = 13, .external_lex_state = 59}, [1380] = {.lex_state = 13, .external_lex_state = 59}, - [1381] = {.lex_state = 13, .external_lex_state = 59}, - [1382] = {.lex_state = 13, .external_lex_state = 59}, + [1381] = {.lex_state = 13}, + [1382] = {.lex_state = 13}, [1383] = {.lex_state = 13, .external_lex_state = 59}, - [1384] = {.lex_state = 13, .external_lex_state = 59}, + [1384] = {.lex_state = 13, .external_lex_state = 65}, [1385] = {.lex_state = 13, .external_lex_state = 59}, [1386] = {.lex_state = 13, .external_lex_state = 59}, [1387] = {.lex_state = 13, .external_lex_state = 59}, [1388] = {.lex_state = 13, .external_lex_state = 59}, - [1389] = {.lex_state = 13, .external_lex_state = 59}, + [1389] = {.lex_state = 7, .external_lex_state = 68}, [1390] = {.lex_state = 13, .external_lex_state = 59}, - [1391] = {.lex_state = 8}, + [1391] = {.lex_state = 13, .external_lex_state = 59}, [1392] = {.lex_state = 13, .external_lex_state = 59}, - [1393] = {.lex_state = 8}, - [1394] = {.lex_state = 8}, - [1395] = {.lex_state = 7}, - [1396] = {.lex_state = 13}, - [1397] = {.lex_state = 13}, + [1393] = {.lex_state = 13, .external_lex_state = 59}, + [1394] = {.lex_state = 13, .external_lex_state = 59}, + [1395] = {.lex_state = 13, .external_lex_state = 59}, + [1396] = {.lex_state = 8}, + [1397] = {.lex_state = 13, .external_lex_state = 59}, [1398] = {.lex_state = 13, .external_lex_state = 59}, [1399] = {.lex_state = 8}, [1400] = {.lex_state = 8}, - [1401] = {.lex_state = 13, .external_lex_state = 59}, + [1401] = {.lex_state = 12}, [1402] = {.lex_state = 13, .external_lex_state = 59}, - [1403] = {.lex_state = 13, .external_lex_state = 59}, - [1404] = {.lex_state = 12, .external_lex_state = 58}, - [1405] = {.lex_state = 13, .external_lex_state = 59}, - [1406] = {.lex_state = 13, .external_lex_state = 59}, - [1407] = {.lex_state = 12}, + [1403] = {.lex_state = 8}, + [1404] = {.lex_state = 13, .external_lex_state = 59}, + [1405] = {.lex_state = 8}, + [1406] = {.lex_state = 12, .external_lex_state = 58}, + [1407] = {.lex_state = 13, .external_lex_state = 59}, [1408] = {.lex_state = 13, .external_lex_state = 59}, - [1409] = {.lex_state = 11}, - [1410] = {.lex_state = 8}, - [1411] = {.lex_state = 8}, - [1412] = {.lex_state = 13}, + [1409] = {.lex_state = 13, .external_lex_state = 59}, + [1410] = {.lex_state = 12}, + [1411] = {.lex_state = 13, .external_lex_state = 61}, + [1412] = {.lex_state = 13, .external_lex_state = 59}, [1413] = {.lex_state = 13, .external_lex_state = 59}, [1414] = {.lex_state = 13, .external_lex_state = 59}, - [1415] = {.lex_state = 13, .external_lex_state = 59}, - [1416] = {.lex_state = 13, .external_lex_state = 59}, - [1417] = {.lex_state = 13, .external_lex_state = 59}, - [1418] = {.lex_state = 13, .external_lex_state = 59}, - [1419] = {.lex_state = 13, .external_lex_state = 59}, - [1420] = {.lex_state = 13, .external_lex_state = 59}, + [1415] = {.lex_state = 13, .external_lex_state = 65}, + [1416] = {.lex_state = 7}, + [1417] = {.lex_state = 13, .external_lex_state = 65}, + [1418] = {.lex_state = 8}, + [1419] = {.lex_state = 7}, + [1420] = {.lex_state = 13, .external_lex_state = 50}, [1421] = {.lex_state = 13, .external_lex_state = 59}, - [1422] = {.lex_state = 13, .external_lex_state = 59}, + [1422] = {.lex_state = 12}, [1423] = {.lex_state = 13, .external_lex_state = 59}, [1424] = {.lex_state = 13, .external_lex_state = 59}, - [1425] = {.lex_state = 13, .external_lex_state = 67}, + [1425] = {.lex_state = 13, .external_lex_state = 59}, [1426] = {.lex_state = 8}, [1427] = {.lex_state = 13, .external_lex_state = 59}, - [1428] = {.lex_state = 13}, + [1428] = {.lex_state = 13, .external_lex_state = 59}, [1429] = {.lex_state = 13, .external_lex_state = 59}, - [1430] = {.lex_state = 13}, - [1431] = {.lex_state = 8}, - [1432] = {.lex_state = 8}, - [1433] = {.lex_state = 13}, - [1434] = {.lex_state = 13, .external_lex_state = 59}, - [1435] = {.lex_state = 13, .external_lex_state = 59}, + [1430] = {.lex_state = 13, .external_lex_state = 50}, + [1431] = {.lex_state = 12, .external_lex_state = 69}, + [1432] = {.lex_state = 13, .external_lex_state = 59}, + [1433] = {.lex_state = 13, .external_lex_state = 50}, + [1434] = {.lex_state = 13, .external_lex_state = 50}, + [1435] = {.lex_state = 7}, [1436] = {.lex_state = 13, .external_lex_state = 59}, - [1437] = {.lex_state = 8}, - [1438] = {.lex_state = 8}, - [1439] = {.lex_state = 13, .external_lex_state = 60}, - [1440] = {.lex_state = 13, .external_lex_state = 59}, - [1441] = {.lex_state = 13, .external_lex_state = 59}, - [1442] = {.lex_state = 12}, + [1437] = {.lex_state = 13, .external_lex_state = 59}, + [1438] = {.lex_state = 12, .external_lex_state = 69}, + [1439] = {.lex_state = 13, .external_lex_state = 59}, + [1440] = {.lex_state = 11, .external_lex_state = 69}, + [1441] = {.lex_state = 12, .external_lex_state = 69}, + [1442] = {.lex_state = 12, .external_lex_state = 69}, [1443] = {.lex_state = 13, .external_lex_state = 59}, - [1444] = {.lex_state = 11}, - [1445] = {.lex_state = 8}, - [1446] = {.lex_state = 8}, - [1447] = {.lex_state = 11}, - [1448] = {.lex_state = 12}, - [1449] = {.lex_state = 13, .external_lex_state = 67}, - [1450] = {.lex_state = 13, .external_lex_state = 67}, - [1451] = {.lex_state = 13, .external_lex_state = 67}, - [1452] = {.lex_state = 13, .external_lex_state = 68}, - [1453] = {.lex_state = 13, .external_lex_state = 50}, - [1454] = {.lex_state = 13, .external_lex_state = 50}, - [1455] = {.lex_state = 12, .external_lex_state = 69}, - [1456] = {.lex_state = 13, .external_lex_state = 50}, - [1457] = {.lex_state = 13, .external_lex_state = 50}, - [1458] = {.lex_state = 12, .external_lex_state = 69}, - [1459] = {.lex_state = 11, .external_lex_state = 69}, - [1460] = {.lex_state = 12, .external_lex_state = 69}, - [1461] = {.lex_state = 12, .external_lex_state = 69}, - [1462] = {.lex_state = 11, .external_lex_state = 69}, - [1463] = {.lex_state = 8, .external_lex_state = 69}, - [1464] = {.lex_state = 11, .external_lex_state = 69}, - [1465] = {.lex_state = 11, .external_lex_state = 69}, - [1466] = {.lex_state = 8, .external_lex_state = 69}, - [1467] = {.lex_state = 8, .external_lex_state = 69}, - [1468] = {.lex_state = 8, .external_lex_state = 69}, + [1444] = {.lex_state = 11, .external_lex_state = 69}, + [1445] = {.lex_state = 8, .external_lex_state = 69}, + [1446] = {.lex_state = 11, .external_lex_state = 69}, + [1447] = {.lex_state = 11, .external_lex_state = 69}, + [1448] = {.lex_state = 7}, + [1449] = {.lex_state = 13, .external_lex_state = 59}, + [1450] = {.lex_state = 13, .external_lex_state = 59}, + [1451] = {.lex_state = 8, .external_lex_state = 69}, + [1452] = {.lex_state = 7}, + [1453] = {.lex_state = 8, .external_lex_state = 69}, + [1454] = {.lex_state = 8, .external_lex_state = 69}, + [1455] = {.lex_state = 7, .external_lex_state = 68}, + [1456] = {.lex_state = 13, .external_lex_state = 59}, + [1457] = {.lex_state = 13, .external_lex_state = 59}, + [1458] = {.lex_state = 14, .external_lex_state = 69}, + [1459] = {.lex_state = 8}, + [1460] = {.lex_state = 13, .external_lex_state = 67}, + [1461] = {.lex_state = 8}, + [1462] = {.lex_state = 8}, + [1463] = {.lex_state = 13, .external_lex_state = 67}, + [1464] = {.lex_state = 11}, + [1465] = {.lex_state = 8}, + [1466] = {.lex_state = 14, .external_lex_state = 69}, + [1467] = {.lex_state = 7}, + [1468] = {.lex_state = 14, .external_lex_state = 69}, [1469] = {.lex_state = 14, .external_lex_state = 69}, - [1470] = {.lex_state = 14, .external_lex_state = 69}, - [1471] = {.lex_state = 13, .external_lex_state = 65}, - [1472] = {.lex_state = 14, .external_lex_state = 69}, - [1473] = {.lex_state = 14, .external_lex_state = 69}, - [1474] = {.lex_state = 13, .external_lex_state = 65}, - [1475] = {.lex_state = 13, .external_lex_state = 65}, - [1476] = {.lex_state = 13, .external_lex_state = 70}, - [1477] = {.lex_state = 13, .external_lex_state = 69}, - [1478] = {.lex_state = 11, .external_lex_state = 63}, - [1479] = {.lex_state = 7, .external_lex_state = 51}, - [1480] = {.lex_state = 13, .external_lex_state = 69}, - [1481] = {.lex_state = 13, .external_lex_state = 69}, - [1482] = {.lex_state = 13, .external_lex_state = 57}, + [1470] = {.lex_state = 13, .external_lex_state = 67}, + [1471] = {.lex_state = 8}, + [1472] = {.lex_state = 8}, + [1473] = {.lex_state = 13, .external_lex_state = 59}, + [1474] = {.lex_state = 8}, + [1475] = {.lex_state = 11}, + [1476] = {.lex_state = 8}, + [1477] = {.lex_state = 13, .external_lex_state = 59}, + [1478] = {.lex_state = 13, .external_lex_state = 70}, + [1479] = {.lex_state = 12, .external_lex_state = 60}, + [1480] = {.lex_state = 13, .external_lex_state = 70}, + [1481] = {.lex_state = 13, .external_lex_state = 70}, + [1482] = {.lex_state = 13}, [1483] = {.lex_state = 7, .external_lex_state = 51}, - [1484] = {.lex_state = 11, .external_lex_state = 63}, - [1485] = {.lex_state = 13, .external_lex_state = 57}, + [1484] = {.lex_state = 13, .external_lex_state = 70}, + [1485] = {.lex_state = 13, .external_lex_state = 70}, [1486] = {.lex_state = 13, .external_lex_state = 70}, - [1487] = {.lex_state = 13}, - [1488] = {.lex_state = 13, .external_lex_state = 69}, - [1489] = {.lex_state = 13}, - [1490] = {.lex_state = 13, .external_lex_state = 70}, - [1491] = {.lex_state = 13}, - [1492] = {.lex_state = 7, .external_lex_state = 71}, + [1487] = {.lex_state = 13, .external_lex_state = 70}, + [1488] = {.lex_state = 13, .external_lex_state = 70}, + [1489] = {.lex_state = 7, .external_lex_state = 51}, + [1490] = {.lex_state = 7, .external_lex_state = 51}, + [1491] = {.lex_state = 13, .external_lex_state = 56}, + [1492] = {.lex_state = 13, .external_lex_state = 70}, [1493] = {.lex_state = 13, .external_lex_state = 70}, [1494] = {.lex_state = 13, .external_lex_state = 70}, - [1495] = {.lex_state = 11, .external_lex_state = 63}, + [1495] = {.lex_state = 7, .external_lex_state = 51}, [1496] = {.lex_state = 13, .external_lex_state = 70}, - [1497] = {.lex_state = 13}, + [1497] = {.lex_state = 13, .external_lex_state = 70}, [1498] = {.lex_state = 13, .external_lex_state = 70}, - [1499] = {.lex_state = 13, .external_lex_state = 57}, + [1499] = {.lex_state = 13, .external_lex_state = 70}, [1500] = {.lex_state = 13, .external_lex_state = 70}, [1501] = {.lex_state = 13, .external_lex_state = 70}, - [1502] = {.lex_state = 12, .external_lex_state = 63}, - [1503] = {.lex_state = 8, .external_lex_state = 63}, + [1502] = {.lex_state = 7, .external_lex_state = 71}, + [1503] = {.lex_state = 13, .external_lex_state = 69}, [1504] = {.lex_state = 13, .external_lex_state = 70}, [1505] = {.lex_state = 13, .external_lex_state = 70}, - [1506] = {.lex_state = 12, .external_lex_state = 63}, + [1506] = {.lex_state = 13, .external_lex_state = 70}, [1507] = {.lex_state = 13, .external_lex_state = 70}, - [1508] = {.lex_state = 8, .external_lex_state = 63}, - [1509] = {.lex_state = 13}, + [1508] = {.lex_state = 13, .external_lex_state = 70}, + [1509] = {.lex_state = 13, .external_lex_state = 70}, [1510] = {.lex_state = 13, .external_lex_state = 70}, - [1511] = {.lex_state = 7, .external_lex_state = 66}, - [1512] = {.lex_state = 7}, - [1513] = {.lex_state = 13}, + [1511] = {.lex_state = 13, .external_lex_state = 70}, + [1512] = {.lex_state = 13, .external_lex_state = 70}, + [1513] = {.lex_state = 13, .external_lex_state = 70}, [1514] = {.lex_state = 13, .external_lex_state = 70}, - [1515] = {.lex_state = 13, .external_lex_state = 57}, - [1516] = {.lex_state = 8, .external_lex_state = 63}, - [1517] = {.lex_state = 8, .external_lex_state = 63}, + [1515] = {.lex_state = 13, .external_lex_state = 70}, + [1516] = {.lex_state = 13, .external_lex_state = 58}, + [1517] = {.lex_state = 13, .external_lex_state = 70}, [1518] = {.lex_state = 13, .external_lex_state = 70}, [1519] = {.lex_state = 13, .external_lex_state = 70}, [1520] = {.lex_state = 13, .external_lex_state = 70}, [1521] = {.lex_state = 13, .external_lex_state = 70}, - [1522] = {.lex_state = 13, .external_lex_state = 70}, + [1522] = {.lex_state = 13}, [1523] = {.lex_state = 13, .external_lex_state = 70}, [1524] = {.lex_state = 13, .external_lex_state = 70}, [1525] = {.lex_state = 13, .external_lex_state = 70}, - [1526] = {.lex_state = 13, .external_lex_state = 70}, - [1527] = {.lex_state = 13, .external_lex_state = 58}, + [1526] = {.lex_state = 13, .external_lex_state = 69}, + [1527] = {.lex_state = 13, .external_lex_state = 70}, [1528] = {.lex_state = 13, .external_lex_state = 70}, - [1529] = {.lex_state = 7, .external_lex_state = 51}, - [1530] = {.lex_state = 7, .external_lex_state = 51}, - [1531] = {.lex_state = 7, .external_lex_state = 51}, - [1532] = {.lex_state = 13}, - [1533] = {.lex_state = 13, .external_lex_state = 70}, + [1529] = {.lex_state = 13, .external_lex_state = 70}, + [1530] = {.lex_state = 13, .external_lex_state = 56}, + [1531] = {.lex_state = 13, .external_lex_state = 56}, + [1532] = {.lex_state = 13, .external_lex_state = 69}, + [1533] = {.lex_state = 12, .external_lex_state = 60}, [1534] = {.lex_state = 7, .external_lex_state = 51}, - [1535] = {.lex_state = 13, .external_lex_state = 70}, - [1536] = {.lex_state = 12, .external_lex_state = 63}, - [1537] = {.lex_state = 13, .external_lex_state = 70}, - [1538] = {.lex_state = 13, .external_lex_state = 70}, - [1539] = {.lex_state = 12, .external_lex_state = 63}, - [1540] = {.lex_state = 13, .external_lex_state = 70}, - [1541] = {.lex_state = 13, .external_lex_state = 70}, + [1535] = {.lex_state = 13}, + [1536] = {.lex_state = 11, .external_lex_state = 60}, + [1537] = {.lex_state = 12, .external_lex_state = 60}, + [1538] = {.lex_state = 12, .external_lex_state = 60}, + [1539] = {.lex_state = 13, .external_lex_state = 69}, + [1540] = {.lex_state = 13}, + [1541] = {.lex_state = 13}, [1542] = {.lex_state = 7, .external_lex_state = 51}, - [1543] = {.lex_state = 11, .external_lex_state = 63}, - [1544] = {.lex_state = 13, .external_lex_state = 70}, - [1545] = {.lex_state = 13, .external_lex_state = 70}, - [1546] = {.lex_state = 13, .external_lex_state = 70}, - [1547] = {.lex_state = 13, .external_lex_state = 70}, - [1548] = {.lex_state = 13, .external_lex_state = 70}, - [1549] = {.lex_state = 13, .external_lex_state = 70}, + [1543] = {.lex_state = 7, .external_lex_state = 51}, + [1544] = {.lex_state = 7, .external_lex_state = 68}, + [1545] = {.lex_state = 8, .external_lex_state = 60}, + [1546] = {.lex_state = 13}, + [1547] = {.lex_state = 13}, + [1548] = {.lex_state = 7}, + [1549] = {.lex_state = 13, .external_lex_state = 56}, [1550] = {.lex_state = 13, .external_lex_state = 70}, - [1551] = {.lex_state = 13, .external_lex_state = 70}, + [1551] = {.lex_state = 11, .external_lex_state = 60}, [1552] = {.lex_state = 13, .external_lex_state = 70}, - [1553] = {.lex_state = 13, .external_lex_state = 70}, - [1554] = {.lex_state = 13, .external_lex_state = 70}, - [1555] = {.lex_state = 13, .external_lex_state = 70}, - [1556] = {.lex_state = 13, .external_lex_state = 63}, - [1557] = {.lex_state = 13, .external_lex_state = 63}, + [1553] = {.lex_state = 8, .external_lex_state = 60}, + [1554] = {.lex_state = 8, .external_lex_state = 60}, + [1555] = {.lex_state = 11, .external_lex_state = 60}, + [1556] = {.lex_state = 11, .external_lex_state = 60}, + [1557] = {.lex_state = 8, .external_lex_state = 60}, [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 7}, - [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 13, .external_lex_state = 63}, - [1562] = {.lex_state = 13, .external_lex_state = 72}, - [1563] = {.lex_state = 7}, - [1564] = {.lex_state = 13, .external_lex_state = 63}, - [1565] = {.lex_state = 13, .external_lex_state = 63}, - [1566] = {.lex_state = 13, .external_lex_state = 63}, - [1567] = {.lex_state = 7, .external_lex_state = 51}, - [1568] = {.lex_state = 13, .external_lex_state = 63}, - [1569] = {.lex_state = 7}, - [1570] = {.lex_state = 12, .external_lex_state = 73}, - [1571] = {.lex_state = 13, .external_lex_state = 63}, - [1572] = {.lex_state = 13, .external_lex_state = 63}, - [1573] = {.lex_state = 13, .external_lex_state = 63}, + [1559] = {.lex_state = 13, .external_lex_state = 60}, + [1560] = {.lex_state = 13, .external_lex_state = 72}, + [1561] = {.lex_state = 13, .external_lex_state = 73}, + [1562] = {.lex_state = 12, .external_lex_state = 74}, + [1563] = {.lex_state = 12, .external_lex_state = 75}, + [1564] = {.lex_state = 11, .external_lex_state = 74}, + [1565] = {.lex_state = 13, .external_lex_state = 76}, + [1566] = {.lex_state = 7}, + [1567] = {.lex_state = 7}, + [1568] = {.lex_state = 7}, + [1569] = {.lex_state = 13, .external_lex_state = 77}, + [1570] = {.lex_state = 7}, + [1571] = {.lex_state = 7}, + [1572] = {.lex_state = 7}, + [1573] = {.lex_state = 11, .external_lex_state = 75}, [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 13, .external_lex_state = 74}, - [1576] = {.lex_state = 7}, - [1577] = {.lex_state = 14, .external_lex_state = 75}, + [1575] = {.lex_state = 14, .external_lex_state = 74}, + [1576] = {.lex_state = 10}, + [1577] = {.lex_state = 13, .external_lex_state = 78}, [1578] = {.lex_state = 7}, - [1579] = {.lex_state = 7}, - [1580] = {.lex_state = 7}, + [1579] = {.lex_state = 13, .external_lex_state = 79}, + [1580] = {.lex_state = 13, .external_lex_state = 60}, [1581] = {.lex_state = 7}, - [1582] = {.lex_state = 13, .external_lex_state = 63}, - [1583] = {.lex_state = 13, .external_lex_state = 63}, - [1584] = {.lex_state = 13, .external_lex_state = 63}, - [1585] = {.lex_state = 11, .external_lex_state = 73}, - [1586] = {.lex_state = 13, .external_lex_state = 63}, - [1587] = {.lex_state = 13, .external_lex_state = 63}, - [1588] = {.lex_state = 13, .external_lex_state = 63}, - [1589] = {.lex_state = 8, .external_lex_state = 73}, - [1590] = {.lex_state = 13, .external_lex_state = 63}, - [1591] = {.lex_state = 7}, - [1592] = {.lex_state = 7}, - [1593] = {.lex_state = 13, .external_lex_state = 63}, - [1594] = {.lex_state = 13, .external_lex_state = 63}, - [1595] = {.lex_state = 10}, - [1596] = {.lex_state = 13, .external_lex_state = 63}, - [1597] = {.lex_state = 7}, - [1598] = {.lex_state = 13, .external_lex_state = 63}, - [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 7}, - [1601] = {.lex_state = 7}, - [1602] = {.lex_state = 13, .external_lex_state = 63}, - [1603] = {.lex_state = 13, .external_lex_state = 63}, - [1604] = {.lex_state = 13, .external_lex_state = 63}, - [1605] = {.lex_state = 13, .external_lex_state = 63}, - [1606] = {.lex_state = 13, .external_lex_state = 76}, - [1607] = {.lex_state = 13, .external_lex_state = 63}, - [1608] = {.lex_state = 7}, - [1609] = {.lex_state = 13, .external_lex_state = 63}, - [1610] = {.lex_state = 13, .external_lex_state = 74}, - [1611] = {.lex_state = 13, .external_lex_state = 63}, - [1612] = {.lex_state = 13, .external_lex_state = 63}, - [1613] = {.lex_state = 12, .external_lex_state = 75}, - [1614] = {.lex_state = 7}, - [1615] = {.lex_state = 13, .external_lex_state = 77}, - [1616] = {.lex_state = 13, .external_lex_state = 63}, - [1617] = {.lex_state = 13, .external_lex_state = 63}, - [1618] = {.lex_state = 11, .external_lex_state = 75}, - [1619] = {.lex_state = 13, .external_lex_state = 78}, - [1620] = {.lex_state = 13, .external_lex_state = 63}, - [1621] = {.lex_state = 13, .external_lex_state = 63}, - [1622] = {.lex_state = 13, .external_lex_state = 63}, - [1623] = {.lex_state = 7}, - [1624] = {.lex_state = 10}, - [1625] = {.lex_state = 13, .external_lex_state = 63}, - [1626] = {.lex_state = 13, .external_lex_state = 63}, - [1627] = {.lex_state = 13, .external_lex_state = 63}, + [1582] = {.lex_state = 13, .external_lex_state = 60}, + [1583] = {.lex_state = 13, .external_lex_state = 60}, + [1584] = {.lex_state = 7}, + [1585] = {.lex_state = 7}, + [1586] = {.lex_state = 13, .external_lex_state = 60}, + [1587] = {.lex_state = 13, .external_lex_state = 73}, + [1588] = {.lex_state = 7}, + [1589] = {.lex_state = 13, .external_lex_state = 60}, + [1590] = {.lex_state = 13, .external_lex_state = 60}, + [1591] = {.lex_state = 13, .external_lex_state = 60}, + [1592] = {.lex_state = 13, .external_lex_state = 60}, + [1593] = {.lex_state = 13, .external_lex_state = 60}, + [1594] = {.lex_state = 13, .external_lex_state = 60}, + [1595] = {.lex_state = 13, .external_lex_state = 60}, + [1596] = {.lex_state = 13, .external_lex_state = 60}, + [1597] = {.lex_state = 13, .external_lex_state = 60}, + [1598] = {.lex_state = 13, .external_lex_state = 60}, + [1599] = {.lex_state = 13, .external_lex_state = 60}, + [1600] = {.lex_state = 13, .external_lex_state = 60}, + [1601] = {.lex_state = 13, .external_lex_state = 60}, + [1602] = {.lex_state = 13, .external_lex_state = 60}, + [1603] = {.lex_state = 13, .external_lex_state = 60}, + [1604] = {.lex_state = 13, .external_lex_state = 60}, + [1605] = {.lex_state = 13, .external_lex_state = 60}, + [1606] = {.lex_state = 10}, + [1607] = {.lex_state = 13, .external_lex_state = 60}, + [1608] = {.lex_state = 13, .external_lex_state = 60}, + [1609] = {.lex_state = 13, .external_lex_state = 60}, + [1610] = {.lex_state = 13, .external_lex_state = 60}, + [1611] = {.lex_state = 13, .external_lex_state = 60}, + [1612] = {.lex_state = 13, .external_lex_state = 60}, + [1613] = {.lex_state = 13, .external_lex_state = 60}, + [1614] = {.lex_state = 13, .external_lex_state = 60}, + [1615] = {.lex_state = 13, .external_lex_state = 60}, + [1616] = {.lex_state = 13, .external_lex_state = 60}, + [1617] = {.lex_state = 13, .external_lex_state = 60}, + [1618] = {.lex_state = 13, .external_lex_state = 60}, + [1619] = {.lex_state = 13, .external_lex_state = 60}, + [1620] = {.lex_state = 13, .external_lex_state = 60}, + [1621] = {.lex_state = 8, .external_lex_state = 74}, + [1622] = {.lex_state = 13, .external_lex_state = 60}, + [1623] = {.lex_state = 13, .external_lex_state = 60}, + [1624] = {.lex_state = 7}, + [1625] = {.lex_state = 13, .external_lex_state = 60}, + [1626] = {.lex_state = 7, .external_lex_state = 51}, + [1627] = {.lex_state = 7}, [1628] = {.lex_state = 7}, - [1629] = {.lex_state = 13, .external_lex_state = 63}, - [1630] = {.lex_state = 13, .external_lex_state = 63}, - [1631] = {.lex_state = 7}, - [1632] = {.lex_state = 7}, + [1629] = {.lex_state = 13, .external_lex_state = 60}, + [1630] = {.lex_state = 13, .external_lex_state = 60}, + [1631] = {.lex_state = 13, .external_lex_state = 60}, + [1632] = {.lex_state = 10}, [1633] = {.lex_state = 7}, - [1634] = {.lex_state = 13, .external_lex_state = 63}, - [1635] = {.lex_state = 13, .external_lex_state = 63}, - [1636] = {.lex_state = 8, .external_lex_state = 75}, + [1634] = {.lex_state = 7}, + [1635] = {.lex_state = 7}, + [1636] = {.lex_state = 7}, [1637] = {.lex_state = 7}, [1638] = {.lex_state = 7}, - [1639] = {.lex_state = 14, .external_lex_state = 73}, + [1639] = {.lex_state = 7}, [1640] = {.lex_state = 7}, - [1641] = {.lex_state = 13, .external_lex_state = 79}, + [1641] = {.lex_state = 7}, [1642] = {.lex_state = 7}, [1643] = {.lex_state = 7}, - [1644] = {.lex_state = 13, .external_lex_state = 63}, + [1644] = {.lex_state = 7}, [1645] = {.lex_state = 7}, [1646] = {.lex_state = 7}, - [1647] = {.lex_state = 7}, - [1648] = {.lex_state = 8, .external_lex_state = 59}, - [1649] = {.lex_state = 13, .external_lex_state = 53}, - [1650] = {.lex_state = 11, .external_lex_state = 59}, + [1647] = {.lex_state = 8, .external_lex_state = 75}, + [1648] = {.lex_state = 14, .external_lex_state = 75}, + [1649] = {.lex_state = 7}, + [1650] = {.lex_state = 13, .external_lex_state = 75}, [1651] = {.lex_state = 8, .external_lex_state = 71}, - [1652] = {.lex_state = 8, .external_lex_state = 59}, - [1653] = {.lex_state = 13, .external_lex_state = 54}, - [1654] = {.lex_state = 11, .external_lex_state = 51}, - [1655] = {.lex_state = 14, .external_lex_state = 59}, - [1656] = {.lex_state = 13, .external_lex_state = 53}, - [1657] = {.lex_state = 13, .external_lex_state = 73}, - [1658] = {.lex_state = 13, .external_lex_state = 80}, - [1659] = {.lex_state = 14, .external_lex_state = 59}, - [1660] = {.lex_state = 13, .external_lex_state = 54}, - [1661] = {.lex_state = 13, .external_lex_state = 75}, - [1662] = {.lex_state = 7}, - [1663] = {.lex_state = 7}, + [1652] = {.lex_state = 11, .external_lex_state = 71}, + [1653] = {.lex_state = 14, .external_lex_state = 59}, + [1654] = {.lex_state = 8, .external_lex_state = 59}, + [1655] = {.lex_state = 13, .external_lex_state = 75}, + [1656] = {.lex_state = 12, .external_lex_state = 71}, + [1657] = {.lex_state = 7}, + [1658] = {.lex_state = 13, .external_lex_state = 53}, + [1659] = {.lex_state = 13, .external_lex_state = 54}, + [1660] = {.lex_state = 14, .external_lex_state = 59}, + [1661] = {.lex_state = 7}, + [1662] = {.lex_state = 11, .external_lex_state = 59}, + [1663] = {.lex_state = 8, .external_lex_state = 59}, [1664] = {.lex_state = 7}, - [1665] = {.lex_state = 13, .external_lex_state = 81}, - [1666] = {.lex_state = 7}, - [1667] = {.lex_state = 8, .external_lex_state = 51}, - [1668] = {.lex_state = 8, .external_lex_state = 51}, - [1669] = {.lex_state = 13, .external_lex_state = 75}, - [1670] = {.lex_state = 11, .external_lex_state = 71}, - [1671] = {.lex_state = 12, .external_lex_state = 59}, - [1672] = {.lex_state = 7}, - [1673] = {.lex_state = 8, .external_lex_state = 51}, - [1674] = {.lex_state = 8, .external_lex_state = 51}, - [1675] = {.lex_state = 12, .external_lex_state = 59}, - [1676] = {.lex_state = 7}, - [1677] = {.lex_state = 12, .external_lex_state = 71}, - [1678] = {.lex_state = 13, .external_lex_state = 57}, - [1679] = {.lex_state = 11, .external_lex_state = 59}, - [1680] = {.lex_state = 13, .external_lex_state = 75}, - [1681] = {.lex_state = 12, .external_lex_state = 51}, - [1682] = {.lex_state = 7}, - [1683] = {.lex_state = 13, .external_lex_state = 75}, - [1684] = {.lex_state = 11}, - [1685] = {.lex_state = 13, .external_lex_state = 57}, - [1686] = {.lex_state = 13, .external_lex_state = 57}, - [1687] = {.lex_state = 13, .external_lex_state = 71}, - [1688] = {.lex_state = 13}, - [1689] = {.lex_state = 13, .external_lex_state = 51}, - [1690] = {.lex_state = 13, .external_lex_state = 57}, - [1691] = {.lex_state = 13, .external_lex_state = 57}, - [1692] = {.lex_state = 13, .external_lex_state = 57}, - [1693] = {.lex_state = 12}, + [1665] = {.lex_state = 7}, + [1666] = {.lex_state = 8, .external_lex_state = 51}, + [1667] = {.lex_state = 12, .external_lex_state = 51}, + [1668] = {.lex_state = 13, .external_lex_state = 54}, + [1669] = {.lex_state = 13, .external_lex_state = 74}, + [1670] = {.lex_state = 11, .external_lex_state = 59}, + [1671] = {.lex_state = 11, .external_lex_state = 51}, + [1672] = {.lex_state = 13, .external_lex_state = 80}, + [1673] = {.lex_state = 12, .external_lex_state = 59}, + [1674] = {.lex_state = 13, .external_lex_state = 75}, + [1675] = {.lex_state = 13, .external_lex_state = 53}, + [1676] = {.lex_state = 13, .external_lex_state = 75}, + [1677] = {.lex_state = 7}, + [1678] = {.lex_state = 12, .external_lex_state = 59}, + [1679] = {.lex_state = 13, .external_lex_state = 56}, + [1680] = {.lex_state = 7}, + [1681] = {.lex_state = 7}, + [1682] = {.lex_state = 8, .external_lex_state = 51}, + [1683] = {.lex_state = 8, .external_lex_state = 51}, + [1684] = {.lex_state = 8, .external_lex_state = 51}, + [1685] = {.lex_state = 13, .external_lex_state = 81}, + [1686] = {.lex_state = 13, .external_lex_state = 51}, + [1687] = {.lex_state = 13, .external_lex_state = 56}, + [1688] = {.lex_state = 13, .external_lex_state = 59}, + [1689] = {.lex_state = 11}, + [1690] = {.lex_state = 13, .external_lex_state = 51}, + [1691] = {.lex_state = 12}, + [1692] = {.lex_state = 13, .external_lex_state = 59}, + [1693] = {.lex_state = 13}, [1694] = {.lex_state = 13, .external_lex_state = 59}, - [1695] = {.lex_state = 13, .external_lex_state = 57}, - [1696] = {.lex_state = 12}, - [1697] = {.lex_state = 13, .external_lex_state = 59}, - [1698] = {.lex_state = 13, .external_lex_state = 59}, - [1699] = {.lex_state = 13, .external_lex_state = 59}, - [1700] = {.lex_state = 13, .external_lex_state = 57}, - [1701] = {.lex_state = 11}, - [1702] = {.lex_state = 13, .external_lex_state = 57}, - [1703] = {.lex_state = 13, .external_lex_state = 59}, - [1704] = {.lex_state = 13, .external_lex_state = 57}, - [1705] = {.lex_state = 8}, - [1706] = {.lex_state = 13, .external_lex_state = 57}, - [1707] = {.lex_state = 13, .external_lex_state = 59}, - [1708] = {.lex_state = 8}, - [1709] = {.lex_state = 13, .external_lex_state = 57}, - [1710] = {.lex_state = 13, .external_lex_state = 57}, - [1711] = {.lex_state = 13, .external_lex_state = 51}, - [1712] = {.lex_state = 13, .external_lex_state = 57}, - [1713] = {.lex_state = 13, .external_lex_state = 57}, - [1714] = {.lex_state = 13, .external_lex_state = 57}, - [1715] = {.lex_state = 13, .external_lex_state = 51}, - [1716] = {.lex_state = 13, .external_lex_state = 57}, - [1717] = {.lex_state = 13, .external_lex_state = 59}, - [1718] = {.lex_state = 13}, - [1719] = {.lex_state = 13}, - [1720] = {.lex_state = 13}, + [1695] = {.lex_state = 11}, + [1696] = {.lex_state = 13, .external_lex_state = 59}, + [1697] = {.lex_state = 13, .external_lex_state = 56}, + [1698] = {.lex_state = 13, .external_lex_state = 51}, + [1699] = {.lex_state = 13, .external_lex_state = 56}, + [1700] = {.lex_state = 13, .external_lex_state = 56}, + [1701] = {.lex_state = 13, .external_lex_state = 59}, + [1702] = {.lex_state = 8}, + [1703] = {.lex_state = 13, .external_lex_state = 56}, + [1704] = {.lex_state = 8}, + [1705] = {.lex_state = 13, .external_lex_state = 59}, + [1706] = {.lex_state = 13, .external_lex_state = 71}, + [1707] = {.lex_state = 13, .external_lex_state = 56}, + [1708] = {.lex_state = 13, .external_lex_state = 59}, + [1709] = {.lex_state = 13, .external_lex_state = 56}, + [1710] = {.lex_state = 12}, + [1711] = {.lex_state = 13, .external_lex_state = 56}, + [1712] = {.lex_state = 13, .external_lex_state = 56}, + [1713] = {.lex_state = 13, .external_lex_state = 56}, + [1714] = {.lex_state = 13, .external_lex_state = 56}, + [1715] = {.lex_state = 13, .external_lex_state = 56}, + [1716] = {.lex_state = 13, .external_lex_state = 56}, + [1717] = {.lex_state = 13, .external_lex_state = 56}, + [1718] = {.lex_state = 13, .external_lex_state = 56}, + [1719] = {.lex_state = 13, .external_lex_state = 56}, + [1720] = {.lex_state = 10, .external_lex_state = 51}, [1721] = {.lex_state = 13}, [1722] = {.lex_state = 13}, [1723] = {.lex_state = 13}, [1724] = {.lex_state = 13}, [1725] = {.lex_state = 13}, [1726] = {.lex_state = 13}, - [1727] = {.lex_state = 10, .external_lex_state = 51}, + [1727] = {.lex_state = 13}, [1728] = {.lex_state = 13}, [1729] = {.lex_state = 13}, [1730] = {.lex_state = 13}, - [1731] = {.lex_state = 10, .external_lex_state = 71}, + [1731] = {.lex_state = 13}, [1732] = {.lex_state = 13}, [1733] = {.lex_state = 13}, [1734] = {.lex_state = 13}, [1735] = {.lex_state = 13}, - [1736] = {.lex_state = 13}, + [1736] = {.lex_state = 10, .external_lex_state = 71}, [1737] = {.lex_state = 13}, - [1738] = {.lex_state = 10}, - [1739] = {.lex_state = 10}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0, .external_lex_state = 63}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, + [1738] = {.lex_state = 13}, + [1739] = {.lex_state = 13}, + [1740] = {.lex_state = 10}, + [1741] = {.lex_state = 10}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 0, .external_lex_state = 60}, + [1744] = {.lex_state = 0, .external_lex_state = 60}, [1745] = {.lex_state = 0}, [1746] = {.lex_state = 0}, [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 15}, + [1748] = {.lex_state = 15}, + [1749] = {.lex_state = 0}, [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0, .external_lex_state = 63}, - [1754] = {.lex_state = 0, .external_lex_state = 63}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, [1755] = {.lex_state = 0}, [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 0, .external_lex_state = 63}, - [1758] = {.lex_state = 0, .external_lex_state = 63}, - [1759] = {.lex_state = 0, .external_lex_state = 63}, - [1760] = {.lex_state = 0, .external_lex_state = 63}, - [1761] = {.lex_state = 0, .external_lex_state = 63}, - [1762] = {.lex_state = 0, .external_lex_state = 63}, - [1763] = {.lex_state = 0, .external_lex_state = 63}, - [1764] = {.lex_state = 0, .external_lex_state = 63}, - [1765] = {.lex_state = 0, .external_lex_state = 63}, - [1766] = {.lex_state = 0, .external_lex_state = 63}, - [1767] = {.lex_state = 0, .external_lex_state = 63}, - [1768] = {.lex_state = 0, .external_lex_state = 63}, - [1769] = {.lex_state = 0, .external_lex_state = 63}, - [1770] = {.lex_state = 0, .external_lex_state = 63}, - [1771] = {.lex_state = 0, .external_lex_state = 63}, - [1772] = {.lex_state = 0, .external_lex_state = 63}, - [1773] = {.lex_state = 0, .external_lex_state = 63}, - [1774] = {.lex_state = 0, .external_lex_state = 63}, - [1775] = {.lex_state = 0, .external_lex_state = 63}, - [1776] = {.lex_state = 0, .external_lex_state = 63}, - [1777] = {.lex_state = 0, .external_lex_state = 63}, - [1778] = {.lex_state = 0, .external_lex_state = 63}, - [1779] = {.lex_state = 0, .external_lex_state = 63}, - [1780] = {.lex_state = 0, .external_lex_state = 63}, - [1781] = {.lex_state = 0, .external_lex_state = 63}, - [1782] = {.lex_state = 0, .external_lex_state = 63}, - [1783] = {.lex_state = 0, .external_lex_state = 63}, - [1784] = {.lex_state = 0, .external_lex_state = 63}, - [1785] = {.lex_state = 0, .external_lex_state = 63}, - [1786] = {.lex_state = 0, .external_lex_state = 63}, - [1787] = {.lex_state = 0, .external_lex_state = 63}, - [1788] = {.lex_state = 0, .external_lex_state = 63}, - [1789] = {.lex_state = 0, .external_lex_state = 63}, - [1790] = {.lex_state = 0, .external_lex_state = 63}, - [1791] = {.lex_state = 0, .external_lex_state = 63}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 15}, + [1757] = {.lex_state = 0}, + [1758] = {.lex_state = 0, .external_lex_state = 60}, + [1759] = {.lex_state = 0, .external_lex_state = 60}, + [1760] = {.lex_state = 0, .external_lex_state = 60}, + [1761] = {.lex_state = 0, .external_lex_state = 60}, + [1762] = {.lex_state = 0, .external_lex_state = 60}, + [1763] = {.lex_state = 0, .external_lex_state = 60}, + [1764] = {.lex_state = 0, .external_lex_state = 60}, + [1765] = {.lex_state = 0, .external_lex_state = 60}, + [1766] = {.lex_state = 0, .external_lex_state = 60}, + [1767] = {.lex_state = 0, .external_lex_state = 60}, + [1768] = {.lex_state = 0, .external_lex_state = 60}, + [1769] = {.lex_state = 0, .external_lex_state = 60}, + [1770] = {.lex_state = 0, .external_lex_state = 60}, + [1771] = {.lex_state = 0, .external_lex_state = 60}, + [1772] = {.lex_state = 0, .external_lex_state = 60}, + [1773] = {.lex_state = 0, .external_lex_state = 60}, + [1774] = {.lex_state = 0, .external_lex_state = 60}, + [1775] = {.lex_state = 0, .external_lex_state = 60}, + [1776] = {.lex_state = 0, .external_lex_state = 60}, + [1777] = {.lex_state = 0, .external_lex_state = 60}, + [1778] = {.lex_state = 0, .external_lex_state = 60}, + [1779] = {.lex_state = 0, .external_lex_state = 60}, + [1780] = {.lex_state = 0, .external_lex_state = 60}, + [1781] = {.lex_state = 0, .external_lex_state = 60}, + [1782] = {.lex_state = 0, .external_lex_state = 60}, + [1783] = {.lex_state = 0, .external_lex_state = 60}, + [1784] = {.lex_state = 0, .external_lex_state = 60}, + [1785] = {.lex_state = 0, .external_lex_state = 60}, + [1786] = {.lex_state = 0, .external_lex_state = 60}, + [1787] = {.lex_state = 0, .external_lex_state = 60}, + [1788] = {.lex_state = 0, .external_lex_state = 60}, + [1789] = {.lex_state = 0, .external_lex_state = 60}, + [1790] = {.lex_state = 0, .external_lex_state = 60}, + [1791] = {.lex_state = 0, .external_lex_state = 60}, + [1792] = {.lex_state = 0, .external_lex_state = 60}, + [1793] = {.lex_state = 0, .external_lex_state = 60}, [1794] = {.lex_state = 15}, [1795] = {.lex_state = 15}, - [1796] = {.lex_state = 15}, - [1797] = {.lex_state = 15}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 15}, + [1796] = {.lex_state = 0}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 16}, + [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, [1801] = {.lex_state = 15}, - [1802] = {.lex_state = 0}, + [1802] = {.lex_state = 16}, [1803] = {.lex_state = 15}, - [1804] = {.lex_state = 15}, + [1804] = {.lex_state = 0}, [1805] = {.lex_state = 15}, [1806] = {.lex_state = 15}, [1807] = {.lex_state = 15}, [1808] = {.lex_state = 15}, - [1809] = {.lex_state = 0}, + [1809] = {.lex_state = 16}, [1810] = {.lex_state = 16}, - [1811] = {.lex_state = 16}, + [1811] = {.lex_state = 15}, [1812] = {.lex_state = 15}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 16}, - [1815] = {.lex_state = 16}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 15, .external_lex_state = 58}, - [1818] = {.lex_state = 16, .external_lex_state = 58}, - [1819] = {.lex_state = 15}, - [1820] = {.lex_state = 15}, - [1821] = {.lex_state = 16}, - [1822] = {.lex_state = 0, .external_lex_state = 82}, + [1813] = {.lex_state = 15}, + [1814] = {.lex_state = 15}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 15}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 15}, + [1819] = {.lex_state = 16}, + [1820] = {.lex_state = 0, .external_lex_state = 82}, + [1821] = {.lex_state = 15, .external_lex_state = 58}, + [1822] = {.lex_state = 15}, [1823] = {.lex_state = 15}, [1824] = {.lex_state = 15}, [1825] = {.lex_state = 15}, [1826] = {.lex_state = 15}, [1827] = {.lex_state = 15}, - [1828] = {.lex_state = 15, .external_lex_state = 63}, - [1829] = {.lex_state = 15, .external_lex_state = 63}, - [1830] = {.lex_state = 16, .external_lex_state = 63}, - [1831] = {.lex_state = 15, .external_lex_state = 63}, - [1832] = {.lex_state = 15, .external_lex_state = 63}, - [1833] = {.lex_state = 15, .external_lex_state = 63}, - [1834] = {.lex_state = 15, .external_lex_state = 63}, - [1835] = {.lex_state = 15, .external_lex_state = 63}, - [1836] = {.lex_state = 15, .external_lex_state = 63}, - [1837] = {.lex_state = 15, .external_lex_state = 63}, - [1838] = {.lex_state = 15, .external_lex_state = 63}, - [1839] = {.lex_state = 15, .external_lex_state = 63}, - [1840] = {.lex_state = 15, .external_lex_state = 63}, - [1841] = {.lex_state = 15, .external_lex_state = 63}, - [1842] = {.lex_state = 15, .external_lex_state = 63}, - [1843] = {.lex_state = 15, .external_lex_state = 63}, - [1844] = {.lex_state = 16, .external_lex_state = 63}, - [1845] = {.lex_state = 15, .external_lex_state = 63}, - [1846] = {.lex_state = 15, .external_lex_state = 63}, - [1847] = {.lex_state = 15, .external_lex_state = 63}, - [1848] = {.lex_state = 15, .external_lex_state = 63}, - [1849] = {.lex_state = 15, .external_lex_state = 63}, - [1850] = {.lex_state = 15, .external_lex_state = 63}, - [1851] = {.lex_state = 15, .external_lex_state = 63}, - [1852] = {.lex_state = 15, .external_lex_state = 63}, - [1853] = {.lex_state = 16, .external_lex_state = 63}, - [1854] = {.lex_state = 15, .external_lex_state = 63}, - [1855] = {.lex_state = 16, .external_lex_state = 63}, - [1856] = {.lex_state = 0, .external_lex_state = 83}, - [1857] = {.lex_state = 16, .external_lex_state = 63}, - [1858] = {.lex_state = 16, .external_lex_state = 63}, - [1859] = {.lex_state = 16, .external_lex_state = 63}, - [1860] = {.lex_state = 16, .external_lex_state = 63}, - [1861] = {.lex_state = 16, .external_lex_state = 63}, - [1862] = {.lex_state = 15, .external_lex_state = 63}, - [1863] = {.lex_state = 16, .external_lex_state = 63}, - [1864] = {.lex_state = 16, .external_lex_state = 63}, - [1865] = {.lex_state = 16, .external_lex_state = 63}, - [1866] = {.lex_state = 16, .external_lex_state = 63}, - [1867] = {.lex_state = 16, .external_lex_state = 63}, - [1868] = {.lex_state = 16, .external_lex_state = 63}, - [1869] = {.lex_state = 16, .external_lex_state = 63}, - [1870] = {.lex_state = 16, .external_lex_state = 63}, - [1871] = {.lex_state = 16, .external_lex_state = 63}, - [1872] = {.lex_state = 16, .external_lex_state = 63}, - [1873] = {.lex_state = 15, .external_lex_state = 63}, - [1874] = {.lex_state = 15, .external_lex_state = 63}, - [1875] = {.lex_state = 2901}, - [1876] = {.lex_state = 15, .external_lex_state = 63}, - [1877] = {.lex_state = 16, .external_lex_state = 63}, - [1878] = {.lex_state = 15, .external_lex_state = 63}, - [1879] = {.lex_state = 16, .external_lex_state = 63}, - [1880] = {.lex_state = 0, .external_lex_state = 83}, - [1881] = {.lex_state = 2901}, - [1882] = {.lex_state = 16, .external_lex_state = 63}, - [1883] = {.lex_state = 16, .external_lex_state = 63}, - [1884] = {.lex_state = 16, .external_lex_state = 63}, - [1885] = {.lex_state = 15, .external_lex_state = 63}, - [1886] = {.lex_state = 15, .external_lex_state = 63}, - [1887] = {.lex_state = 16, .external_lex_state = 63}, - [1888] = {.lex_state = 16, .external_lex_state = 63}, - [1889] = {.lex_state = 16, .external_lex_state = 63}, - [1890] = {.lex_state = 15, .external_lex_state = 63}, - [1891] = {.lex_state = 15, .external_lex_state = 63}, - [1892] = {.lex_state = 16, .external_lex_state = 63}, - [1893] = {.lex_state = 15, .external_lex_state = 63}, - [1894] = {.lex_state = 0, .external_lex_state = 83}, - [1895] = {.lex_state = 15, .external_lex_state = 63}, - [1896] = {.lex_state = 0, .external_lex_state = 83}, - [1897] = {.lex_state = 15, .external_lex_state = 63}, - [1898] = {.lex_state = 16, .external_lex_state = 63}, - [1899] = {.lex_state = 16, .external_lex_state = 63}, - [1900] = {.lex_state = 15, .external_lex_state = 63}, - [1901] = {.lex_state = 15, .external_lex_state = 63}, - [1902] = {.lex_state = 16, .external_lex_state = 63}, - [1903] = {.lex_state = 16, .external_lex_state = 63}, - [1904] = {.lex_state = 16, .external_lex_state = 63}, - [1905] = {.lex_state = 16, .external_lex_state = 63}, - [1906] = {.lex_state = 16, .external_lex_state = 63}, - [1907] = {.lex_state = 16, .external_lex_state = 63}, - [1908] = {.lex_state = 15, .external_lex_state = 63}, - [1909] = {.lex_state = 2901}, - [1910] = {.lex_state = 15, .external_lex_state = 63}, - [1911] = {.lex_state = 16, .external_lex_state = 63}, - [1912] = {.lex_state = 16, .external_lex_state = 63}, - [1913] = {.lex_state = 16, .external_lex_state = 63}, - [1914] = {.lex_state = 16, .external_lex_state = 63}, - [1915] = {.lex_state = 16, .external_lex_state = 63}, - [1916] = {.lex_state = 16, .external_lex_state = 63}, - [1917] = {.lex_state = 15, .external_lex_state = 63}, - [1918] = {.lex_state = 15, .external_lex_state = 63}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, + [1828] = {.lex_state = 15}, + [1829] = {.lex_state = 16, .external_lex_state = 58}, + [1830] = {.lex_state = 15, .external_lex_state = 60}, + [1831] = {.lex_state = 16, .external_lex_state = 60}, + [1832] = {.lex_state = 2901}, + [1833] = {.lex_state = 0, .external_lex_state = 83}, + [1834] = {.lex_state = 15, .external_lex_state = 60}, + [1835] = {.lex_state = 2901}, + [1836] = {.lex_state = 15, .external_lex_state = 60}, + [1837] = {.lex_state = 15, .external_lex_state = 60}, + [1838] = {.lex_state = 15, .external_lex_state = 60}, + [1839] = {.lex_state = 15, .external_lex_state = 60}, + [1840] = {.lex_state = 15, .external_lex_state = 60}, + [1841] = {.lex_state = 15, .external_lex_state = 60}, + [1842] = {.lex_state = 15, .external_lex_state = 60}, + [1843] = {.lex_state = 15, .external_lex_state = 60}, + [1844] = {.lex_state = 15, .external_lex_state = 60}, + [1845] = {.lex_state = 0, .external_lex_state = 83}, + [1846] = {.lex_state = 0, .external_lex_state = 83}, + [1847] = {.lex_state = 0, .external_lex_state = 83}, + [1848] = {.lex_state = 15, .external_lex_state = 60}, + [1849] = {.lex_state = 15, .external_lex_state = 60}, + [1850] = {.lex_state = 15, .external_lex_state = 60}, + [1851] = {.lex_state = 15, .external_lex_state = 60}, + [1852] = {.lex_state = 15, .external_lex_state = 60}, + [1853] = {.lex_state = 15, .external_lex_state = 60}, + [1854] = {.lex_state = 15, .external_lex_state = 60}, + [1855] = {.lex_state = 15, .external_lex_state = 60}, + [1856] = {.lex_state = 15, .external_lex_state = 60}, + [1857] = {.lex_state = 15, .external_lex_state = 60}, + [1858] = {.lex_state = 15, .external_lex_state = 60}, + [1859] = {.lex_state = 15, .external_lex_state = 60}, + [1860] = {.lex_state = 15, .external_lex_state = 60}, + [1861] = {.lex_state = 15, .external_lex_state = 60}, + [1862] = {.lex_state = 16, .external_lex_state = 60}, + [1863] = {.lex_state = 16, .external_lex_state = 60}, + [1864] = {.lex_state = 16, .external_lex_state = 60}, + [1865] = {.lex_state = 16, .external_lex_state = 60}, + [1866] = {.lex_state = 16, .external_lex_state = 60}, + [1867] = {.lex_state = 16, .external_lex_state = 60}, + [1868] = {.lex_state = 15, .external_lex_state = 60}, + [1869] = {.lex_state = 15, .external_lex_state = 60}, + [1870] = {.lex_state = 16, .external_lex_state = 60}, + [1871] = {.lex_state = 15, .external_lex_state = 60}, + [1872] = {.lex_state = 15, .external_lex_state = 60}, + [1873] = {.lex_state = 16, .external_lex_state = 60}, + [1874] = {.lex_state = 15, .external_lex_state = 60}, + [1875] = {.lex_state = 15, .external_lex_state = 60}, + [1876] = {.lex_state = 15, .external_lex_state = 60}, + [1877] = {.lex_state = 15, .external_lex_state = 60}, + [1878] = {.lex_state = 15, .external_lex_state = 60}, + [1879] = {.lex_state = 15, .external_lex_state = 60}, + [1880] = {.lex_state = 16, .external_lex_state = 60}, + [1881] = {.lex_state = 16, .external_lex_state = 60}, + [1882] = {.lex_state = 15, .external_lex_state = 60}, + [1883] = {.lex_state = 15, .external_lex_state = 60}, + [1884] = {.lex_state = 15, .external_lex_state = 60}, + [1885] = {.lex_state = 15, .external_lex_state = 60}, + [1886] = {.lex_state = 15, .external_lex_state = 60}, + [1887] = {.lex_state = 15, .external_lex_state = 60}, + [1888] = {.lex_state = 16, .external_lex_state = 60}, + [1889] = {.lex_state = 16, .external_lex_state = 60}, + [1890] = {.lex_state = 16, .external_lex_state = 60}, + [1891] = {.lex_state = 16, .external_lex_state = 60}, + [1892] = {.lex_state = 16, .external_lex_state = 60}, + [1893] = {.lex_state = 16, .external_lex_state = 60}, + [1894] = {.lex_state = 16, .external_lex_state = 60}, + [1895] = {.lex_state = 16, .external_lex_state = 60}, + [1896] = {.lex_state = 16, .external_lex_state = 60}, + [1897] = {.lex_state = 16, .external_lex_state = 60}, + [1898] = {.lex_state = 16, .external_lex_state = 60}, + [1899] = {.lex_state = 2901}, + [1900] = {.lex_state = 16, .external_lex_state = 60}, + [1901] = {.lex_state = 16, .external_lex_state = 60}, + [1902] = {.lex_state = 16, .external_lex_state = 60}, + [1903] = {.lex_state = 16, .external_lex_state = 60}, + [1904] = {.lex_state = 16, .external_lex_state = 60}, + [1905] = {.lex_state = 16, .external_lex_state = 60}, + [1906] = {.lex_state = 16, .external_lex_state = 60}, + [1907] = {.lex_state = 16, .external_lex_state = 60}, + [1908] = {.lex_state = 16, .external_lex_state = 60}, + [1909] = {.lex_state = 16, .external_lex_state = 60}, + [1910] = {.lex_state = 16, .external_lex_state = 60}, + [1911] = {.lex_state = 16, .external_lex_state = 60}, + [1912] = {.lex_state = 15, .external_lex_state = 60}, + [1913] = {.lex_state = 16, .external_lex_state = 60}, + [1914] = {.lex_state = 16, .external_lex_state = 60}, + [1915] = {.lex_state = 16, .external_lex_state = 60}, + [1916] = {.lex_state = 16, .external_lex_state = 60}, + [1917] = {.lex_state = 16, .external_lex_state = 60}, + [1918] = {.lex_state = 16, .external_lex_state = 60}, + [1919] = {.lex_state = 16, .external_lex_state = 60}, + [1920] = {.lex_state = 16, .external_lex_state = 60}, [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, [1923] = {.lex_state = 0}, @@ -25421,29 +25435,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1925] = {.lex_state = 0}, [1926] = {.lex_state = 0}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, + [1928] = {.lex_state = 0, .external_lex_state = 84}, [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, + [1931] = {.lex_state = 0, .external_lex_state = 84}, [1932] = {.lex_state = 0}, [1933] = {.lex_state = 0}, [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, + [1938] = {.lex_state = 0, .external_lex_state = 84}, [1939] = {.lex_state = 0}, [1940] = {.lex_state = 0}, [1941] = {.lex_state = 0}, [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 0}, + [1944] = {.lex_state = 0, .external_lex_state = 84}, [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 0}, + [1946] = {.lex_state = 0, .external_lex_state = 84}, [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0, .external_lex_state = 84}, + [1950] = {.lex_state = 0}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, @@ -25451,12 +25465,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1955] = {.lex_state = 0}, [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 0}, + [1958] = {.lex_state = 0, .external_lex_state = 84}, [1959] = {.lex_state = 0}, [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 0, .external_lex_state = 84}, + [1962] = {.lex_state = 0, .external_lex_state = 84}, + [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, [1965] = {.lex_state = 0}, [1966] = {.lex_state = 0}, @@ -25470,176 +25484,176 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1974] = {.lex_state = 0}, [1975] = {.lex_state = 0}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0, .external_lex_state = 84}, - [1978] = {.lex_state = 0}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 0, .external_lex_state = 84}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, [1981] = {.lex_state = 0, .external_lex_state = 84}, - [1982] = {.lex_state = 0, .external_lex_state = 84}, + [1982] = {.lex_state = 0}, [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 0, .external_lex_state = 84}, - [1986] = {.lex_state = 15}, - [1987] = {.lex_state = 0, .external_lex_state = 84}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 0}, + [1987] = {.lex_state = 0}, [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0, .external_lex_state = 84}, - [1991] = {.lex_state = 0}, + [1990] = {.lex_state = 0}, + [1991] = {.lex_state = 15}, [1992] = {.lex_state = 0}, [1993] = {.lex_state = 0}, [1994] = {.lex_state = 0}, [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 0, .external_lex_state = 84}, + [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0, .external_lex_state = 84}, - [2002] = {.lex_state = 0, .external_lex_state = 84}, + [2001] = {.lex_state = 0}, + [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0, .external_lex_state = 84}, - [2004] = {.lex_state = 16, .external_lex_state = 71}, + [2004] = {.lex_state = 15, .external_lex_state = 71}, [2005] = {.lex_state = 0, .external_lex_state = 84}, [2006] = {.lex_state = 0, .external_lex_state = 84}, [2007] = {.lex_state = 0, .external_lex_state = 84}, - [2008] = {.lex_state = 15, .external_lex_state = 71}, + [2008] = {.lex_state = 0, .external_lex_state = 84}, [2009] = {.lex_state = 0, .external_lex_state = 84}, [2010] = {.lex_state = 0, .external_lex_state = 84}, - [2011] = {.lex_state = 0, .external_lex_state = 84}, - [2012] = {.lex_state = 16}, + [2011] = {.lex_state = 16}, + [2012] = {.lex_state = 0, .external_lex_state = 84}, [2013] = {.lex_state = 0, .external_lex_state = 84}, - [2014] = {.lex_state = 16}, - [2015] = {.lex_state = 16}, + [2014] = {.lex_state = 0, .external_lex_state = 84}, + [2015] = {.lex_state = 16, .external_lex_state = 71}, [2016] = {.lex_state = 16}, [2017] = {.lex_state = 16}, [2018] = {.lex_state = 16}, - [2019] = {.lex_state = 15}, + [2019] = {.lex_state = 16}, [2020] = {.lex_state = 16}, [2021] = {.lex_state = 16}, - [2022] = {.lex_state = 0, .external_lex_state = 85}, + [2022] = {.lex_state = 16}, [2023] = {.lex_state = 16}, [2024] = {.lex_state = 16}, - [2025] = {.lex_state = 16}, - [2026] = {.lex_state = 0, .external_lex_state = 86}, + [2025] = {.lex_state = 0, .external_lex_state = 85}, + [2026] = {.lex_state = 16}, [2027] = {.lex_state = 16}, [2028] = {.lex_state = 16}, [2029] = {.lex_state = 16}, - [2030] = {.lex_state = 16}, + [2030] = {.lex_state = 0, .external_lex_state = 86}, [2031] = {.lex_state = 16}, - [2032] = {.lex_state = 0, .external_lex_state = 84}, - [2033] = {.lex_state = 0}, + [2032] = {.lex_state = 16}, + [2033] = {.lex_state = 15}, [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 0, .external_lex_state = 87}, - [2038] = {.lex_state = 0, .external_lex_state = 88}, + [2037] = {.lex_state = 0, .external_lex_state = 84}, + [2038] = {.lex_state = 0, .external_lex_state = 84}, [2039] = {.lex_state = 0, .external_lex_state = 87}, - [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 0, .external_lex_state = 87}, - [2042] = {.lex_state = 0}, + [2040] = {.lex_state = 0, .external_lex_state = 84}, + [2041] = {.lex_state = 0}, + [2042] = {.lex_state = 0, .external_lex_state = 88}, [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 0, .external_lex_state = 84}, + [2044] = {.lex_state = 0}, [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 0, .external_lex_state = 84}, - [2047] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 0, .external_lex_state = 84}, [2048] = {.lex_state = 0, .external_lex_state = 84}, - [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0, .external_lex_state = 84}, - [2051] = {.lex_state = 0, .external_lex_state = 89}, - [2052] = {.lex_state = 0, .external_lex_state = 84}, - [2053] = {.lex_state = 0, .external_lex_state = 84}, - [2054] = {.lex_state = 0, .external_lex_state = 87}, - [2055] = {.lex_state = 0}, + [2049] = {.lex_state = 0, .external_lex_state = 84}, + [2050] = {.lex_state = 0}, + [2051] = {.lex_state = 0, .external_lex_state = 84}, + [2052] = {.lex_state = 0}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 0}, + [2055] = {.lex_state = 0, .external_lex_state = 84}, [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0, .external_lex_state = 84}, [2058] = {.lex_state = 0, .external_lex_state = 84}, - [2059] = {.lex_state = 0, .external_lex_state = 84}, + [2059] = {.lex_state = 0, .external_lex_state = 89}, [2060] = {.lex_state = 0, .external_lex_state = 84}, [2061] = {.lex_state = 0, .external_lex_state = 84}, - [2062] = {.lex_state = 0, .external_lex_state = 84}, + [2062] = {.lex_state = 0, .external_lex_state = 89}, [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, + [2064] = {.lex_state = 0, .external_lex_state = 89}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 0}, + [2066] = {.lex_state = 0, .external_lex_state = 89}, + [2067] = {.lex_state = 0, .external_lex_state = 84}, [2068] = {.lex_state = 0}, [2069] = {.lex_state = 0}, [2070] = {.lex_state = 0}, [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0, .external_lex_state = 90}, - [2073] = {.lex_state = 0}, + [2073] = {.lex_state = 0, .external_lex_state = 90}, [2074] = {.lex_state = 0}, [2075] = {.lex_state = 0}, [2076] = {.lex_state = 0}, [2077] = {.lex_state = 0, .external_lex_state = 91}, - [2078] = {.lex_state = 0, .external_lex_state = 90}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0, .external_lex_state = 91}, + [2078] = {.lex_state = 0, .external_lex_state = 91}, + [2079] = {.lex_state = 0, .external_lex_state = 90}, + [2080] = {.lex_state = 0, .external_lex_state = 90}, [2081] = {.lex_state = 0}, [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 0, .external_lex_state = 91}, + [2083] = {.lex_state = 0}, [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 0, .external_lex_state = 90}, - [2086] = {.lex_state = 0, .external_lex_state = 90}, - [2087] = {.lex_state = 0, .external_lex_state = 91}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 0}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0}, - [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 0, .external_lex_state = 92}, - [2094] = {.lex_state = 0}, + [2091] = {.lex_state = 0, .external_lex_state = 91}, + [2092] = {.lex_state = 0, .external_lex_state = 91}, + [2093] = {.lex_state = 0}, + [2094] = {.lex_state = 0, .external_lex_state = 92}, [2095] = {.lex_state = 0, .external_lex_state = 92}, - [2096] = {.lex_state = 0, .external_lex_state = 92}, + [2096] = {.lex_state = 0}, [2097] = {.lex_state = 0, .external_lex_state = 92}, - [2098] = {.lex_state = 0, .external_lex_state = 92}, - [2099] = {.lex_state = 0}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 0, .external_lex_state = 92}, [2100] = {.lex_state = 0, .external_lex_state = 92}, - [2101] = {.lex_state = 0, .external_lex_state = 92}, + [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0, .external_lex_state = 92}, [2103] = {.lex_state = 0, .external_lex_state = 92}, [2104] = {.lex_state = 0, .external_lex_state = 92}, [2105] = {.lex_state = 0, .external_lex_state = 92}, - [2106] = {.lex_state = 0}, + [2106] = {.lex_state = 0, .external_lex_state = 92}, [2107] = {.lex_state = 0, .external_lex_state = 92}, [2108] = {.lex_state = 0, .external_lex_state = 92}, [2109] = {.lex_state = 0, .external_lex_state = 92}, [2110] = {.lex_state = 0, .external_lex_state = 92}, [2111] = {.lex_state = 0, .external_lex_state = 92}, - [2112] = {.lex_state = 0, .external_lex_state = 92}, + [2112] = {.lex_state = 0}, [2113] = {.lex_state = 0, .external_lex_state = 92}, [2114] = {.lex_state = 0, .external_lex_state = 92}, - [2115] = {.lex_state = 0}, + [2115] = {.lex_state = 0, .external_lex_state = 92}, [2116] = {.lex_state = 0, .external_lex_state = 92}, [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0, .external_lex_state = 92}, [2119] = {.lex_state = 0, .external_lex_state = 92}, - [2120] = {.lex_state = 0, .external_lex_state = 92}, + [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0, .external_lex_state = 92}, [2122] = {.lex_state = 0, .external_lex_state = 92}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, + [2123] = {.lex_state = 0, .external_lex_state = 92}, + [2124] = {.lex_state = 0, .external_lex_state = 92}, + [2125] = {.lex_state = 0, .external_lex_state = 54}, [2126] = {.lex_state = 0}, [2127] = {.lex_state = 0}, [2128] = {.lex_state = 0}, [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0, .external_lex_state = 54}, + [2131] = {.lex_state = 0}, [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 0, .external_lex_state = 53}, + [2133] = {.lex_state = 0}, [2134] = {.lex_state = 0}, [2135] = {.lex_state = 0}, [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0, .external_lex_state = 54}, - [2138] = {.lex_state = 0, .external_lex_state = 53}, - [2139] = {.lex_state = 0, .external_lex_state = 53}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0, .external_lex_state = 53}, + [2141] = {.lex_state = 0, .external_lex_state = 54}, [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, + [2143] = {.lex_state = 0, .external_lex_state = 53}, + [2144] = {.lex_state = 0, .external_lex_state = 54}, [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0, .external_lex_state = 54}, + [2146] = {.lex_state = 0}, [2147] = {.lex_state = 0}, [2148] = {.lex_state = 0}, [2149] = {.lex_state = 0}, @@ -25647,48 +25661,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0}, + [2154] = {.lex_state = 0, .external_lex_state = 53}, + [2155] = {.lex_state = 0, .external_lex_state = 54}, [2156] = {.lex_state = 0}, [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 0}, + [2158] = {.lex_state = 0, .external_lex_state = 53}, [2159] = {.lex_state = 0}, [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0, .external_lex_state = 54}, + [2163] = {.lex_state = 0, .external_lex_state = 53}, + [2164] = {.lex_state = 0}, [2165] = {.lex_state = 0}, [2166] = {.lex_state = 0, .external_lex_state = 53}, [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0}, + [2168] = {.lex_state = 0, .external_lex_state = 54}, [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0, .external_lex_state = 54}, + [2172] = {.lex_state = 0}, [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 0, .external_lex_state = 54}, + [2174] = {.lex_state = 0}, [2175] = {.lex_state = 0, .external_lex_state = 53}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, - [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 0, .external_lex_state = 53}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0, .external_lex_state = 54}, + [2176] = {.lex_state = 0, .external_lex_state = 53}, + [2177] = {.lex_state = 0, .external_lex_state = 54}, + [2178] = {.lex_state = 0, .external_lex_state = 54}, + [2179] = {.lex_state = 0, .external_lex_state = 53}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 0, .external_lex_state = 54}, + [2182] = {.lex_state = 0, .external_lex_state = 53}, + [2183] = {.lex_state = 0}, [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0, .external_lex_state = 53}, + [2185] = {.lex_state = 0}, [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 0, .external_lex_state = 54}, + [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, [2189] = {.lex_state = 0}, [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 0, .external_lex_state = 53}, - [2192] = {.lex_state = 0, .external_lex_state = 53}, + [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 0}, [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0}, - [2195] = {.lex_state = 0, .external_lex_state = 54}, + [2194] = {.lex_state = 0, .external_lex_state = 54}, + [2195] = {.lex_state = 0}, [2196] = {.lex_state = 0}, [2197] = {.lex_state = 0}, [2198] = {.lex_state = 0}, @@ -25698,288 +25712,290 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2202] = {.lex_state = 0}, [2203] = {.lex_state = 0}, [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 0, .external_lex_state = 54}, + [2205] = {.lex_state = 0}, [2206] = {.lex_state = 0}, - [2207] = {.lex_state = 0, .external_lex_state = 53}, - [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 0, .external_lex_state = 54}, - [2210] = {.lex_state = 0}, + [2207] = {.lex_state = 0}, + [2208] = {.lex_state = 0, .external_lex_state = 54}, + [2209] = {.lex_state = 0}, + [2210] = {.lex_state = 0, .external_lex_state = 54}, [2211] = {.lex_state = 0, .external_lex_state = 53}, - [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0}, + [2212] = {.lex_state = 0, .external_lex_state = 53}, + [2213] = {.lex_state = 0, .external_lex_state = 54}, + [2214] = {.lex_state = 0, .external_lex_state = 54}, + [2215] = {.lex_state = 0, .external_lex_state = 53}, [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 0, .external_lex_state = 54}, - [2218] = {.lex_state = 0, .external_lex_state = 53}, - [2219] = {.lex_state = 0, .external_lex_state = 54}, - [2220] = {.lex_state = 0, .external_lex_state = 53}, - [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0, .external_lex_state = 54}, + [2217] = {.lex_state = 0, .external_lex_state = 53}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 0}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 0, .external_lex_state = 53}, + [2222] = {.lex_state = 0, .external_lex_state = 54}, + [2223] = {.lex_state = 0}, [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 0, .external_lex_state = 54}, + [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 0, .external_lex_state = 53}, + [2227] = {.lex_state = 0}, [2228] = {.lex_state = 0}, - [2229] = {.lex_state = 0, .external_lex_state = 53}, - [2230] = {.lex_state = 0, .external_lex_state = 53}, - [2231] = {.lex_state = 0, .external_lex_state = 53}, + [2229] = {.lex_state = 0}, + [2230] = {.lex_state = 0}, + [2231] = {.lex_state = 0}, [2232] = {.lex_state = 0}, [2233] = {.lex_state = 0}, [2234] = {.lex_state = 0}, [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0, .external_lex_state = 54}, - [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 0, .external_lex_state = 53}, + [2236] = {.lex_state = 0}, + [2237] = {.lex_state = 0, .external_lex_state = 54}, + [2238] = {.lex_state = 0, .external_lex_state = 53}, + [2239] = {.lex_state = 0, .external_lex_state = 54}, + [2240] = {.lex_state = 0, .external_lex_state = 53}, + [2241] = {.lex_state = 0}, [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 0, .external_lex_state = 53}, - [2244] = {.lex_state = 0, .external_lex_state = 54}, + [2243] = {.lex_state = 0}, + [2244] = {.lex_state = 0}, [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 0}, + [2246] = {.lex_state = 0, .external_lex_state = 54}, [2247] = {.lex_state = 0}, - [2248] = {.lex_state = 0}, + [2248] = {.lex_state = 0, .external_lex_state = 53}, [2249] = {.lex_state = 0, .external_lex_state = 54}, - [2250] = {.lex_state = 0, .external_lex_state = 54}, + [2250] = {.lex_state = 0}, [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0, .external_lex_state = 53}, - [2253] = {.lex_state = 0, .external_lex_state = 54}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 0, .external_lex_state = 53}, [2254] = {.lex_state = 0}, [2255] = {.lex_state = 0}, - [2256] = {.lex_state = 0}, + [2256] = {.lex_state = 0, .external_lex_state = 54}, [2257] = {.lex_state = 0}, [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0, .external_lex_state = 59}, - [2260] = {.lex_state = 0, .external_lex_state = 93}, + [2259] = {.lex_state = 0, .external_lex_state = 53}, + [2260] = {.lex_state = 0, .external_lex_state = 54}, [2261] = {.lex_state = 0, .external_lex_state = 59}, - [2262] = {.lex_state = 0, .external_lex_state = 59}, + [2262] = {.lex_state = 0, .external_lex_state = 93}, [2263] = {.lex_state = 0, .external_lex_state = 59}, - [2264] = {.lex_state = 0, .external_lex_state = 94}, - [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0, .external_lex_state = 94}, - [2267] = {.lex_state = 0, .external_lex_state = 94}, - [2268] = {.lex_state = 0, .external_lex_state = 94}, + [2264] = {.lex_state = 0, .external_lex_state = 59}, + [2265] = {.lex_state = 0, .external_lex_state = 59}, + [2266] = {.lex_state = 0, .external_lex_state = 59}, + [2267] = {.lex_state = 0, .external_lex_state = 59}, + [2268] = {.lex_state = 0}, [2269] = {.lex_state = 0, .external_lex_state = 94}, - [2270] = {.lex_state = 0, .external_lex_state = 94}, - [2271] = {.lex_state = 0, .external_lex_state = 59}, - [2272] = {.lex_state = 0, .external_lex_state = 59}, - [2273] = {.lex_state = 0, .external_lex_state = 59}, + [2270] = {.lex_state = 0, .external_lex_state = 59}, + [2271] = {.lex_state = 0, .external_lex_state = 95}, + [2272] = {.lex_state = 0, .external_lex_state = 94}, + [2273] = {.lex_state = 0}, [2274] = {.lex_state = 0, .external_lex_state = 94}, - [2275] = {.lex_state = 0, .external_lex_state = 95}, - [2276] = {.lex_state = 0, .external_lex_state = 59}, - [2277] = {.lex_state = 0, .external_lex_state = 59}, - [2278] = {.lex_state = 0}, + [2275] = {.lex_state = 0}, + [2276] = {.lex_state = 0, .external_lex_state = 95}, + [2277] = {.lex_state = 0, .external_lex_state = 96}, + [2278] = {.lex_state = 0, .external_lex_state = 94}, [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 0, .external_lex_state = 96}, - [2281] = {.lex_state = 0, .external_lex_state = 94}, - [2282] = {.lex_state = 0, .external_lex_state = 59}, - [2283] = {.lex_state = 0, .external_lex_state = 94}, - [2284] = {.lex_state = 0, .external_lex_state = 94}, - [2285] = {.lex_state = 0, .external_lex_state = 94}, - [2286] = {.lex_state = 0, .external_lex_state = 93}, - [2287] = {.lex_state = 0, .external_lex_state = 93}, - [2288] = {.lex_state = 0, .external_lex_state = 94}, + [2280] = {.lex_state = 0, .external_lex_state = 95}, + [2281] = {.lex_state = 0, .external_lex_state = 59}, + [2282] = {.lex_state = 0}, + [2283] = {.lex_state = 0, .external_lex_state = 59}, + [2284] = {.lex_state = 0, .external_lex_state = 59}, + [2285] = {.lex_state = 0, .external_lex_state = 95}, + [2286] = {.lex_state = 0, .external_lex_state = 94}, + [2287] = {.lex_state = 0, .external_lex_state = 95}, + [2288] = {.lex_state = 0, .external_lex_state = 93}, [2289] = {.lex_state = 0, .external_lex_state = 93}, [2290] = {.lex_state = 0, .external_lex_state = 94}, - [2291] = {.lex_state = 0, .external_lex_state = 93}, - [2292] = {.lex_state = 0, .external_lex_state = 94}, - [2293] = {.lex_state = 0, .external_lex_state = 96}, - [2294] = {.lex_state = 0, .external_lex_state = 94}, - [2295] = {.lex_state = 0, .external_lex_state = 94}, - [2296] = {.lex_state = 0, .external_lex_state = 94}, - [2297] = {.lex_state = 0, .external_lex_state = 94}, - [2298] = {.lex_state = 0, .external_lex_state = 96}, - [2299] = {.lex_state = 0, .external_lex_state = 96}, - [2300] = {.lex_state = 0, .external_lex_state = 96}, - [2301] = {.lex_state = 0, .external_lex_state = 59}, - [2302] = {.lex_state = 0, .external_lex_state = 96}, - [2303] = {.lex_state = 0}, - [2304] = {.lex_state = 0, .external_lex_state = 97}, - [2305] = {.lex_state = 0, .external_lex_state = 96}, - [2306] = {.lex_state = 0, .external_lex_state = 96}, - [2307] = {.lex_state = 0, .external_lex_state = 59}, - [2308] = {.lex_state = 0, .external_lex_state = 59}, - [2309] = {.lex_state = 0, .external_lex_state = 59}, - [2310] = {.lex_state = 0, .external_lex_state = 59}, - [2311] = {.lex_state = 0, .external_lex_state = 59}, + [2291] = {.lex_state = 0, .external_lex_state = 95}, + [2292] = {.lex_state = 0, .external_lex_state = 95}, + [2293] = {.lex_state = 0, .external_lex_state = 94}, + [2294] = {.lex_state = 0, .external_lex_state = 95}, + [2295] = {.lex_state = 0, .external_lex_state = 59}, + [2296] = {.lex_state = 0}, + [2297] = {.lex_state = 0, .external_lex_state = 95}, + [2298] = {.lex_state = 0, .external_lex_state = 95}, + [2299] = {.lex_state = 0, .external_lex_state = 95}, + [2300] = {.lex_state = 0, .external_lex_state = 94}, + [2301] = {.lex_state = 0, .external_lex_state = 94}, + [2302] = {.lex_state = 0, .external_lex_state = 95}, + [2303] = {.lex_state = 0, .external_lex_state = 95}, + [2304] = {.lex_state = 0, .external_lex_state = 95}, + [2305] = {.lex_state = 0, .external_lex_state = 95}, + [2306] = {.lex_state = 0, .external_lex_state = 95}, + [2307] = {.lex_state = 0, .external_lex_state = 94}, + [2308] = {.lex_state = 0, .external_lex_state = 94}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 0, .external_lex_state = 95}, + [2311] = {.lex_state = 0, .external_lex_state = 95}, [2312] = {.lex_state = 0, .external_lex_state = 59}, [2313] = {.lex_state = 0, .external_lex_state = 59}, [2314] = {.lex_state = 0, .external_lex_state = 59}, - [2315] = {.lex_state = 0}, - [2316] = {.lex_state = 0}, - [2317] = {.lex_state = 0}, - [2318] = {.lex_state = 0, .external_lex_state = 59}, + [2315] = {.lex_state = 0, .external_lex_state = 59}, + [2316] = {.lex_state = 0, .external_lex_state = 94}, + [2317] = {.lex_state = 0, .external_lex_state = 59}, + [2318] = {.lex_state = 0, .external_lex_state = 94}, [2319] = {.lex_state = 0, .external_lex_state = 94}, - [2320] = {.lex_state = 0, .external_lex_state = 96}, - [2321] = {.lex_state = 0, .external_lex_state = 96}, - [2322] = {.lex_state = 0, .external_lex_state = 94}, - [2323] = {.lex_state = 0, .external_lex_state = 94}, - [2324] = {.lex_state = 0, .external_lex_state = 94}, - [2325] = {.lex_state = 0, .external_lex_state = 94}, - [2326] = {.lex_state = 0, .external_lex_state = 96}, - [2327] = {.lex_state = 0, .external_lex_state = 94}, - [2328] = {.lex_state = 0, .external_lex_state = 94}, - [2329] = {.lex_state = 0, .external_lex_state = 96}, - [2330] = {.lex_state = 0, .external_lex_state = 59}, + [2320] = {.lex_state = 0, .external_lex_state = 59}, + [2321] = {.lex_state = 0, .external_lex_state = 59}, + [2322] = {.lex_state = 0, .external_lex_state = 59}, + [2323] = {.lex_state = 0, .external_lex_state = 59}, + [2324] = {.lex_state = 0, .external_lex_state = 59}, + [2325] = {.lex_state = 0, .external_lex_state = 59}, + [2326] = {.lex_state = 0, .external_lex_state = 59}, + [2327] = {.lex_state = 0, .external_lex_state = 59}, + [2328] = {.lex_state = 0, .external_lex_state = 59}, + [2329] = {.lex_state = 0, .external_lex_state = 59}, + [2330] = {.lex_state = 0, .external_lex_state = 95}, [2331] = {.lex_state = 0, .external_lex_state = 59}, - [2332] = {.lex_state = 0, .external_lex_state = 94}, - [2333] = {.lex_state = 0, .external_lex_state = 97}, - [2334] = {.lex_state = 0, .external_lex_state = 59}, - [2335] = {.lex_state = 0, .external_lex_state = 59}, - [2336] = {.lex_state = 0, .external_lex_state = 59}, - [2337] = {.lex_state = 0, .external_lex_state = 59}, - [2338] = {.lex_state = 0, .external_lex_state = 96}, - [2339] = {.lex_state = 0, .external_lex_state = 94}, - [2340] = {.lex_state = 0, .external_lex_state = 94}, - [2341] = {.lex_state = 0, .external_lex_state = 94}, - [2342] = {.lex_state = 0, .external_lex_state = 94}, - [2343] = {.lex_state = 0, .external_lex_state = 59}, - [2344] = {.lex_state = 0, .external_lex_state = 94}, - [2345] = {.lex_state = 0, .external_lex_state = 97}, - [2346] = {.lex_state = 0, .external_lex_state = 93}, - [2347] = {.lex_state = 0, .external_lex_state = 94}, - [2348] = {.lex_state = 0, .external_lex_state = 96}, - [2349] = {.lex_state = 0, .external_lex_state = 94}, - [2350] = {.lex_state = 0, .external_lex_state = 96}, - [2351] = {.lex_state = 0, .external_lex_state = 94}, - [2352] = {.lex_state = 0, .external_lex_state = 59}, - [2353] = {.lex_state = 0, .external_lex_state = 59}, - [2354] = {.lex_state = 0, .external_lex_state = 94}, - [2355] = {.lex_state = 0, .external_lex_state = 94}, - [2356] = {.lex_state = 0, .external_lex_state = 59}, - [2357] = {.lex_state = 0, .external_lex_state = 59}, - [2358] = {.lex_state = 0, .external_lex_state = 97}, - [2359] = {.lex_state = 0, .external_lex_state = 93}, + [2332] = {.lex_state = 0, .external_lex_state = 59}, + [2333] = {.lex_state = 0, .external_lex_state = 95}, + [2334] = {.lex_state = 0, .external_lex_state = 95}, + [2335] = {.lex_state = 0, .external_lex_state = 97}, + [2336] = {.lex_state = 0, .external_lex_state = 95}, + [2337] = {.lex_state = 0, .external_lex_state = 95}, + [2338] = {.lex_state = 0, .external_lex_state = 95}, + [2339] = {.lex_state = 0}, + [2340] = {.lex_state = 0, .external_lex_state = 59}, + [2341] = {.lex_state = 0, .external_lex_state = 95}, + [2342] = {.lex_state = 0, .external_lex_state = 95}, + [2343] = {.lex_state = 0, .external_lex_state = 95}, + [2344] = {.lex_state = 0, .external_lex_state = 95}, + [2345] = {.lex_state = 0, .external_lex_state = 59}, + [2346] = {.lex_state = 0, .external_lex_state = 59}, + [2347] = {.lex_state = 0}, + [2348] = {.lex_state = 0, .external_lex_state = 93}, + [2349] = {.lex_state = 0, .external_lex_state = 95}, + [2350] = {.lex_state = 0, .external_lex_state = 94}, + [2351] = {.lex_state = 0, .external_lex_state = 95}, + [2352] = {.lex_state = 0, .external_lex_state = 94}, + [2353] = {.lex_state = 0, .external_lex_state = 95}, + [2354] = {.lex_state = 0, .external_lex_state = 93}, + [2355] = {.lex_state = 0, .external_lex_state = 93}, + [2356] = {.lex_state = 0, .external_lex_state = 95}, + [2357] = {.lex_state = 0, .external_lex_state = 95}, + [2358] = {.lex_state = 0, .external_lex_state = 95}, + [2359] = {.lex_state = 0, .external_lex_state = 94}, [2360] = {.lex_state = 0, .external_lex_state = 59}, - [2361] = {.lex_state = 0, .external_lex_state = 96}, - [2362] = {.lex_state = 0, .external_lex_state = 94}, - [2363] = {.lex_state = 0, .external_lex_state = 96}, + [2361] = {.lex_state = 0, .external_lex_state = 93}, + [2362] = {.lex_state = 0, .external_lex_state = 59}, + [2363] = {.lex_state = 0, .external_lex_state = 94}, [2364] = {.lex_state = 0}, - [2365] = {.lex_state = 0, .external_lex_state = 59}, - [2366] = {.lex_state = 0, .external_lex_state = 96}, - [2367] = {.lex_state = 0, .external_lex_state = 94}, - [2368] = {.lex_state = 0, .external_lex_state = 94}, - [2369] = {.lex_state = 0, .external_lex_state = 96}, - [2370] = {.lex_state = 0, .external_lex_state = 59}, - [2371] = {.lex_state = 0}, - [2372] = {.lex_state = 0, .external_lex_state = 59}, - [2373] = {.lex_state = 0, .external_lex_state = 59}, - [2374] = {.lex_state = 0, .external_lex_state = 96}, - [2375] = {.lex_state = 0, .external_lex_state = 59}, - [2376] = {.lex_state = 0, .external_lex_state = 96}, - [2377] = {.lex_state = 0, .external_lex_state = 59}, - [2378] = {.lex_state = 0, .external_lex_state = 96}, - [2379] = {.lex_state = 0, .external_lex_state = 59}, - [2380] = {.lex_state = 0, .external_lex_state = 94}, - [2381] = {.lex_state = 0, .external_lex_state = 94}, - [2382] = {.lex_state = 0, .external_lex_state = 59}, - [2383] = {.lex_state = 0, .external_lex_state = 59}, - [2384] = {.lex_state = 0, .external_lex_state = 94}, - [2385] = {.lex_state = 0, .external_lex_state = 93}, + [2365] = {.lex_state = 0, .external_lex_state = 94}, + [2366] = {.lex_state = 0, .external_lex_state = 95}, + [2367] = {.lex_state = 0}, + [2368] = {.lex_state = 0, .external_lex_state = 95}, + [2369] = {.lex_state = 0, .external_lex_state = 95}, + [2370] = {.lex_state = 0, .external_lex_state = 95}, + [2371] = {.lex_state = 0, .external_lex_state = 94}, + [2372] = {.lex_state = 0, .external_lex_state = 94}, + [2373] = {.lex_state = 0, .external_lex_state = 95}, + [2374] = {.lex_state = 0, .external_lex_state = 59}, + [2375] = {.lex_state = 0, .external_lex_state = 94}, + [2376] = {.lex_state = 0, .external_lex_state = 94}, + [2377] = {.lex_state = 0, .external_lex_state = 97}, + [2378] = {.lex_state = 0, .external_lex_state = 94}, + [2379] = {.lex_state = 0, .external_lex_state = 95}, + [2380] = {.lex_state = 0, .external_lex_state = 59}, + [2381] = {.lex_state = 0, .external_lex_state = 97}, + [2382] = {.lex_state = 0, .external_lex_state = 95}, + [2383] = {.lex_state = 0, .external_lex_state = 95}, + [2384] = {.lex_state = 0, .external_lex_state = 97}, + [2385] = {.lex_state = 0, .external_lex_state = 59}, [2386] = {.lex_state = 0, .external_lex_state = 59}, - [2387] = {.lex_state = 0, .external_lex_state = 96}, + [2387] = {.lex_state = 0, .external_lex_state = 93}, [2388] = {.lex_state = 0, .external_lex_state = 59}, - [2389] = {.lex_state = 0, .external_lex_state = 96}, + [2389] = {.lex_state = 0, .external_lex_state = 94}, [2390] = {.lex_state = 0, .external_lex_state = 59}, - [2391] = {.lex_state = 0}, - [2392] = {.lex_state = 0, .external_lex_state = 94}, - [2393] = {.lex_state = 0, .external_lex_state = 94}, - [2394] = {.lex_state = 0, .external_lex_state = 94}, - [2395] = {.lex_state = 0, .external_lex_state = 59}, - [2396] = {.lex_state = 0, .external_lex_state = 96}, - [2397] = {.lex_state = 0, .external_lex_state = 94}, - [2398] = {.lex_state = 0, .external_lex_state = 93}, - [2399] = {.lex_state = 0, .external_lex_state = 94}, - [2400] = {.lex_state = 0, .external_lex_state = 96}, - [2401] = {.lex_state = 0, .external_lex_state = 94}, - [2402] = {.lex_state = 0, .external_lex_state = 96}, - [2403] = {.lex_state = 0, .external_lex_state = 94}, - [2404] = {.lex_state = 0}, - [2405] = {.lex_state = 0, .external_lex_state = 94}, - [2406] = {.lex_state = 0, .external_lex_state = 94}, - [2407] = {.lex_state = 0, .external_lex_state = 94}, - [2408] = {.lex_state = 0, .external_lex_state = 94}, - [2409] = {.lex_state = 0, .external_lex_state = 59}, - [2410] = {.lex_state = 0, .external_lex_state = 93}, - [2411] = {.lex_state = 0, .external_lex_state = 94}, - [2412] = {.lex_state = 0, .external_lex_state = 96}, - [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 0, .external_lex_state = 96}, - [2415] = {.lex_state = 0, .external_lex_state = 96}, - [2416] = {.lex_state = 0, .external_lex_state = 95}, - [2417] = {.lex_state = 0, .external_lex_state = 95}, - [2418] = {.lex_state = 0, .external_lex_state = 94}, - [2419] = {.lex_state = 0, .external_lex_state = 94}, - [2420] = {.lex_state = 0, .external_lex_state = 59}, - [2421] = {.lex_state = 0, .external_lex_state = 59}, - [2422] = {.lex_state = 0, .external_lex_state = 93}, + [2391] = {.lex_state = 0, .external_lex_state = 94}, + [2392] = {.lex_state = 0, .external_lex_state = 59}, + [2393] = {.lex_state = 0}, + [2394] = {.lex_state = 0, .external_lex_state = 59}, + [2395] = {.lex_state = 0, .external_lex_state = 95}, + [2396] = {.lex_state = 0, .external_lex_state = 95}, + [2397] = {.lex_state = 0, .external_lex_state = 95}, + [2398] = {.lex_state = 0, .external_lex_state = 95}, + [2399] = {.lex_state = 0, .external_lex_state = 59}, + [2400] = {.lex_state = 0, .external_lex_state = 93}, + [2401] = {.lex_state = 0, .external_lex_state = 95}, + [2402] = {.lex_state = 0, .external_lex_state = 94}, + [2403] = {.lex_state = 0, .external_lex_state = 95}, + [2404] = {.lex_state = 0, .external_lex_state = 94}, + [2405] = {.lex_state = 0, .external_lex_state = 95}, + [2406] = {.lex_state = 0}, + [2407] = {.lex_state = 0, .external_lex_state = 59}, + [2408] = {.lex_state = 0, .external_lex_state = 95}, + [2409] = {.lex_state = 0, .external_lex_state = 95}, + [2410] = {.lex_state = 0, .external_lex_state = 95}, + [2411] = {.lex_state = 0, .external_lex_state = 95}, + [2412] = {.lex_state = 0, .external_lex_state = 93}, + [2413] = {.lex_state = 0, .external_lex_state = 95}, + [2414] = {.lex_state = 0, .external_lex_state = 94}, + [2415] = {.lex_state = 0, .external_lex_state = 59}, + [2416] = {.lex_state = 0, .external_lex_state = 94}, + [2417] = {.lex_state = 0, .external_lex_state = 59}, + [2418] = {.lex_state = 0, .external_lex_state = 96}, + [2419] = {.lex_state = 0, .external_lex_state = 96}, + [2420] = {.lex_state = 0, .external_lex_state = 95}, + [2421] = {.lex_state = 0, .external_lex_state = 95}, + [2422] = {.lex_state = 0, .external_lex_state = 94}, [2423] = {.lex_state = 0, .external_lex_state = 59}, - [2424] = {.lex_state = 0, .external_lex_state = 96}, + [2424] = {.lex_state = 0, .external_lex_state = 93}, [2425] = {.lex_state = 0, .external_lex_state = 59}, - [2426] = {.lex_state = 0, .external_lex_state = 96}, - [2427] = {.lex_state = 0, .external_lex_state = 96}, + [2426] = {.lex_state = 0, .external_lex_state = 94}, + [2427] = {.lex_state = 0, .external_lex_state = 59}, [2428] = {.lex_state = 0, .external_lex_state = 94}, - [2429] = {.lex_state = 0, .external_lex_state = 94}, - [2430] = {.lex_state = 0, .external_lex_state = 94}, - [2431] = {.lex_state = 0, .external_lex_state = 94}, - [2432] = {.lex_state = 0, .external_lex_state = 94}, - [2433] = {.lex_state = 0}, - [2434] = {.lex_state = 0, .external_lex_state = 93}, - [2435] = {.lex_state = 0, .external_lex_state = 59}, - [2436] = {.lex_state = 0, .external_lex_state = 96}, - [2437] = {.lex_state = 0, .external_lex_state = 94}, - [2438] = {.lex_state = 0, .external_lex_state = 96}, - [2439] = {.lex_state = 0, .external_lex_state = 94}, + [2429] = {.lex_state = 0, .external_lex_state = 59}, + [2430] = {.lex_state = 0, .external_lex_state = 95}, + [2431] = {.lex_state = 0, .external_lex_state = 95}, + [2432] = {.lex_state = 0, .external_lex_state = 95}, + [2433] = {.lex_state = 0, .external_lex_state = 95}, + [2434] = {.lex_state = 0, .external_lex_state = 95}, + [2435] = {.lex_state = 0, .external_lex_state = 95}, + [2436] = {.lex_state = 0, .external_lex_state = 93}, + [2437] = {.lex_state = 0, .external_lex_state = 95}, + [2438] = {.lex_state = 0, .external_lex_state = 94}, + [2439] = {.lex_state = 0, .external_lex_state = 95}, [2440] = {.lex_state = 0, .external_lex_state = 94}, - [2441] = {.lex_state = 0, .external_lex_state = 94}, - [2442] = {.lex_state = 0, .external_lex_state = 93}, - [2443] = {.lex_state = 0, .external_lex_state = 96}, - [2444] = {.lex_state = 0, .external_lex_state = 96}, + [2441] = {.lex_state = 0, .external_lex_state = 59}, + [2442] = {.lex_state = 0, .external_lex_state = 95}, + [2443] = {.lex_state = 0, .external_lex_state = 95}, + [2444] = {.lex_state = 0, .external_lex_state = 93}, [2445] = {.lex_state = 0, .external_lex_state = 94}, - [2446] = {.lex_state = 0, .external_lex_state = 95}, - [2447] = {.lex_state = 0}, - [2448] = {.lex_state = 0, .external_lex_state = 94}, - [2449] = {.lex_state = 0, .external_lex_state = 94}, - [2450] = {.lex_state = 0}, - [2451] = {.lex_state = 0, .external_lex_state = 96}, - [2452] = {.lex_state = 0, .external_lex_state = 96}, - [2453] = {.lex_state = 0, .external_lex_state = 96}, + [2446] = {.lex_state = 0, .external_lex_state = 94}, + [2447] = {.lex_state = 0, .external_lex_state = 95}, + [2448] = {.lex_state = 0, .external_lex_state = 96}, + [2449] = {.lex_state = 0}, + [2450] = {.lex_state = 0, .external_lex_state = 95}, + [2451] = {.lex_state = 0, .external_lex_state = 59}, + [2452] = {.lex_state = 0}, + [2453] = {.lex_state = 0, .external_lex_state = 94}, [2454] = {.lex_state = 0, .external_lex_state = 94}, - [2455] = {.lex_state = 0, .external_lex_state = 96}, - [2456] = {.lex_state = 0, .external_lex_state = 96}, - [2457] = {.lex_state = 0, .external_lex_state = 96}, + [2455] = {.lex_state = 0, .external_lex_state = 94}, + [2456] = {.lex_state = 0, .external_lex_state = 95}, + [2457] = {.lex_state = 0, .external_lex_state = 94}, [2458] = {.lex_state = 0, .external_lex_state = 94}, - [2459] = {.lex_state = 0, .external_lex_state = 96}, - [2460] = {.lex_state = 0, .external_lex_state = 96}, - [2461] = {.lex_state = 0, .external_lex_state = 96}, + [2459] = {.lex_state = 0, .external_lex_state = 94}, + [2460] = {.lex_state = 0, .external_lex_state = 95}, + [2461] = {.lex_state = 0, .external_lex_state = 94}, [2462] = {.lex_state = 0, .external_lex_state = 94}, - [2463] = {.lex_state = 0, .external_lex_state = 96}, - [2464] = {.lex_state = 0, .external_lex_state = 96}, - [2465] = {.lex_state = 0, .external_lex_state = 96}, + [2463] = {.lex_state = 0, .external_lex_state = 94}, + [2464] = {.lex_state = 0, .external_lex_state = 95}, + [2465] = {.lex_state = 0, .external_lex_state = 94}, [2466] = {.lex_state = 0, .external_lex_state = 94}, - [2467] = {.lex_state = 0, .external_lex_state = 96}, - [2468] = {.lex_state = 0, .external_lex_state = 96}, - [2469] = {.lex_state = 0, .external_lex_state = 96}, + [2467] = {.lex_state = 0, .external_lex_state = 94}, + [2468] = {.lex_state = 0, .external_lex_state = 95}, + [2469] = {.lex_state = 0, .external_lex_state = 94}, [2470] = {.lex_state = 0, .external_lex_state = 94}, - [2471] = {.lex_state = 0, .external_lex_state = 96}, - [2472] = {.lex_state = 0, .external_lex_state = 96}, - [2473] = {.lex_state = 0, .external_lex_state = 96}, + [2471] = {.lex_state = 0, .external_lex_state = 94}, + [2472] = {.lex_state = 0, .external_lex_state = 95}, + [2473] = {.lex_state = 0, .external_lex_state = 94}, [2474] = {.lex_state = 0, .external_lex_state = 94}, - [2475] = {.lex_state = 0, .external_lex_state = 96}, - [2476] = {.lex_state = 0, .external_lex_state = 96}, - [2477] = {.lex_state = 0, .external_lex_state = 96}, + [2475] = {.lex_state = 0, .external_lex_state = 94}, + [2476] = {.lex_state = 0, .external_lex_state = 95}, + [2477] = {.lex_state = 0, .external_lex_state = 94}, [2478] = {.lex_state = 0, .external_lex_state = 94}, - [2479] = {.lex_state = 0, .external_lex_state = 96}, - [2480] = {.lex_state = 0, .external_lex_state = 96}, - [2481] = {.lex_state = 0, .external_lex_state = 96}, + [2479] = {.lex_state = 0, .external_lex_state = 94}, + [2480] = {.lex_state = 0, .external_lex_state = 95}, + [2481] = {.lex_state = 0, .external_lex_state = 94}, [2482] = {.lex_state = 0, .external_lex_state = 94}, - [2483] = {.lex_state = 0, .external_lex_state = 96}, - [2484] = {.lex_state = 0, .external_lex_state = 96}, - [2485] = {.lex_state = 0, .external_lex_state = 96}, + [2483] = {.lex_state = 0, .external_lex_state = 94}, + [2484] = {.lex_state = 0, .external_lex_state = 95}, + [2485] = {.lex_state = 0, .external_lex_state = 94}, [2486] = {.lex_state = 0, .external_lex_state = 94}, + [2487] = {.lex_state = 0, .external_lex_state = 94}, + [2488] = {.lex_state = 0, .external_lex_state = 95}, }; enum { @@ -26249,12 +26265,8 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [6] = { [ts_external_token__split_token] = true, - [ts_external_token__line_ending] = true, [ts_external_token__soft_line_break_marker] = true, - [ts_external_token__block_close] = true, - [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, - [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -26270,18 +26282,13 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star] = true, [ts_external_token__list_marker_parenthesis] = true, [ts_external_token__list_marker_dot] = true, - [ts_external_token__list_marker_minus_dont_interrupt] = true, - [ts_external_token__list_marker_plus_dont_interrupt] = true, - [ts_external_token__list_marker_star_dont_interrupt] = true, - [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, - [ts_external_token__list_marker_dot_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, - [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_underscore] = true, }, [7] = { [ts_external_token__split_token] = true, @@ -26347,8 +26354,12 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [9] = { [ts_external_token__split_token] = true, + [ts_external_token__line_ending] = true, [ts_external_token__soft_line_break_marker] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -26364,18 +26375,26 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star] = true, [ts_external_token__list_marker_parenthesis] = true, [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, }, [10] = { [ts_external_token__split_token] = true, [ts_external_token__soft_line_break_marker] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, + [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -26391,17 +26410,22 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star] = true, [ts_external_token__list_marker_parenthesis] = true, [ts_external_token__list_marker_dot] = true, + [ts_external_token__list_marker_minus_dont_interrupt] = true, + [ts_external_token__list_marker_plus_dont_interrupt] = true, + [ts_external_token__list_marker_star_dont_interrupt] = true, + [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, + [ts_external_token__list_marker_dot_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, }, [11] = { [ts_external_token__split_token] = true, [ts_external_token__soft_line_break_marker] = true, - [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, @@ -26436,9 +26460,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [12] = { [ts_external_token__split_token] = true, [ts_external_token__soft_line_break_marker] = true, - [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, - [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -26454,16 +26476,10 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star] = true, [ts_external_token__list_marker_parenthesis] = true, [ts_external_token__list_marker_dot] = true, - [ts_external_token__list_marker_minus_dont_interrupt] = true, - [ts_external_token__list_marker_plus_dont_interrupt] = true, - [ts_external_token__list_marker_star_dont_interrupt] = true, - [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, - [ts_external_token__list_marker_dot_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, - [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, }, @@ -26598,7 +26614,8 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__no_indented_chunk] = true, }, [17] = { - [ts_external_token__split_token] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26607,8 +26624,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, - [ts_external_token__setext_h1_underline] = true, - [ts_external_token__setext_h2_underline] = true, [ts_external_token__setext_h2_underline_or_thematic_break] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, @@ -26625,12 +26640,13 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__no_indented_chunk] = true, }, [18] = { - [ts_external_token__block_close] = true, - [ts_external_token__block_continuation] = true, + [ts_external_token__split_token] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26639,6 +26655,8 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, + [ts_external_token__setext_h1_underline] = true, + [ts_external_token__setext_h2_underline] = true, [ts_external_token__setext_h2_underline_or_thematic_break] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, @@ -26655,15 +26673,10 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, - [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__no_indented_chunk] = true, }, [19] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26672,6 +26685,8 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, + [ts_external_token__setext_h1_underline] = true, + [ts_external_token__setext_h2_underline] = true, [ts_external_token__setext_h2_underline_or_thematic_break] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, @@ -26688,13 +26703,11 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, - [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, }, [20] = { - [ts_external_token__split_token] = true, - [ts_external_token__block_close] = true, + [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26703,8 +26716,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, - [ts_external_token__setext_h1_underline] = true, - [ts_external_token__setext_h2_underline] = true, [ts_external_token__setext_h2_underline_or_thematic_break] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, @@ -26721,12 +26732,14 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__no_indented_chunk] = true, }, [21] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_continuation] = true, + [ts_external_token__split_token] = true, + [ts_external_token__block_close] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26735,6 +26748,8 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, + [ts_external_token__setext_h1_underline] = true, + [ts_external_token__setext_h2_underline] = true, [ts_external_token__setext_h2_underline_or_thematic_break] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, @@ -26751,11 +26766,11 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, - [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, }, [22] = { + [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, @@ -26784,7 +26799,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__no_indented_chunk] = true, }, [23] = { [ts_external_token__block_close] = true, @@ -26818,6 +26832,9 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, }, [24] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26826,8 +26843,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, - [ts_external_token__setext_h1_underline] = true, - [ts_external_token__setext_h2_underline] = true, [ts_external_token__setext_h2_underline_or_thematic_break] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, @@ -26844,6 +26859,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__code_span_start] = true, + [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, }, @@ -26884,6 +26900,17 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__no_indented_chunk] = true, }, [27] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, + }, + [28] = { + [ts_external_token__code_span_start] = true, + [ts_external_token__emphasis_open_star] = true, + [ts_external_token__emphasis_open_underscore] = true, + }, + [29] = { [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -26912,17 +26939,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_open_underscore] = true, [ts_external_token__no_indented_chunk] = true, }, - [28] = { - [ts_external_token__code_span_start] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, - }, - [29] = { - [ts_external_token__code_span_start] = true, - [ts_external_token__emphasis_open_star] = true, - [ts_external_token__emphasis_open_underscore] = true, - }, [30] = { [ts_external_token__split_token] = true, [ts_external_token__soft_line_break_marker] = true, @@ -26975,20 +26991,20 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_punctuation] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, + [ts_external_token__emphasis_close_star] = true, }, [33] = { [ts_external_token__code_span_start] = true, [ts_external_token__last_token_punctuation] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, + [ts_external_token__emphasis_close_underscore] = true, }, [34] = { [ts_external_token__code_span_start] = true, [ts_external_token__last_token_punctuation] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, }, [35] = { [ts_external_token__code_span_start] = true, @@ -27029,7 +27045,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__emphasis_close_star] = true, }, [41] = { [ts_external_token__line_ending] = true, @@ -27038,7 +27054,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, + [ts_external_token__emphasis_close_underscore] = true, }, [42] = { [ts_external_token__block_continuation] = true, @@ -27056,19 +27072,19 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__emphasis_close_underscore] = true, }, [44] = { - [ts_external_token__block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_underscore] = true, + [ts_external_token__emphasis_close_star] = true, }, [45] = { + [ts_external_token__block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__last_token_whitespace] = true, [ts_external_token__emphasis_open_star] = true, [ts_external_token__emphasis_open_underscore] = true, - [ts_external_token__emphasis_close_star] = true, + [ts_external_token__emphasis_close_underscore] = true, }, [46] = { [ts_external_token__line_ending] = true, @@ -27122,11 +27138,11 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [53] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, [54] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, }, [55] = { [ts_external_token__line_ending] = true, @@ -27135,13 +27151,13 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [56] = { + [ts_external_token__code_span_close] = true, + }, + [57] = { [ts_external_token__block_continuation] = true, [ts_external_token__blank_line_start] = true, [ts_external_token__last_token_whitespace] = true, }, - [57] = { - [ts_external_token__code_span_close] = true, - }, [58] = { [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, @@ -27151,8 +27167,6 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_close] = true, }, [60] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, [ts_external_token__last_token_whitespace] = true, }, @@ -27160,25 +27174,27 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, [62] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, - [ts_external_token__blank_line_start] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, [63] = { + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__last_token_whitespace] = true, }, [64] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token__block_continuation] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__blank_line_start] = true, [ts_external_token__last_token_whitespace] = true, }, [65] = { @@ -27188,7 +27204,10 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [66] = { - [ts_external_token__blank_line_start] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__block_continuation] = true, + [ts_external_token__code_span_close] = true, + [ts_external_token__last_token_whitespace] = true, }, [67] = { [ts_external_token__block_close] = true, @@ -27197,10 +27216,7 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__last_token_whitespace] = true, }, [68] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_continuation] = true, - [ts_external_token__code_span_close] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__blank_line_start] = true, }, [69] = { [ts_external_token__block_close] = true, @@ -27217,16 +27233,16 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [72] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__last_token_punctuation] = true, + [ts_external_token__close_block] = true, }, [73] = { [ts_external_token__block_close] = true, - [ts_external_token__last_token_whitespace] = true, + [ts_external_token__blank_line_start] = true, }, [74] = { [ts_external_token__block_close] = true, - [ts_external_token__blank_line_start] = true, + [ts_external_token__last_token_whitespace] = true, }, [75] = { [ts_external_token__block_close] = true, @@ -27239,18 +27255,18 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { }, [77] = { [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_punctuation] = true, - [ts_external_token__close_block] = true, }, [78] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__last_token_whitespace] = true, }, [79] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, - [ts_external_token__last_token_punctuation] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__last_token_whitespace] = true, }, [80] = { [ts_external_token__code_span_close] = true, @@ -27275,21 +27291,21 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__no_indented_chunk] = true, }, [85] = { - [ts_external_token__last_token_whitespace] = true, - [ts_external_token__no_indented_chunk] = true, - }, - [86] = { [ts_external_token__split_token] = true, [ts_external_token__line_ending] = true, [ts_external_token__soft_line_break_marker] = true, [ts_external_token__block_continuation] = true, [ts_external_token__last_token_whitespace] = true, }, + [86] = { + [ts_external_token__last_token_whitespace] = true, + [ts_external_token__no_indented_chunk] = true, + }, [87] = { - [ts_external_token__split_token] = true, - [ts_external_token__soft_line_break_marker] = true, + [ts_external_token__line_ending] = true, [ts_external_token__block_continuation] = true, [ts_external_token__last_token_whitespace] = true, + [ts_external_token__trigger_error] = true, }, [88] = { [ts_external_token__line_ending] = true, @@ -27298,10 +27314,10 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__close_block] = true, }, [89] = { - [ts_external_token__line_ending] = true, + [ts_external_token__split_token] = true, + [ts_external_token__soft_line_break_marker] = true, [ts_external_token__block_continuation] = true, [ts_external_token__last_token_whitespace] = true, - [ts_external_token__trigger_error] = true, }, [90] = { [ts_external_token__block_continuation] = true, @@ -27321,13 +27337,13 @@ static const bool ts_external_scanner_states[98][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_ending] = true, }, [94] = { - [ts_external_token__open_block] = true, + [ts_external_token__close_block] = true, }, [95] = { - [ts_external_token__open_block_dont_interrupt_paragraph] = true, + [ts_external_token__open_block] = true, }, [96] = { - [ts_external_token__close_block] = true, + [ts_external_token__open_block_dont_interrupt_paragraph] = true, }, [97] = { [ts_external_token__trigger_error] = true, @@ -27442,83 +27458,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__trigger_error] = ACTIONS(1), }, [1] = { - [sym_document] = STATE(2404), + [sym_document] = STATE(2406), [sym__block] = STATE(45), [sym__blank_line] = STATE(45), - [sym_paragraph] = STATE(111), + [sym_paragraph] = STATE(99), [sym_indented_code_block] = STATE(45), - [sym__indented_chunk] = STATE(139), + [sym__indented_chunk] = STATE(293), [sym_block_quote] = STATE(45), [sym_atx_heading] = STATE(45), [sym_setext_heading] = STATE(45), [sym_thematic_break] = STATE(45), [sym_list] = STATE(45), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), + [sym__list_plus] = STATE(371), + [sym__list_minus] = STATE(371), + [sym__list_star] = STATE(371), + [sym__list_dot] = STATE(371), + [sym__list_parenthesis] = STATE(371), [sym_list_marker_plus] = STATE(38), [sym_list_marker_minus] = STATE(39), [sym_list_marker_star] = STATE(40), [sym_list_marker_dot] = STATE(41), [sym_list_marker_parenthesis] = STATE(42), - [sym__list_item_plus] = STATE(267), - [sym__list_item_minus] = STATE(268), - [sym__list_item_star] = STATE(272), - [sym__list_item_dot] = STATE(273), - [sym__list_item_parenthesis] = STATE(275), + [sym__list_item_plus] = STATE(266), + [sym__list_item_minus] = STATE(264), + [sym__list_item_star] = STATE(262), + [sym__list_item_dot] = STATE(261), + [sym__list_item_parenthesis] = STATE(259), [sym_fenced_code_block] = STATE(45), - [sym__html_block_1] = STATE(428), - [sym__html_block_2] = STATE(428), - [sym__html_block_3] = STATE(428), - [sym__html_block_4] = STATE(428), - [sym__html_block_5] = STATE(428), - [sym__html_block_6] = STATE(428), - [sym__html_block_7] = STATE(428), + [sym__html_block_1] = STATE(386), + [sym__html_block_2] = STATE(386), + [sym__html_block_3] = STATE(386), + [sym__html_block_4] = STATE(386), + [sym__html_block_5] = STATE(386), + [sym__html_block_6] = STATE(386), + [sym__html_block_7] = STATE(386), [sym_html_block] = STATE(45), [sym_link_reference_definition] = STATE(45), - [sym_shortcut_link] = STATE(265), - [sym_full_reference_link] = STATE(265), - [sym_collapsed_reference_link] = STATE(265), - [sym_inline_link] = STATE(265), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2391), - [sym__soft_line_break] = STATE(265), - [sym_hard_line_break] = STATE(265), - [sym_html_tag] = STATE(265), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2393), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(460), - [sym__word] = STATE(265), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(33), - [sym__inline_element] = STATE(265), - [aux_sym__inline] = STATE(265), - [sym__text_inline] = STATE(265), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(265), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(265), - [sym__code_span] = STATE(265), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(37), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(267), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [aux_sym_document_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(267), - [aux_sym__list_minus_repeat1] = STATE(268), - [aux_sym__list_star_repeat1] = STATE(272), - [aux_sym__list_dot_repeat1] = STATE(273), - [aux_sym__list_parenthesis_repeat1] = STATE(275), + [aux_sym__list_plus_repeat1] = STATE(266), + [aux_sym__list_minus_repeat1] = STATE(264), + [aux_sym__list_star_repeat1] = STATE(262), + [aux_sym__list_dot_repeat1] = STATE(261), + [aux_sym__list_parenthesis_repeat1] = STATE(259), [ts_builtin_sym_end] = ACTIONS(3), [aux_sym__html_block_1_token1] = ACTIONS(5), [anon_sym_BANG] = ACTIONS(7), @@ -27603,82 +27619,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [2] = { - [sym__block] = STATE(69), - [sym__blank_line] = STATE(69), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(69), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(69), - [sym_atx_heading] = STATE(69), - [sym_setext_heading] = STATE(69), - [sym_thematic_break] = STATE(69), - [sym_list] = STATE(69), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(69), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(69), - [sym_link_reference_definition] = STATE(69), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2399), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -27722,28 +27739,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(95), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -27754,92 +27770,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [3] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2357), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2266), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -27883,27 +27899,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -27914,92 +27930,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [4] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2356), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2265), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -28043,27 +28059,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28074,91 +28090,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [5] = { - [sym__block] = STATE(60), - [sym__blank_line] = STATE(60), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(60), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(60), - [sym_atx_heading] = STATE(60), - [sym_setext_heading] = STATE(60), - [sym_thematic_break] = STATE(60), - [sym_list] = STATE(60), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(60), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(60), - [sym_link_reference_definition] = STATE(60), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(61), + [sym__blank_line] = STATE(61), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(61), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(61), + [sym_atx_heading] = STATE(61), + [sym_setext_heading] = STATE(61), + [sym_thematic_break] = STATE(61), + [sym_list] = STATE(61), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(61), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(61), + [sym_link_reference_definition] = STATE(61), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(44), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(60), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(61), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -28202,28 +28218,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(115), - [sym__block_continuation] = ACTIONS(117), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(109), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28234,92 +28250,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(117), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [6] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2352), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2263), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -28363,27 +28379,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28394,92 +28410,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [7] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2282), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2374), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(36), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -28523,27 +28539,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(119), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28554,92 +28570,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(119), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [8] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2372), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2407), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(3), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -28683,27 +28699,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(121), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28714,92 +28730,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(121), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [9] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2261), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(47), + [sym__blank_line] = STATE(47), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(47), + [sym_atx_heading] = STATE(47), + [sym_setext_heading] = STATE(47), + [sym_thematic_break] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(47), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(47), + [sym_link_reference_definition] = STATE(47), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(4), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(47), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -28843,27 +28858,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(123), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(113), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -28874,92 +28890,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(123), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [10] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2262), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2295), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(22), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -29003,27 +29019,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29034,92 +29050,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(125), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [11] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2263), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2417), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(6), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -29163,27 +29179,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(127), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29194,92 +29210,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(127), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [12] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2379), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(68), + [sym__blank_line] = STATE(68), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(68), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(68), + [sym_atx_heading] = STATE(68), + [sym_setext_heading] = STATE(68), + [sym_thematic_break] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(68), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(68), + [sym_link_reference_definition] = STATE(68), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(13), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(68), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -29323,27 +29338,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(115), + [sym__block_continuation] = ACTIONS(117), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29354,91 +29370,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(117), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [13] = { - [sym__block] = STATE(57), - [sym__blank_line] = STATE(57), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(57), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(57), - [sym_atx_heading] = STATE(57), - [sym_setext_heading] = STATE(57), - [sym_thematic_break] = STATE(57), - [sym_list] = STATE(57), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(57), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(57), - [sym_link_reference_definition] = STATE(57), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(67), + [sym__blank_line] = STATE(67), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(67), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(67), + [sym_atx_heading] = STATE(67), + [sym_setext_heading] = STATE(67), + [sym_thematic_break] = STATE(67), + [sym_list] = STATE(67), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(67), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(67), + [sym_link_reference_definition] = STATE(67), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(14), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(57), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(67), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -29482,28 +29498,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(129), - [sym__block_continuation] = ACTIONS(131), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(119), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29514,91 +29530,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(131), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [14] = { - [sym__block] = STATE(59), - [sym__blank_line] = STATE(59), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(59), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(59), - [sym_atx_heading] = STATE(59), - [sym_setext_heading] = STATE(59), - [sym_thematic_break] = STATE(59), - [sym_list] = STATE(59), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(59), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(59), - [sym_link_reference_definition] = STATE(59), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(53), + [sym__blank_line] = STATE(53), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(53), + [sym_atx_heading] = STATE(53), + [sym_setext_heading] = STATE(53), + [sym_thematic_break] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(53), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(53), + [sym_link_reference_definition] = STATE(53), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(59), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(9), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(53), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -29642,28 +29658,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(133), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(121), + [sym__block_continuation] = ACTIONS(123), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29674,91 +29690,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(123), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [15] = { - [sym__block] = STATE(65), - [sym__blank_line] = STATE(65), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(65), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(65), - [sym_atx_heading] = STATE(65), - [sym_setext_heading] = STATE(65), - [sym_thematic_break] = STATE(65), - [sym_list] = STATE(65), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(65), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(65), - [sym_link_reference_definition] = STATE(65), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(70), + [sym__blank_line] = STATE(70), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(70), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(70), + [sym_atx_heading] = STATE(70), + [sym_setext_heading] = STATE(70), + [sym_thematic_break] = STATE(70), + [sym_list] = STATE(70), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(70), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(70), + [sym_link_reference_definition] = STATE(70), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(25), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(65), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(23), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(70), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -29802,28 +29818,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(135), - [sym__block_continuation] = ACTIONS(137), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(125), + [sym__block_continuation] = ACTIONS(127), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29834,92 +29850,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(137), + [sym__last_token_whitespace] = ACTIONS(127), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [16] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2386), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(54), + [sym__blank_line] = STATE(54), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(54), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(54), + [sym_atx_heading] = STATE(54), + [sym_setext_heading] = STATE(54), + [sym_thematic_break] = STATE(54), + [sym_list] = STATE(54), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(54), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(54), + [sym_link_reference_definition] = STATE(54), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(24), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(54), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -29963,27 +29978,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(129), + [sym__block_continuation] = ACTIONS(131), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -29994,92 +30010,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(131), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [17] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2388), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(60), + [sym__blank_line] = STATE(60), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(60), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(60), + [sym_atx_heading] = STATE(60), + [sym_setext_heading] = STATE(60), + [sym_thematic_break] = STATE(60), + [sym_list] = STATE(60), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(60), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(60), + [sym_link_reference_definition] = STATE(60), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(60), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -30123,27 +30138,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(133), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30154,91 +30170,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [18] = { - [sym__block] = STATE(64), - [sym__blank_line] = STATE(64), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(64), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(64), - [sym_atx_heading] = STATE(64), - [sym_setext_heading] = STATE(64), - [sym_thematic_break] = STATE(64), - [sym_list] = STATE(64), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(64), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(64), - [sym_link_reference_definition] = STATE(64), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(62), + [sym__blank_line] = STATE(62), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(62), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(62), + [sym_atx_heading] = STATE(62), + [sym_setext_heading] = STATE(62), + [sym_thematic_break] = STATE(62), + [sym_list] = STATE(62), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(62), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(62), + [sym_link_reference_definition] = STATE(62), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(28), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(17), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(62), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -30282,28 +30298,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(139), - [sym__block_continuation] = ACTIONS(141), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(135), + [sym__block_continuation] = ACTIONS(137), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30314,91 +30330,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(141), + [sym__last_token_whitespace] = ACTIONS(137), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [19] = { - [sym__block] = STATE(61), - [sym__blank_line] = STATE(61), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(61), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(61), - [sym_atx_heading] = STATE(61), - [sym_setext_heading] = STATE(61), - [sym_thematic_break] = STATE(61), - [sym_list] = STATE(61), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(61), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(61), - [sym_link_reference_definition] = STATE(61), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2323), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(20), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(2), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -30442,28 +30459,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(143), - [sym__block_continuation] = ACTIONS(145), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(139), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30474,91 +30490,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(145), + [sym__last_token_whitespace] = ACTIONS(139), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [20] = { - [sym__block] = STATE(70), - [sym__blank_line] = STATE(70), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(70), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(70), - [sym_atx_heading] = STATE(70), - [sym_setext_heading] = STATE(70), - [sym_thematic_break] = STATE(70), - [sym_list] = STATE(70), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(70), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(70), - [sym_link_reference_definition] = STATE(70), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2394), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(70), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -30602,28 +30619,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(147), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30634,92 +30650,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [21] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2390), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(71), + [sym__blank_line] = STATE(71), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(71), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(71), + [sym_atx_heading] = STATE(71), + [sym_setext_heading] = STATE(71), + [sym_thematic_break] = STATE(71), + [sym_list] = STATE(71), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(71), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(71), + [sym_link_reference_definition] = STATE(71), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(25), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(71), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -30763,27 +30778,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(141), + [sym__block_continuation] = ACTIONS(143), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30794,92 +30810,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(143), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [22] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2353), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2264), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(333), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -30923,27 +30939,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -30954,91 +30970,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(93), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [23] = { - [sym__block] = STATE(46), - [sym__blank_line] = STATE(46), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(46), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(46), - [sym_atx_heading] = STATE(46), - [sym_setext_heading] = STATE(46), - [sym_thematic_break] = STATE(46), - [sym_list] = STATE(46), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(46), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(46), - [sym_link_reference_definition] = STATE(46), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(56), + [sym__blank_line] = STATE(56), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(56), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(56), + [sym_atx_heading] = STATE(56), + [sym_setext_heading] = STATE(56), + [sym_thematic_break] = STATE(56), + [sym_list] = STATE(56), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(56), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(56), + [sym_link_reference_definition] = STATE(56), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(2), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(56), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -31082,28 +31098,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(149), - [sym__block_continuation] = ACTIONS(151), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(145), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31114,92 +31130,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(151), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [24] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2383), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(51), + [sym__blank_line] = STATE(51), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(51), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(51), + [sym_atx_heading] = STATE(51), + [sym_setext_heading] = STATE(51), + [sym_thematic_break] = STATE(51), + [sym_list] = STATE(51), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(51), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(51), + [sym_link_reference_definition] = STATE(51), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(51), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -31243,27 +31258,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(147), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31274,91 +31290,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [25] = { - [sym__block] = STATE(55), - [sym__blank_line] = STATE(55), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(55), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(55), - [sym_atx_heading] = STATE(55), - [sym_setext_heading] = STATE(55), - [sym_thematic_break] = STATE(55), - [sym_list] = STATE(55), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(55), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(55), - [sym_link_reference_definition] = STATE(55), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(66), + [sym__blank_line] = STATE(66), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(66), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(66), + [sym_atx_heading] = STATE(66), + [sym_setext_heading] = STATE(66), + [sym_thematic_break] = STATE(66), + [sym_list] = STATE(66), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(66), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(66), + [sym_link_reference_definition] = STATE(66), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(55), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(66), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -31402,28 +31418,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(153), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(149), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31434,91 +31450,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [26] = { - [sym__block] = STATE(63), - [sym__blank_line] = STATE(63), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(63), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(63), - [sym_atx_heading] = STATE(63), - [sym_setext_heading] = STATE(63), - [sym_thematic_break] = STATE(63), - [sym_list] = STATE(63), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(63), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(63), - [sym_link_reference_definition] = STATE(63), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(49), + [sym__blank_line] = STATE(49), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(49), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(49), + [sym_atx_heading] = STATE(49), + [sym_setext_heading] = STATE(49), + [sym_thematic_break] = STATE(49), + [sym_list] = STATE(49), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(49), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(49), + [sym_link_reference_definition] = STATE(49), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(63), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(49), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -31562,28 +31578,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(155), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(151), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31594,91 +31610,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [27] = { - [sym__block] = STATE(62), - [sym__blank_line] = STATE(62), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(62), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(62), - [sym_atx_heading] = STATE(62), - [sym_setext_heading] = STATE(62), - [sym_thematic_break] = STATE(62), - [sym_list] = STATE(62), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(62), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(62), - [sym_link_reference_definition] = STATE(62), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(59), + [sym__blank_line] = STATE(59), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(59), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(59), + [sym_atx_heading] = STATE(59), + [sym_setext_heading] = STATE(59), + [sym_thematic_break] = STATE(59), + [sym_list] = STATE(59), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(59), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(59), + [sym_link_reference_definition] = STATE(59), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), [aux_sym__ignore_matching_tokens] = STATE(26), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(62), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(59), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -31722,28 +31738,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(157), - [sym__block_continuation] = ACTIONS(159), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(153), + [sym__block_continuation] = ACTIONS(155), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31754,91 +31770,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(159), + [sym__last_token_whitespace] = ACTIONS(155), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [28] = { - [sym__block] = STATE(68), - [sym__blank_line] = STATE(68), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(68), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(68), - [sym_atx_heading] = STATE(68), - [sym_setext_heading] = STATE(68), - [sym_thematic_break] = STATE(68), - [sym_list] = STATE(68), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(68), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(68), - [sym_link_reference_definition] = STATE(68), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(46), + [sym__blank_line] = STATE(46), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(46), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(46), + [sym_atx_heading] = STATE(46), + [sym_setext_heading] = STATE(46), + [sym_thematic_break] = STATE(46), + [sym_list] = STATE(46), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(46), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(46), + [sym_link_reference_definition] = STATE(46), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(68), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(46), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -31882,28 +31898,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(161), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(157), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -31914,91 +31930,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [29] = { - [sym__block] = STATE(53), - [sym__blank_line] = STATE(53), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(53), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(53), - [sym_atx_heading] = STATE(53), - [sym_setext_heading] = STATE(53), - [sym_thematic_break] = STATE(53), - [sym_list] = STATE(53), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(53), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(53), - [sym_link_reference_definition] = STATE(53), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(69), + [sym__blank_line] = STATE(69), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(69), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(69), + [sym_atx_heading] = STATE(69), + [sym_setext_heading] = STATE(69), + [sym_thematic_break] = STATE(69), + [sym_list] = STATE(69), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(69), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(69), + [sym_link_reference_definition] = STATE(69), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(31), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(53), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(28), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(69), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -32042,28 +32058,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(163), - [sym__block_continuation] = ACTIONS(165), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(159), + [sym__block_continuation] = ACTIONS(161), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32074,91 +32090,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(165), + [sym__last_token_whitespace] = ACTIONS(161), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [30] = { - [sym__block] = STATE(48), - [sym__blank_line] = STATE(48), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(48), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(48), - [sym_atx_heading] = STATE(48), - [sym_setext_heading] = STATE(48), - [sym_thematic_break] = STATE(48), - [sym_list] = STATE(48), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(48), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(48), - [sym_link_reference_definition] = STATE(48), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(58), + [sym__blank_line] = STATE(58), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(58), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(58), + [sym_atx_heading] = STATE(58), + [sym_setext_heading] = STATE(58), + [sym_thematic_break] = STATE(58), + [sym_list] = STATE(58), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(58), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(58), + [sym_link_reference_definition] = STATE(58), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(32), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(48), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(58), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -32202,28 +32218,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(167), - [sym__block_continuation] = ACTIONS(169), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(163), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32234,91 +32250,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(169), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [31] = { - [sym__block] = STATE(54), - [sym__blank_line] = STATE(54), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(54), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(54), - [sym_atx_heading] = STATE(54), - [sym_setext_heading] = STATE(54), - [sym_thematic_break] = STATE(54), - [sym_list] = STATE(54), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(54), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(54), - [sym_link_reference_definition] = STATE(54), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2329), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(54), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(8), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -32362,28 +32379,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(171), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(165), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32394,91 +32410,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(165), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [32] = { - [sym__block] = STATE(50), - [sym__blank_line] = STATE(50), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(50), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(50), - [sym_atx_heading] = STATE(50), - [sym_setext_heading] = STATE(50), - [sym_thematic_break] = STATE(50), - [sym_list] = STATE(50), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(50), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(50), - [sym_link_reference_definition] = STATE(50), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2328), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(50), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(10), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -32522,28 +32539,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(173), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(167), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32554,93 +32570,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(167), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [33] = { - [sym__block] = STATE(66), - [sym__blank_line] = STATE(66), - [sym_paragraph] = STATE(111), - [sym_indented_code_block] = STATE(66), - [sym__indented_chunk] = STATE(139), - [sym_block_quote] = STATE(66), - [sym_atx_heading] = STATE(66), - [sym_setext_heading] = STATE(66), - [sym_thematic_break] = STATE(66), - [sym_list] = STATE(66), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym_list_marker_plus] = STATE(38), - [sym_list_marker_minus] = STATE(39), - [sym_list_marker_star] = STATE(40), - [sym_list_marker_dot] = STATE(41), - [sym_list_marker_parenthesis] = STATE(42), - [sym__list_item_plus] = STATE(267), - [sym__list_item_minus] = STATE(268), - [sym__list_item_star] = STATE(272), - [sym__list_item_dot] = STATE(273), - [sym__list_item_parenthesis] = STATE(275), - [sym_fenced_code_block] = STATE(66), - [sym__html_block_1] = STATE(428), - [sym__html_block_2] = STATE(428), - [sym__html_block_3] = STATE(428), - [sym__html_block_4] = STATE(428), - [sym__html_block_5] = STATE(428), - [sym__html_block_6] = STATE(428), - [sym__html_block_7] = STATE(428), - [sym_html_block] = STATE(66), - [sym_link_reference_definition] = STATE(66), - [sym_shortcut_link] = STATE(265), - [sym_full_reference_link] = STATE(265), - [sym_collapsed_reference_link] = STATE(265), - [sym_inline_link] = STATE(265), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2391), - [sym__soft_line_break] = STATE(265), - [sym_hard_line_break] = STATE(265), - [sym_html_tag] = STATE(265), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(460), - [sym__word] = STATE(265), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(197), - [sym__inline_element] = STATE(265), - [aux_sym__inline] = STATE(265), - [sym__text_inline] = STATE(265), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(265), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(265), - [sym__code_span] = STATE(265), - [aux_sym_document_repeat1] = STATE(66), - [aux_sym__list_plus_repeat1] = STATE(267), - [aux_sym__list_minus_repeat1] = STATE(268), - [aux_sym__list_star_repeat1] = STATE(272), - [aux_sym__list_dot_repeat1] = STATE(273), - [aux_sym__list_parenthesis_repeat1] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(175), - [aux_sym__html_block_1_token1] = ACTIONS(5), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2327), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(459), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(11), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), + [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -32673,16 +32689,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(19), - [anon_sym_LT_QMARK] = ACTIONS(21), - [aux_sym__html_block_4_token1] = ACTIONS(23), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(25), - [aux_sym__html_block_6_token1] = ACTIONS(27), - [aux_sym__html_block_6_token2] = ACTIONS(29), - [sym__open_tag_html_block] = ACTIONS(31), - [sym__open_tag_html_block_newline] = ACTIONS(33), - [sym__closing_tag_html_block] = ACTIONS(31), - [sym__closing_tag_html_block_newline] = ACTIONS(33), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), + [anon_sym_LT_QMARK] = ACTIONS(79), + [aux_sym__html_block_4_token1] = ACTIONS(81), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(83), + [aux_sym__html_block_6_token1] = ACTIONS(85), + [aux_sym__html_block_6_token2] = ACTIONS(87), + [sym__open_tag_html_block] = ACTIONS(89), + [sym__open_tag_html_block_newline] = ACTIONS(91), + [sym__closing_tag_html_block] = ACTIONS(89), + [sym__closing_tag_html_block_newline] = ACTIONS(91), [sym_backslash_escape] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), @@ -32693,17 +32709,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(45), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(49), - [sym_atx_h2_marker] = ACTIONS(49), - [sym_atx_h3_marker] = ACTIONS(49), - [sym_atx_h4_marker] = ACTIONS(49), - [sym_atx_h5_marker] = ACTIONS(49), - [sym_atx_h6_marker] = ACTIONS(49), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(51), - [sym__thematic_break] = ACTIONS(51), + [sym__block_continuation] = ACTIONS(169), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32714,91 +32730,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(63), - [sym__fenced_code_block_start_tilde] = ACTIONS(65), - [sym__blank_line_start] = ACTIONS(67), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(177), + [sym__last_token_whitespace] = ACTIONS(169), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [34] = { - [sym__block] = STATE(49), - [sym__blank_line] = STATE(49), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(49), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(49), - [sym_atx_heading] = STATE(49), - [sym_setext_heading] = STATE(49), - [sym_thematic_break] = STATE(49), - [sym_list] = STATE(49), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(49), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(49), - [sym_link_reference_definition] = STATE(49), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2324), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(49), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(20), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -32842,28 +32859,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(179), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(171), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -32874,91 +32890,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(171), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [35] = { - [sym__block] = STATE(56), - [sym__blank_line] = STATE(56), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(56), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(56), - [sym_atx_heading] = STATE(56), - [sym_setext_heading] = STATE(56), - [sym_thematic_break] = STATE(56), - [sym_list] = STATE(56), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(56), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(56), - [sym_link_reference_definition] = STATE(56), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(65), + [sym__blank_line] = STATE(65), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(65), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(65), + [sym_atx_heading] = STATE(65), + [sym_setext_heading] = STATE(65), + [sym_thematic_break] = STATE(65), + [sym_list] = STATE(65), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(65), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(65), + [sym_link_reference_definition] = STATE(65), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(34), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(56), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(30), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(65), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -33002,28 +33018,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(181), - [sym__block_continuation] = ACTIONS(183), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(173), + [sym__block_continuation] = ACTIONS(175), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33034,92 +33050,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(183), + [sym__last_token_whitespace] = ACTIONS(175), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [36] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2360), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(64), + [sym__blank_line] = STATE(64), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(64), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(64), + [sym_atx_heading] = STATE(64), + [sym_setext_heading] = STATE(64), + [sym_thematic_break] = STATE(64), + [sym_list] = STATE(64), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(64), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(64), + [sym_link_reference_definition] = STATE(64), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(319), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(5), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(64), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -33163,27 +33178,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(113), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(177), + [sym__block_continuation] = ACTIONS(179), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33194,92 +33210,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(113), + [sym__last_token_whitespace] = ACTIONS(179), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [37] = { - [sym__block] = STATE(51), - [sym__blank_line] = STATE(51), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(51), + [sym__block] = STATE(55), + [sym__blank_line] = STATE(55), + [sym_paragraph] = STATE(99), + [sym_indented_code_block] = STATE(55), [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(51), - [sym_atx_heading] = STATE(51), - [sym_setext_heading] = STATE(51), - [sym_thematic_break] = STATE(51), - [sym_list] = STATE(51), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(51), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(51), - [sym_link_reference_definition] = STATE(51), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(43), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(51), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), - [aux_sym__html_block_1_token1] = ACTIONS(75), + [sym_block_quote] = STATE(55), + [sym_atx_heading] = STATE(55), + [sym_setext_heading] = STATE(55), + [sym_thematic_break] = STATE(55), + [sym_list] = STATE(55), + [sym__list_plus] = STATE(371), + [sym__list_minus] = STATE(371), + [sym__list_star] = STATE(371), + [sym__list_dot] = STATE(371), + [sym__list_parenthesis] = STATE(371), + [sym_list_marker_plus] = STATE(38), + [sym_list_marker_minus] = STATE(39), + [sym_list_marker_star] = STATE(40), + [sym_list_marker_dot] = STATE(41), + [sym_list_marker_parenthesis] = STATE(42), + [sym__list_item_plus] = STATE(266), + [sym__list_item_minus] = STATE(264), + [sym__list_item_star] = STATE(262), + [sym__list_item_dot] = STATE(261), + [sym__list_item_parenthesis] = STATE(259), + [sym_fenced_code_block] = STATE(55), + [sym__html_block_1] = STATE(386), + [sym__html_block_2] = STATE(386), + [sym__html_block_3] = STATE(386), + [sym__html_block_4] = STATE(386), + [sym__html_block_5] = STATE(386), + [sym__html_block_6] = STATE(386), + [sym__html_block_7] = STATE(386), + [sym_html_block] = STATE(55), + [sym_link_reference_definition] = STATE(55), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2393), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(460), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(199), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(267), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(55), + [aux_sym__list_plus_repeat1] = STATE(266), + [aux_sym__list_minus_repeat1] = STATE(264), + [aux_sym__list_star_repeat1] = STATE(262), + [aux_sym__list_dot_repeat1] = STATE(261), + [aux_sym__list_parenthesis_repeat1] = STATE(259), + [ts_builtin_sym_end] = ACTIONS(181), + [aux_sym__html_block_1_token1] = ACTIONS(5), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -33312,38 +33329,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), - [anon_sym_LT_QMARK] = ACTIONS(79), - [aux_sym__html_block_4_token1] = ACTIONS(81), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(83), - [aux_sym__html_block_6_token1] = ACTIONS(85), - [aux_sym__html_block_6_token2] = ACTIONS(87), - [sym__open_tag_html_block] = ACTIONS(89), - [sym__open_tag_html_block_newline] = ACTIONS(91), - [sym__closing_tag_html_block] = ACTIONS(89), - [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(19), + [anon_sym_LT_QMARK] = ACTIONS(21), + [aux_sym__html_block_4_token1] = ACTIONS(23), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(25), + [aux_sym__html_block_6_token1] = ACTIONS(27), + [aux_sym__html_block_6_token2] = ACTIONS(29), + [sym__open_tag_html_block] = ACTIONS(31), + [sym__open_tag_html_block_newline] = ACTIONS(33), + [sym__closing_tag_html_block] = ACTIONS(31), + [sym__closing_tag_html_block_newline] = ACTIONS(33), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(185), - [sym__block_continuation] = ACTIONS(187), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(45), + [sym__indented_chunk_start] = ACTIONS(47), + [sym_atx_h1_marker] = ACTIONS(49), + [sym_atx_h2_marker] = ACTIONS(49), + [sym_atx_h3_marker] = ACTIONS(49), + [sym_atx_h4_marker] = ACTIONS(49), + [sym_atx_h5_marker] = ACTIONS(49), + [sym_atx_h6_marker] = ACTIONS(49), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(51), + [sym__thematic_break] = ACTIONS(51), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33354,92 +33370,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(63), + [sym__fenced_code_block_start_tilde] = ACTIONS(65), + [sym__blank_line_start] = ACTIONS(67), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(187), + [sym__last_token_whitespace] = ACTIONS(183), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [38] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2277), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2281), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(12), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(3), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -33483,27 +33499,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(189), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(185), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33514,92 +33530,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(189), + [sym__last_token_whitespace] = ACTIONS(185), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [39] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2276), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2320), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(24), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(4), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -33643,27 +33659,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(191), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(187), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33674,92 +33690,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(191), + [sym__last_token_whitespace] = ACTIONS(187), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [40] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2273), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2314), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(16), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(22), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -33803,27 +33819,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(193), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(189), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33834,92 +33850,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(193), + [sym__last_token_whitespace] = ACTIONS(189), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [41] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2272), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2313), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(17), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(6), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -33963,27 +33979,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(195), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(191), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -33994,92 +34010,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(195), + [sym__last_token_whitespace] = ACTIONS(191), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [42] = { - [sym__block] = STATE(58), - [sym__blank_line] = STATE(346), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(58), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(58), - [sym_atx_heading] = STATE(58), - [sym_setext_heading] = STATE(58), - [sym_thematic_break] = STATE(58), - [sym_list] = STATE(58), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym__list_item_content] = STATE(2271), - [sym_fenced_code_block] = STATE(58), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(58), - [sym_link_reference_definition] = STATE(58), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(48), + [sym__blank_line] = STATE(353), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(48), + [sym_atx_heading] = STATE(48), + [sym_setext_heading] = STATE(48), + [sym_thematic_break] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym__list_item_content] = STATE(2261), + [sym_fenced_code_block] = STATE(48), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(48), + [sym_link_reference_definition] = STATE(48), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(21), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(7), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(48), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -34123,27 +34139,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_continuation] = ACTIONS(197), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_continuation] = ACTIONS(193), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34154,91 +34170,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(197), + [sym__last_token_whitespace] = ACTIONS(193), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [43] = { - [sym__block] = STATE(52), - [sym__blank_line] = STATE(52), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(52), - [sym_atx_heading] = STATE(52), - [sym_setext_heading] = STATE(52), - [sym_thematic_break] = STATE(52), - [sym_list] = STATE(52), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(52), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(52), - [sym_link_reference_definition] = STATE(52), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(50), + [sym__blank_line] = STATE(50), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(50), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(50), + [sym_atx_heading] = STATE(50), + [sym_setext_heading] = STATE(50), + [sym_thematic_break] = STATE(50), + [sym_list] = STATE(50), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(50), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(50), + [sym_link_reference_definition] = STATE(50), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(52), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(225), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(50), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -34282,28 +34298,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(199), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(195), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34314,91 +34330,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [44] = { - [sym__block] = STATE(71), - [sym__blank_line] = STATE(71), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(71), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(71), - [sym_atx_heading] = STATE(71), - [sym_setext_heading] = STATE(71), - [sym_thematic_break] = STATE(71), - [sym_list] = STATE(71), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(71), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(71), - [sym_link_reference_definition] = STATE(71), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(52), + [sym__blank_line] = STATE(52), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(52), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(52), + [sym_atx_heading] = STATE(52), + [sym_setext_heading] = STATE(52), + [sym_thematic_break] = STATE(52), + [sym_list] = STATE(52), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(52), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(52), + [sym_link_reference_definition] = STATE(52), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [aux_sym__ignore_matching_tokens] = STATE(236), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(71), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [aux_sym__ignore_matching_tokens] = STATE(43), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(52), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -34442,28 +34458,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(201), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(197), + [sym__block_continuation] = ACTIONS(199), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34474,91 +34490,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(199), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [45] = { - [sym__block] = STATE(67), - [sym__blank_line] = STATE(67), - [sym_paragraph] = STATE(111), - [sym_indented_code_block] = STATE(67), - [sym__indented_chunk] = STATE(139), - [sym_block_quote] = STATE(67), - [sym_atx_heading] = STATE(67), - [sym_setext_heading] = STATE(67), - [sym_thematic_break] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), + [sym__block] = STATE(57), + [sym__blank_line] = STATE(57), + [sym_paragraph] = STATE(99), + [sym_indented_code_block] = STATE(57), + [sym__indented_chunk] = STATE(293), + [sym_block_quote] = STATE(57), + [sym_atx_heading] = STATE(57), + [sym_setext_heading] = STATE(57), + [sym_thematic_break] = STATE(57), + [sym_list] = STATE(57), + [sym__list_plus] = STATE(371), + [sym__list_minus] = STATE(371), + [sym__list_star] = STATE(371), + [sym__list_dot] = STATE(371), + [sym__list_parenthesis] = STATE(371), [sym_list_marker_plus] = STATE(38), [sym_list_marker_minus] = STATE(39), [sym_list_marker_star] = STATE(40), [sym_list_marker_dot] = STATE(41), [sym_list_marker_parenthesis] = STATE(42), - [sym__list_item_plus] = STATE(267), - [sym__list_item_minus] = STATE(268), - [sym__list_item_star] = STATE(272), - [sym__list_item_dot] = STATE(273), - [sym__list_item_parenthesis] = STATE(275), - [sym_fenced_code_block] = STATE(67), - [sym__html_block_1] = STATE(428), - [sym__html_block_2] = STATE(428), - [sym__html_block_3] = STATE(428), - [sym__html_block_4] = STATE(428), - [sym__html_block_5] = STATE(428), - [sym__html_block_6] = STATE(428), - [sym__html_block_7] = STATE(428), - [sym_html_block] = STATE(67), - [sym_link_reference_definition] = STATE(67), - [sym_shortcut_link] = STATE(265), - [sym_full_reference_link] = STATE(265), - [sym_collapsed_reference_link] = STATE(265), - [sym_inline_link] = STATE(265), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2391), - [sym__soft_line_break] = STATE(265), - [sym_hard_line_break] = STATE(265), - [sym_html_tag] = STATE(265), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__list_item_plus] = STATE(266), + [sym__list_item_minus] = STATE(264), + [sym__list_item_star] = STATE(262), + [sym__list_item_dot] = STATE(261), + [sym__list_item_parenthesis] = STATE(259), + [sym_fenced_code_block] = STATE(57), + [sym__html_block_1] = STATE(386), + [sym__html_block_2] = STATE(386), + [sym__html_block_3] = STATE(386), + [sym__html_block_4] = STATE(386), + [sym__html_block_5] = STATE(386), + [sym__html_block_6] = STATE(386), + [sym__html_block_7] = STATE(386), + [sym_html_block] = STATE(57), + [sym_link_reference_definition] = STATE(57), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2393), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(460), - [sym__word] = STATE(265), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(265), - [aux_sym__inline] = STATE(265), - [sym__text_inline] = STATE(265), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(265), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(265), - [sym__code_span] = STATE(265), - [aux_sym_document_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(267), - [aux_sym__list_minus_repeat1] = STATE(268), - [aux_sym__list_star_repeat1] = STATE(272), - [aux_sym__list_dot_repeat1] = STATE(273), - [aux_sym__list_parenthesis_repeat1] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(175), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(267), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(57), + [aux_sym__list_plus_repeat1] = STATE(266), + [aux_sym__list_minus_repeat1] = STATE(264), + [aux_sym__list_star_repeat1] = STATE(262), + [aux_sym__list_dot_repeat1] = STATE(261), + [aux_sym__list_parenthesis_repeat1] = STATE(259), + [ts_builtin_sym_end] = ACTIONS(181), [aux_sym__html_block_1_token1] = ACTIONS(5), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -34640,81 +34656,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(73), }, [46] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -34758,27 +34774,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(95), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(201), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -34789,246 +34805,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [47] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), - [aux_sym__html_block_1_token1] = ACTIONS(203), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_BSLASH] = ACTIONS(221), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym__] = ACTIONS(209), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(224), - [anon_sym_LT_QMARK] = ACTIONS(227), - [aux_sym__html_block_4_token1] = ACTIONS(230), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(233), - [aux_sym__html_block_6_token1] = ACTIONS(236), - [aux_sym__html_block_6_token2] = ACTIONS(239), - [sym__open_tag_html_block] = ACTIONS(242), - [sym__open_tag_html_block_newline] = ACTIONS(245), - [sym__closing_tag_html_block] = ACTIONS(242), - [sym__closing_tag_html_block_newline] = ACTIONS(245), - [sym_backslash_escape] = ACTIONS(248), - [sym_uri_autolink] = ACTIONS(248), - [sym_email_autolink] = ACTIONS(248), - [sym_entity_reference] = ACTIONS(248), - [sym_numeric_character_reference] = ACTIONS(248), - [sym__whitespace_ge_2] = ACTIONS(251), - [aux_sym__whitespace_token1] = ACTIONS(254), - [sym__word_no_digit] = ACTIONS(248), - [sym__digits] = ACTIONS(248), - [aux_sym__newline_token1] = ACTIONS(257), - [sym__block_close] = ACTIONS(260), - [sym__block_quote_start] = ACTIONS(262), - [sym__indented_chunk_start] = ACTIONS(265), - [sym_atx_h1_marker] = ACTIONS(268), - [sym_atx_h2_marker] = ACTIONS(268), - [sym_atx_h3_marker] = ACTIONS(268), - [sym_atx_h4_marker] = ACTIONS(268), - [sym_atx_h5_marker] = ACTIONS(268), - [sym_atx_h6_marker] = ACTIONS(268), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(271), - [sym__thematic_break] = ACTIONS(271), - [sym__list_marker_minus] = ACTIONS(274), - [sym__list_marker_plus] = ACTIONS(277), - [sym__list_marker_star] = ACTIONS(280), - [sym__list_marker_parenthesis] = ACTIONS(283), - [sym__list_marker_dot] = ACTIONS(286), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(274), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(277), - [sym__list_marker_star_dont_interrupt] = ACTIONS(280), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(283), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(286), - [sym__fenced_code_block_start_backtick] = ACTIONS(289), - [sym__fenced_code_block_start_tilde] = ACTIONS(292), - [sym__blank_line_start] = ACTIONS(295), - [sym__code_span_start] = ACTIONS(298), - [sym__emphasis_open_star] = ACTIONS(301), - [sym__emphasis_open_underscore] = ACTIONS(304), - }, - [48] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -35072,27 +34931,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(173), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(203), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35103,89 +34962,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [49] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [48] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -35229,27 +35088,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(307), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(205), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35260,89 +35119,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [50] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [49] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -35386,27 +35245,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(309), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(207), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35417,89 +35276,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [51] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [50] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -35543,27 +35402,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(199), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(209), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35574,89 +35433,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [52] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [51] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -35700,27 +35559,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(311), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(211), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35731,89 +35590,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [53] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [52] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -35857,27 +35716,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(171), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(195), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -35888,89 +35747,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [54] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [53] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -36014,27 +35873,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(313), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(113), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36045,89 +35904,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [55] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [54] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -36171,27 +36030,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(315), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(147), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36202,90 +36061,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [56] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), + [55] = { + [sym__block] = STATE(57), + [sym__blank_line] = STATE(57), + [sym_paragraph] = STATE(99), + [sym_indented_code_block] = STATE(57), [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), - [aux_sym__html_block_1_token1] = ACTIONS(75), + [sym_block_quote] = STATE(57), + [sym_atx_heading] = STATE(57), + [sym_setext_heading] = STATE(57), + [sym_thematic_break] = STATE(57), + [sym_list] = STATE(57), + [sym__list_plus] = STATE(371), + [sym__list_minus] = STATE(371), + [sym__list_star] = STATE(371), + [sym__list_dot] = STATE(371), + [sym__list_parenthesis] = STATE(371), + [sym_list_marker_plus] = STATE(38), + [sym_list_marker_minus] = STATE(39), + [sym_list_marker_star] = STATE(40), + [sym_list_marker_dot] = STATE(41), + [sym_list_marker_parenthesis] = STATE(42), + [sym__list_item_plus] = STATE(266), + [sym__list_item_minus] = STATE(264), + [sym__list_item_star] = STATE(262), + [sym__list_item_dot] = STATE(261), + [sym__list_item_parenthesis] = STATE(259), + [sym_fenced_code_block] = STATE(57), + [sym__html_block_1] = STATE(386), + [sym__html_block_2] = STATE(386), + [sym__html_block_3] = STATE(386), + [sym__html_block_4] = STATE(386), + [sym__html_block_5] = STATE(386), + [sym__html_block_6] = STATE(386), + [sym__html_block_7] = STATE(386), + [sym_html_block] = STATE(57), + [sym_link_reference_definition] = STATE(57), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2393), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(460), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(267), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(57), + [aux_sym__list_plus_repeat1] = STATE(266), + [aux_sym__list_minus_repeat1] = STATE(264), + [aux_sym__list_star_repeat1] = STATE(262), + [aux_sym__list_dot_repeat1] = STATE(261), + [aux_sym__list_parenthesis_repeat1] = STATE(259), + [ts_builtin_sym_end] = ACTIONS(213), + [aux_sym__html_block_1_token1] = ACTIONS(5), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -36318,37 +36178,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), - [anon_sym_LT_QMARK] = ACTIONS(79), - [aux_sym__html_block_4_token1] = ACTIONS(81), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(83), - [aux_sym__html_block_6_token1] = ACTIONS(85), - [aux_sym__html_block_6_token2] = ACTIONS(87), - [sym__open_tag_html_block] = ACTIONS(89), - [sym__open_tag_html_block_newline] = ACTIONS(91), - [sym__closing_tag_html_block] = ACTIONS(89), - [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(19), + [anon_sym_LT_QMARK] = ACTIONS(21), + [aux_sym__html_block_4_token1] = ACTIONS(23), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(25), + [aux_sym__html_block_6_token1] = ACTIONS(27), + [aux_sym__html_block_6_token2] = ACTIONS(29), + [sym__open_tag_html_block] = ACTIONS(31), + [sym__open_tag_html_block_newline] = ACTIONS(33), + [sym__closing_tag_html_block] = ACTIONS(31), + [sym__closing_tag_html_block_newline] = ACTIONS(33), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(179), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_quote_start] = ACTIONS(45), + [sym__indented_chunk_start] = ACTIONS(47), + [sym_atx_h1_marker] = ACTIONS(49), + [sym_atx_h2_marker] = ACTIONS(49), + [sym_atx_h3_marker] = ACTIONS(49), + [sym_atx_h4_marker] = ACTIONS(49), + [sym_atx_h5_marker] = ACTIONS(49), + [sym_atx_h6_marker] = ACTIONS(49), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(51), + [sym__thematic_break] = ACTIONS(51), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36359,89 +36218,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(63), + [sym__fenced_code_block_start_tilde] = ACTIONS(65), + [sym__blank_line_start] = ACTIONS(67), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [57] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [56] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -36485,27 +36344,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(133), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(215), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36516,89 +36375,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [58] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), + [57] = { + [sym__block] = STATE(57), + [sym__blank_line] = STATE(57), + [sym_paragraph] = STATE(99), + [sym_indented_code_block] = STATE(57), [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym_block_quote] = STATE(57), + [sym_atx_heading] = STATE(57), + [sym_setext_heading] = STATE(57), + [sym_thematic_break] = STATE(57), + [sym_list] = STATE(57), + [sym__list_plus] = STATE(371), + [sym__list_minus] = STATE(371), + [sym__list_star] = STATE(371), + [sym__list_dot] = STATE(371), + [sym__list_parenthesis] = STATE(371), + [sym_list_marker_plus] = STATE(38), + [sym_list_marker_minus] = STATE(39), + [sym_list_marker_star] = STATE(40), + [sym_list_marker_dot] = STATE(41), + [sym_list_marker_parenthesis] = STATE(42), + [sym__list_item_plus] = STATE(266), + [sym__list_item_minus] = STATE(264), + [sym__list_item_star] = STATE(262), + [sym__list_item_dot] = STATE(261), + [sym__list_item_parenthesis] = STATE(259), + [sym_fenced_code_block] = STATE(57), + [sym__html_block_1] = STATE(386), + [sym__html_block_2] = STATE(386), + [sym__html_block_3] = STATE(386), + [sym__html_block_4] = STATE(386), + [sym__html_block_5] = STATE(386), + [sym__html_block_6] = STATE(386), + [sym__html_block_7] = STATE(386), + [sym_html_block] = STATE(57), + [sym_link_reference_definition] = STATE(57), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2393), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(460), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(267), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(57), + [aux_sym__list_plus_repeat1] = STATE(266), + [aux_sym__list_minus_repeat1] = STATE(264), + [aux_sym__list_star_repeat1] = STATE(262), + [aux_sym__list_dot_repeat1] = STATE(261), + [aux_sym__list_parenthesis_repeat1] = STATE(259), + [ts_builtin_sym_end] = ACTIONS(217), + [aux_sym__html_block_1_token1] = ACTIONS(219), + [anon_sym_BANG] = ACTIONS(222), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_SQUOTE] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(225), + [anon_sym_CARET] = ACTIONS(225), + [anon_sym__] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(240), + [anon_sym_LT_QMARK] = ACTIONS(243), + [aux_sym__html_block_4_token1] = ACTIONS(246), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(249), + [aux_sym__html_block_6_token1] = ACTIONS(252), + [aux_sym__html_block_6_token2] = ACTIONS(255), + [sym__open_tag_html_block] = ACTIONS(258), + [sym__open_tag_html_block_newline] = ACTIONS(261), + [sym__closing_tag_html_block] = ACTIONS(258), + [sym__closing_tag_html_block_newline] = ACTIONS(261), + [sym_backslash_escape] = ACTIONS(264), + [sym_uri_autolink] = ACTIONS(264), + [sym_email_autolink] = ACTIONS(264), + [sym_entity_reference] = ACTIONS(264), + [sym_numeric_character_reference] = ACTIONS(264), + [sym__whitespace_ge_2] = ACTIONS(267), + [aux_sym__whitespace_token1] = ACTIONS(270), + [sym__word_no_digit] = ACTIONS(264), + [sym__digits] = ACTIONS(264), + [aux_sym__newline_token1] = ACTIONS(273), + [sym__block_quote_start] = ACTIONS(276), + [sym__indented_chunk_start] = ACTIONS(279), + [sym_atx_h1_marker] = ACTIONS(282), + [sym_atx_h2_marker] = ACTIONS(282), + [sym_atx_h3_marker] = ACTIONS(282), + [sym_atx_h4_marker] = ACTIONS(282), + [sym_atx_h5_marker] = ACTIONS(282), + [sym_atx_h6_marker] = ACTIONS(282), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(285), + [sym__thematic_break] = ACTIONS(285), + [sym__list_marker_minus] = ACTIONS(288), + [sym__list_marker_plus] = ACTIONS(291), + [sym__list_marker_star] = ACTIONS(294), + [sym__list_marker_parenthesis] = ACTIONS(297), + [sym__list_marker_dot] = ACTIONS(300), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(288), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(291), + [sym__list_marker_star_dont_interrupt] = ACTIONS(294), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(297), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(300), + [sym__fenced_code_block_start_backtick] = ACTIONS(303), + [sym__fenced_code_block_start_tilde] = ACTIONS(306), + [sym__blank_line_start] = ACTIONS(309), + [sym__code_span_start] = ACTIONS(312), + [sym__emphasis_open_star] = ACTIONS(315), + [sym__emphasis_open_underscore] = ACTIONS(318), + }, + [58] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -36642,27 +36658,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(317), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(321), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36673,89 +36689,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [59] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -36799,27 +36815,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(319), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(151), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36830,89 +36846,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [60] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -36956,27 +36972,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(201), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(323), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -36987,89 +37003,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [61] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -37113,27 +37129,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(147), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(325), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37144,89 +37160,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [62] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -37270,27 +37286,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(155), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(133), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37301,89 +37317,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [63] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), + [aux_sym__html_block_1_token1] = ACTIONS(327), + [anon_sym_BANG] = ACTIONS(222), + [anon_sym_DQUOTE] = ACTIONS(225), + [anon_sym_POUND] = ACTIONS(225), + [anon_sym_DOLLAR] = ACTIONS(225), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_SQUOTE] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_DOT] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(225), + [anon_sym_SEMI] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(234), + [anon_sym_BSLASH] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(225), + [anon_sym_CARET] = ACTIONS(225), + [anon_sym__] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_PIPE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(330), + [anon_sym_LT_QMARK] = ACTIONS(333), + [aux_sym__html_block_4_token1] = ACTIONS(336), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(339), + [aux_sym__html_block_6_token1] = ACTIONS(342), + [aux_sym__html_block_6_token2] = ACTIONS(345), + [sym__open_tag_html_block] = ACTIONS(348), + [sym__open_tag_html_block_newline] = ACTIONS(351), + [sym__closing_tag_html_block] = ACTIONS(348), + [sym__closing_tag_html_block_newline] = ACTIONS(351), + [sym_backslash_escape] = ACTIONS(264), + [sym_uri_autolink] = ACTIONS(264), + [sym_email_autolink] = ACTIONS(264), + [sym_entity_reference] = ACTIONS(264), + [sym_numeric_character_reference] = ACTIONS(264), + [sym__whitespace_ge_2] = ACTIONS(267), + [aux_sym__whitespace_token1] = ACTIONS(270), + [sym__word_no_digit] = ACTIONS(264), + [sym__digits] = ACTIONS(264), + [aux_sym__newline_token1] = ACTIONS(273), + [sym__block_close] = ACTIONS(217), + [sym__block_quote_start] = ACTIONS(354), + [sym__indented_chunk_start] = ACTIONS(357), + [sym_atx_h1_marker] = ACTIONS(360), + [sym_atx_h2_marker] = ACTIONS(360), + [sym_atx_h3_marker] = ACTIONS(360), + [sym_atx_h4_marker] = ACTIONS(360), + [sym_atx_h5_marker] = ACTIONS(360), + [sym_atx_h6_marker] = ACTIONS(360), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(363), + [sym__thematic_break] = ACTIONS(363), + [sym__list_marker_minus] = ACTIONS(288), + [sym__list_marker_plus] = ACTIONS(291), + [sym__list_marker_star] = ACTIONS(294), + [sym__list_marker_parenthesis] = ACTIONS(297), + [sym__list_marker_dot] = ACTIONS(300), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(288), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(291), + [sym__list_marker_star_dont_interrupt] = ACTIONS(294), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(297), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(300), + [sym__fenced_code_block_start_backtick] = ACTIONS(366), + [sym__fenced_code_block_start_tilde] = ACTIONS(369), + [sym__blank_line_start] = ACTIONS(372), + [sym__code_span_start] = ACTIONS(312), + [sym__emphasis_open_star] = ACTIONS(315), + [sym__emphasis_open_underscore] = ACTIONS(318), + }, + [64] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(459), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -37427,27 +37600,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(321), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37458,89 +37631,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [64] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [65] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -37584,27 +37757,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(161), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(163), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37615,89 +37788,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [65] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [66] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -37741,27 +37914,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(153), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(375), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37772,91 +37945,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [66] = { - [sym__block] = STATE(67), - [sym__blank_line] = STATE(67), - [sym_paragraph] = STATE(111), - [sym_indented_code_block] = STATE(67), - [sym__indented_chunk] = STATE(139), - [sym_block_quote] = STATE(67), - [sym_atx_heading] = STATE(67), - [sym_setext_heading] = STATE(67), - [sym_thematic_break] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym_list_marker_plus] = STATE(38), - [sym_list_marker_minus] = STATE(39), - [sym_list_marker_star] = STATE(40), - [sym_list_marker_dot] = STATE(41), - [sym_list_marker_parenthesis] = STATE(42), - [sym__list_item_plus] = STATE(267), - [sym__list_item_minus] = STATE(268), - [sym__list_item_star] = STATE(272), - [sym__list_item_dot] = STATE(273), - [sym__list_item_parenthesis] = STATE(275), - [sym_fenced_code_block] = STATE(67), - [sym__html_block_1] = STATE(428), - [sym__html_block_2] = STATE(428), - [sym__html_block_3] = STATE(428), - [sym__html_block_4] = STATE(428), - [sym__html_block_5] = STATE(428), - [sym__html_block_6] = STATE(428), - [sym__html_block_7] = STATE(428), - [sym_html_block] = STATE(67), - [sym_link_reference_definition] = STATE(67), - [sym_shortcut_link] = STATE(265), - [sym_full_reference_link] = STATE(265), - [sym_collapsed_reference_link] = STATE(265), - [sym_inline_link] = STATE(265), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2391), - [sym__soft_line_break] = STATE(265), - [sym_hard_line_break] = STATE(265), - [sym_html_tag] = STATE(265), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(460), - [sym__word] = STATE(265), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(265), - [aux_sym__inline] = STATE(265), - [sym__text_inline] = STATE(265), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(265), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(265), - [sym__code_span] = STATE(265), - [aux_sym_document_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(267), - [aux_sym__list_minus_repeat1] = STATE(268), - [aux_sym__list_star_repeat1] = STATE(272), - [aux_sym__list_dot_repeat1] = STATE(273), - [aux_sym__list_parenthesis_repeat1] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(323), - [aux_sym__html_block_1_token1] = ACTIONS(5), + [67] = { + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(459), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), + [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -37889,16 +38061,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(19), - [anon_sym_LT_QMARK] = ACTIONS(21), - [aux_sym__html_block_4_token1] = ACTIONS(23), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(25), - [aux_sym__html_block_6_token1] = ACTIONS(27), - [aux_sym__html_block_6_token2] = ACTIONS(29), - [sym__open_tag_html_block] = ACTIONS(31), - [sym__open_tag_html_block_newline] = ACTIONS(33), - [sym__closing_tag_html_block] = ACTIONS(31), - [sym__closing_tag_html_block_newline] = ACTIONS(33), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(77), + [anon_sym_LT_QMARK] = ACTIONS(79), + [aux_sym__html_block_4_token1] = ACTIONS(81), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(83), + [aux_sym__html_block_6_token1] = ACTIONS(85), + [aux_sym__html_block_6_token2] = ACTIONS(87), + [sym__open_tag_html_block] = ACTIONS(89), + [sym__open_tag_html_block_newline] = ACTIONS(91), + [sym__closing_tag_html_block] = ACTIONS(89), + [sym__closing_tag_html_block_newline] = ACTIONS(91), [sym_backslash_escape] = ACTIONS(35), [sym_uri_autolink] = ACTIONS(35), [sym_email_autolink] = ACTIONS(35), @@ -37909,16 +38081,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(35), [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_quote_start] = ACTIONS(45), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(49), - [sym_atx_h2_marker] = ACTIONS(49), - [sym_atx_h3_marker] = ACTIONS(49), - [sym_atx_h4_marker] = ACTIONS(49), - [sym_atx_h5_marker] = ACTIONS(49), - [sym_atx_h6_marker] = ACTIONS(49), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(51), - [sym__thematic_break] = ACTIONS(51), + [sym__block_close] = ACTIONS(377), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -37929,246 +38102,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(63), - [sym__fenced_code_block_start_tilde] = ACTIONS(65), - [sym__blank_line_start] = ACTIONS(67), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [67] = { - [sym__block] = STATE(67), - [sym__blank_line] = STATE(67), - [sym_paragraph] = STATE(111), - [sym_indented_code_block] = STATE(67), - [sym__indented_chunk] = STATE(139), - [sym_block_quote] = STATE(67), - [sym_atx_heading] = STATE(67), - [sym_setext_heading] = STATE(67), - [sym_thematic_break] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(400), - [sym__list_minus] = STATE(400), - [sym__list_star] = STATE(400), - [sym__list_dot] = STATE(400), - [sym__list_parenthesis] = STATE(400), - [sym_list_marker_plus] = STATE(38), - [sym_list_marker_minus] = STATE(39), - [sym_list_marker_star] = STATE(40), - [sym_list_marker_dot] = STATE(41), - [sym_list_marker_parenthesis] = STATE(42), - [sym__list_item_plus] = STATE(267), - [sym__list_item_minus] = STATE(268), - [sym__list_item_star] = STATE(272), - [sym__list_item_dot] = STATE(273), - [sym__list_item_parenthesis] = STATE(275), - [sym_fenced_code_block] = STATE(67), - [sym__html_block_1] = STATE(428), - [sym__html_block_2] = STATE(428), - [sym__html_block_3] = STATE(428), - [sym__html_block_4] = STATE(428), - [sym__html_block_5] = STATE(428), - [sym__html_block_6] = STATE(428), - [sym__html_block_7] = STATE(428), - [sym_html_block] = STATE(67), - [sym_link_reference_definition] = STATE(67), - [sym_shortcut_link] = STATE(265), - [sym_full_reference_link] = STATE(265), - [sym_collapsed_reference_link] = STATE(265), - [sym_inline_link] = STATE(265), - [sym_image] = STATE(265), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2391), - [sym__soft_line_break] = STATE(265), - [sym_hard_line_break] = STATE(265), - [sym_html_tag] = STATE(265), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(460), - [sym__word] = STATE(265), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(265), - [aux_sym__inline] = STATE(265), - [sym__text_inline] = STATE(265), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(265), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(265), - [sym__code_span] = STATE(265), - [aux_sym_document_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(267), - [aux_sym__list_minus_repeat1] = STATE(268), - [aux_sym__list_star_repeat1] = STATE(272), - [aux_sym__list_dot_repeat1] = STATE(273), - [aux_sym__list_parenthesis_repeat1] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(260), - [aux_sym__html_block_1_token1] = ACTIONS(325), - [anon_sym_BANG] = ACTIONS(206), - [anon_sym_DQUOTE] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(209), - [anon_sym_DOLLAR] = ACTIONS(209), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(212), - [anon_sym_SQUOTE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_STAR] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_DASH] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(209), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_COLON] = ACTIONS(209), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(209), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_QMARK] = ACTIONS(209), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(218), - [anon_sym_BSLASH] = ACTIONS(221), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym__] = ACTIONS(209), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_PIPE] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_TILDE] = ACTIONS(209), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(328), - [anon_sym_LT_QMARK] = ACTIONS(331), - [aux_sym__html_block_4_token1] = ACTIONS(334), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(337), - [aux_sym__html_block_6_token1] = ACTIONS(340), - [aux_sym__html_block_6_token2] = ACTIONS(343), - [sym__open_tag_html_block] = ACTIONS(346), - [sym__open_tag_html_block_newline] = ACTIONS(349), - [sym__closing_tag_html_block] = ACTIONS(346), - [sym__closing_tag_html_block_newline] = ACTIONS(349), - [sym_backslash_escape] = ACTIONS(352), - [sym_uri_autolink] = ACTIONS(352), - [sym_email_autolink] = ACTIONS(352), - [sym_entity_reference] = ACTIONS(352), - [sym_numeric_character_reference] = ACTIONS(352), - [sym__whitespace_ge_2] = ACTIONS(251), - [aux_sym__whitespace_token1] = ACTIONS(254), - [sym__word_no_digit] = ACTIONS(352), - [sym__digits] = ACTIONS(352), - [aux_sym__newline_token1] = ACTIONS(257), - [sym__block_quote_start] = ACTIONS(355), - [sym__indented_chunk_start] = ACTIONS(358), - [sym_atx_h1_marker] = ACTIONS(361), - [sym_atx_h2_marker] = ACTIONS(361), - [sym_atx_h3_marker] = ACTIONS(361), - [sym_atx_h4_marker] = ACTIONS(361), - [sym_atx_h5_marker] = ACTIONS(361), - [sym_atx_h6_marker] = ACTIONS(361), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(364), - [sym__thematic_break] = ACTIONS(364), - [sym__list_marker_minus] = ACTIONS(274), - [sym__list_marker_plus] = ACTIONS(277), - [sym__list_marker_star] = ACTIONS(280), - [sym__list_marker_parenthesis] = ACTIONS(283), - [sym__list_marker_dot] = ACTIONS(286), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(274), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(277), - [sym__list_marker_star_dont_interrupt] = ACTIONS(280), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(283), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(286), - [sym__fenced_code_block_start_backtick] = ACTIONS(367), - [sym__fenced_code_block_start_tilde] = ACTIONS(370), - [sym__blank_line_start] = ACTIONS(373), - [sym__code_span_start] = ACTIONS(298), - [sym__emphasis_open_star] = ACTIONS(301), - [sym__emphasis_open_underscore] = ACTIONS(304), - }, [68] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -38212,27 +38228,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(376), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(119), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38243,89 +38259,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [69] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -38369,27 +38385,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(378), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(157), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38400,89 +38416,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [70] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -38526,27 +38542,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(380), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(145), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38557,89 +38573,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [71] = { - [sym__block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_paragraph] = STATE(110), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(293), - [sym_block_quote] = STATE(47), - [sym_atx_heading] = STATE(47), - [sym_setext_heading] = STATE(47), - [sym_thematic_break] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(375), - [sym__list_minus] = STATE(375), - [sym__list_star] = STATE(375), - [sym__list_dot] = STATE(375), - [sym__list_parenthesis] = STATE(375), - [sym_list_marker_plus] = STATE(11), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(9), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_plus] = STATE(288), - [sym__list_item_minus] = STATE(287), - [sym__list_item_star] = STATE(284), - [sym__list_item_dot] = STATE(281), - [sym__list_item_parenthesis] = STATE(280), - [sym_fenced_code_block] = STATE(47), - [sym__html_block_1] = STATE(378), - [sym__html_block_2] = STATE(378), - [sym__html_block_3] = STATE(378), - [sym__html_block_4] = STATE(378), - [sym__html_block_5] = STATE(378), - [sym__html_block_6] = STATE(378), - [sym__html_block_7] = STATE(378), - [sym_html_block] = STATE(47), - [sym_link_reference_definition] = STATE(47), - [sym_shortcut_link] = STATE(251), - [sym_full_reference_link] = STATE(251), - [sym_collapsed_reference_link] = STATE(251), - [sym_inline_link] = STATE(251), - [sym_image] = STATE(251), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_link_label] = STATE(2447), - [sym__soft_line_break] = STATE(251), - [sym_hard_line_break] = STATE(251), - [sym_html_tag] = STATE(251), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__block] = STATE(63), + [sym__blank_line] = STATE(63), + [sym_paragraph] = STATE(108), + [sym_indented_code_block] = STATE(63), + [sym__indented_chunk] = STATE(234), + [sym_block_quote] = STATE(63), + [sym_atx_heading] = STATE(63), + [sym_setext_heading] = STATE(63), + [sym_thematic_break] = STATE(63), + [sym_list] = STATE(63), + [sym__list_plus] = STATE(401), + [sym__list_minus] = STATE(401), + [sym__list_star] = STATE(401), + [sym__list_dot] = STATE(401), + [sym__list_parenthesis] = STATE(401), + [sym_list_marker_plus] = STATE(19), + [sym_list_marker_minus] = STATE(34), + [sym_list_marker_star] = STATE(33), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_plus] = STATE(233), + [sym__list_item_minus] = STATE(232), + [sym__list_item_star] = STATE(231), + [sym__list_item_dot] = STATE(230), + [sym__list_item_parenthesis] = STATE(229), + [sym_fenced_code_block] = STATE(63), + [sym__html_block_1] = STATE(399), + [sym__html_block_2] = STATE(399), + [sym__html_block_3] = STATE(399), + [sym__html_block_4] = STATE(399), + [sym__html_block_5] = STATE(399), + [sym__html_block_6] = STATE(399), + [sym__html_block_7] = STATE(399), + [sym_html_block] = STATE(63), + [sym_link_reference_definition] = STATE(63), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_link_label] = STATE(2449), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), [sym__whitespace] = STATE(459), - [sym__word] = STATE(251), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(251), - [aux_sym__inline] = STATE(251), - [sym__text_inline] = STATE(251), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(251), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(251), - [sym__code_span] = STATE(251), - [aux_sym_document_repeat1] = STATE(47), - [aux_sym__list_plus_repeat1] = STATE(288), - [aux_sym__list_minus_repeat1] = STATE(287), - [aux_sym__list_star_repeat1] = STATE(284), - [aux_sym__list_dot_repeat1] = STATE(281), - [aux_sym__list_parenthesis_repeat1] = STATE(280), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(201), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym__list_plus_repeat1] = STATE(233), + [aux_sym__list_minus_repeat1] = STATE(232), + [aux_sym__list_star_repeat1] = STATE(231), + [aux_sym__list_dot_repeat1] = STATE(230), + [aux_sym__list_parenthesis_repeat1] = STATE(229), [aux_sym__html_block_1_token1] = ACTIONS(75), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), @@ -38683,27 +38699,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__open_tag_html_block_newline] = ACTIONS(91), [sym__closing_tag_html_block] = ACTIONS(89), [sym__closing_tag_html_block_newline] = ACTIONS(91), - [sym_backslash_escape] = ACTIONS(93), - [sym_uri_autolink] = ACTIONS(93), - [sym_email_autolink] = ACTIONS(93), - [sym_entity_reference] = ACTIONS(93), - [sym_numeric_character_reference] = ACTIONS(93), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), [sym__whitespace_ge_2] = ACTIONS(37), [aux_sym__whitespace_token1] = ACTIONS(39), - [sym__word_no_digit] = ACTIONS(93), - [sym__digits] = ACTIONS(93), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), - [sym__block_close] = ACTIONS(382), - [sym__block_quote_start] = ACTIONS(99), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(103), - [sym_atx_h2_marker] = ACTIONS(103), - [sym_atx_h3_marker] = ACTIONS(103), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(103), - [sym_atx_h6_marker] = ACTIONS(103), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(105), - [sym__thematic_break] = ACTIONS(105), + [sym__block_close] = ACTIONS(149), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(99), + [sym_atx_h3_marker] = ACTIONS(99), + [sym_atx_h4_marker] = ACTIONS(99), + [sym_atx_h5_marker] = ACTIONS(99), + [sym_atx_h6_marker] = ACTIONS(99), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(101), + [sym__thematic_break] = ACTIONS(101), [sym__list_marker_minus] = ACTIONS(53), [sym__list_marker_plus] = ACTIONS(55), [sym__list_marker_star] = ACTIONS(57), @@ -38714,5315 +38730,4804 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(57), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(107), - [sym__fenced_code_block_start_tilde] = ACTIONS(109), - [sym__blank_line_start] = ACTIONS(111), + [sym__fenced_code_block_start_backtick] = ACTIONS(103), + [sym__fenced_code_block_start_tilde] = ACTIONS(105), + [sym__blank_line_start] = ACTIONS(107), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [72] = { - [aux_sym__ignore_matching_tokens] = STATE(80), - [aux_sym__html_block_1_token1] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_BSLASH] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(386), - [anon_sym_LT_QMARK] = ACTIONS(386), - [aux_sym__html_block_4_token1] = ACTIONS(386), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(384), - [aux_sym__html_block_6_token1] = ACTIONS(386), - [aux_sym__html_block_6_token2] = ACTIONS(384), - [sym__open_tag_html_block] = ACTIONS(384), - [sym__open_tag_html_block_newline] = ACTIONS(384), - [sym__closing_tag_html_block] = ACTIONS(384), - [sym__closing_tag_html_block_newline] = ACTIONS(384), - [sym_backslash_escape] = ACTIONS(384), - [sym_uri_autolink] = ACTIONS(384), - [sym_email_autolink] = ACTIONS(384), - [sym_entity_reference] = ACTIONS(384), - [sym_numeric_character_reference] = ACTIONS(384), - [sym__whitespace_ge_2] = ACTIONS(384), - [aux_sym__whitespace_token1] = ACTIONS(386), - [sym__word_no_digit] = ACTIONS(384), - [sym__digits] = ACTIONS(384), - [aux_sym__newline_token1] = ACTIONS(384), - [sym__split_token] = ACTIONS(384), - [sym__line_ending] = ACTIONS(388), - [sym__soft_line_break_marker] = ACTIONS(384), - [sym__block_close] = ACTIONS(384), - [sym__block_continuation] = ACTIONS(390), - [sym__block_quote_start] = ACTIONS(384), - [sym__indented_chunk_start] = ACTIONS(384), - [sym_atx_h1_marker] = ACTIONS(384), - [sym_atx_h2_marker] = ACTIONS(384), - [sym_atx_h3_marker] = ACTIONS(384), - [sym_atx_h4_marker] = ACTIONS(384), - [sym_atx_h5_marker] = ACTIONS(384), - [sym_atx_h6_marker] = ACTIONS(384), - [sym__setext_h1_underline] = ACTIONS(384), - [sym__setext_h2_underline] = ACTIONS(384), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(384), - [sym__thematic_break] = ACTIONS(384), - [sym__list_marker_minus] = ACTIONS(384), - [sym__list_marker_plus] = ACTIONS(384), - [sym__list_marker_star] = ACTIONS(384), - [sym__list_marker_parenthesis] = ACTIONS(384), - [sym__list_marker_dot] = ACTIONS(384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(384), - [sym__fenced_code_block_start_backtick] = ACTIONS(384), - [sym__fenced_code_block_start_tilde] = ACTIONS(384), - [sym__blank_line_start] = ACTIONS(384), - [sym__code_span_start] = ACTIONS(384), - [sym__last_token_whitespace] = ACTIONS(390), - [sym__emphasis_open_star] = ACTIONS(384), - [sym__emphasis_open_underscore] = ACTIONS(384), + [sym__block_interrupt_paragraph] = STATE(741), + [sym__blank_line] = STATE(741), + [sym_block_quote] = STATE(741), + [sym_atx_heading] = STATE(741), + [sym_setext_h1_underline] = STATE(741), + [sym_setext_h2_underline] = STATE(741), + [sym_thematic_break] = STATE(741), + [sym_fenced_code_block] = STATE(741), + [sym__html_block_1] = STATE(741), + [sym__html_block_2] = STATE(741), + [sym__html_block_3] = STATE(741), + [sym__html_block_4] = STATE(741), + [sym__html_block_5] = STATE(741), + [sym__html_block_6] = STATE(741), + [aux_sym__html_block_1_token1] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(385), + [anon_sym_LT_QMARK] = ACTIONS(387), + [aux_sym__html_block_4_token1] = ACTIONS(389), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(391), + [aux_sym__html_block_6_token1] = ACTIONS(393), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(381), + [sym_uri_autolink] = ACTIONS(381), + [sym_email_autolink] = ACTIONS(381), + [sym_entity_reference] = ACTIONS(381), + [sym_numeric_character_reference] = ACTIONS(381), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [aux_sym__newline_token1] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(399), + [sym_atx_h1_marker] = ACTIONS(401), + [sym_atx_h2_marker] = ACTIONS(401), + [sym_atx_h3_marker] = ACTIONS(401), + [sym_atx_h4_marker] = ACTIONS(401), + [sym_atx_h5_marker] = ACTIONS(401), + [sym_atx_h6_marker] = ACTIONS(401), + [sym__setext_h1_underline] = ACTIONS(403), + [sym__setext_h2_underline] = ACTIONS(405), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(407), + [sym__thematic_break] = ACTIONS(409), + [sym__list_marker_minus] = ACTIONS(411), + [sym__list_marker_plus] = ACTIONS(411), + [sym__list_marker_star] = ACTIONS(411), + [sym__list_marker_parenthesis] = ACTIONS(411), + [sym__list_marker_dot] = ACTIONS(411), + [sym__fenced_code_block_start_backtick] = ACTIONS(413), + [sym__fenced_code_block_start_tilde] = ACTIONS(415), + [sym__blank_line_start] = ACTIONS(417), + [sym__code_span_start] = ACTIONS(381), + [sym__emphasis_open_star] = ACTIONS(381), + [sym__emphasis_open_underscore] = ACTIONS(381), + [sym__emphasis_close_underscore] = ACTIONS(381), }, [73] = { - [sym__block_interrupt_paragraph] = STATE(742), - [sym__blank_line] = STATE(742), - [sym_block_quote] = STATE(742), - [sym_atx_heading] = STATE(742), - [sym_setext_h1_underline] = STATE(742), - [sym_setext_h2_underline] = STATE(742), - [sym_thematic_break] = STATE(742), - [sym_fenced_code_block] = STATE(742), - [sym__html_block_1] = STATE(742), - [sym__html_block_2] = STATE(742), - [sym__html_block_3] = STATE(742), - [sym__html_block_4] = STATE(742), - [sym__html_block_5] = STATE(742), - [sym__html_block_6] = STATE(742), - [aux_sym__html_block_1_token1] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(398), - [anon_sym_LT_QMARK] = ACTIONS(400), - [aux_sym__html_block_4_token1] = ACTIONS(402), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(404), - [aux_sym__html_block_6_token1] = ACTIONS(406), - [aux_sym__html_block_6_token2] = ACTIONS(408), - [sym_backslash_escape] = ACTIONS(394), - [sym_uri_autolink] = ACTIONS(394), - [sym_email_autolink] = ACTIONS(394), - [sym_entity_reference] = ACTIONS(394), - [sym_numeric_character_reference] = ACTIONS(394), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [aux_sym__newline_token1] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(412), - [sym_atx_h1_marker] = ACTIONS(414), - [sym_atx_h2_marker] = ACTIONS(414), - [sym_atx_h3_marker] = ACTIONS(414), - [sym_atx_h4_marker] = ACTIONS(414), - [sym_atx_h5_marker] = ACTIONS(414), - [sym_atx_h6_marker] = ACTIONS(414), - [sym__setext_h1_underline] = ACTIONS(416), - [sym__setext_h2_underline] = ACTIONS(418), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(420), - [sym__thematic_break] = ACTIONS(422), - [sym__list_marker_minus] = ACTIONS(424), - [sym__list_marker_plus] = ACTIONS(424), - [sym__list_marker_star] = ACTIONS(424), - [sym__list_marker_parenthesis] = ACTIONS(424), - [sym__list_marker_dot] = ACTIONS(424), - [sym__fenced_code_block_start_backtick] = ACTIONS(426), - [sym__fenced_code_block_start_tilde] = ACTIONS(428), - [sym__blank_line_start] = ACTIONS(430), - [sym__code_span_start] = ACTIONS(394), - [sym__emphasis_open_star] = ACTIONS(394), - [sym__emphasis_open_underscore] = ACTIONS(394), - [sym__emphasis_close_star] = ACTIONS(394), + [sym__block_interrupt_paragraph] = STATE(745), + [sym__blank_line] = STATE(745), + [sym_block_quote] = STATE(745), + [sym_atx_heading] = STATE(745), + [sym_setext_h1_underline] = STATE(745), + [sym_setext_h2_underline] = STATE(745), + [sym_thematic_break] = STATE(745), + [sym_fenced_code_block] = STATE(745), + [sym__html_block_1] = STATE(745), + [sym__html_block_2] = STATE(745), + [sym__html_block_3] = STATE(745), + [sym__html_block_4] = STATE(745), + [sym__html_block_5] = STATE(745), + [sym__html_block_6] = STATE(745), + [aux_sym__html_block_1_token1] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(385), + [anon_sym_LT_QMARK] = ACTIONS(387), + [aux_sym__html_block_4_token1] = ACTIONS(389), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(391), + [aux_sym__html_block_6_token1] = ACTIONS(393), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(419), + [sym_uri_autolink] = ACTIONS(419), + [sym_email_autolink] = ACTIONS(419), + [sym_entity_reference] = ACTIONS(419), + [sym_numeric_character_reference] = ACTIONS(419), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [aux_sym__newline_token1] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(399), + [sym_atx_h1_marker] = ACTIONS(401), + [sym_atx_h2_marker] = ACTIONS(401), + [sym_atx_h3_marker] = ACTIONS(401), + [sym_atx_h4_marker] = ACTIONS(401), + [sym_atx_h5_marker] = ACTIONS(401), + [sym_atx_h6_marker] = ACTIONS(401), + [sym__setext_h1_underline] = ACTIONS(403), + [sym__setext_h2_underline] = ACTIONS(405), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(407), + [sym__thematic_break] = ACTIONS(409), + [sym__list_marker_minus] = ACTIONS(423), + [sym__list_marker_plus] = ACTIONS(423), + [sym__list_marker_star] = ACTIONS(423), + [sym__list_marker_parenthesis] = ACTIONS(423), + [sym__list_marker_dot] = ACTIONS(423), + [sym__fenced_code_block_start_backtick] = ACTIONS(413), + [sym__fenced_code_block_start_tilde] = ACTIONS(415), + [sym__blank_line_start] = ACTIONS(417), + [sym__code_span_start] = ACTIONS(419), + [sym__emphasis_open_star] = ACTIONS(419), + [sym__emphasis_open_underscore] = ACTIONS(419), + [sym__emphasis_close_underscore] = ACTIONS(419), }, [74] = { - [aux_sym__ignore_matching_tokens] = STATE(84), - [ts_builtin_sym_end] = ACTIONS(384), - [aux_sym__html_block_1_token1] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_BSLASH] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(386), - [anon_sym_LT_QMARK] = ACTIONS(386), - [aux_sym__html_block_4_token1] = ACTIONS(386), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(384), - [aux_sym__html_block_6_token1] = ACTIONS(386), - [aux_sym__html_block_6_token2] = ACTIONS(384), - [sym__open_tag_html_block] = ACTIONS(384), - [sym__open_tag_html_block_newline] = ACTIONS(384), - [sym__closing_tag_html_block] = ACTIONS(384), - [sym__closing_tag_html_block_newline] = ACTIONS(384), - [sym_backslash_escape] = ACTIONS(384), - [sym_uri_autolink] = ACTIONS(384), - [sym_email_autolink] = ACTIONS(384), - [sym_entity_reference] = ACTIONS(384), - [sym_numeric_character_reference] = ACTIONS(384), - [sym__whitespace_ge_2] = ACTIONS(384), - [aux_sym__whitespace_token1] = ACTIONS(386), - [sym__word_no_digit] = ACTIONS(384), - [sym__digits] = ACTIONS(384), - [aux_sym__newline_token1] = ACTIONS(384), - [sym__split_token] = ACTIONS(384), - [sym__line_ending] = ACTIONS(432), - [sym__soft_line_break_marker] = ACTIONS(384), - [sym__block_continuation] = ACTIONS(434), - [sym__block_quote_start] = ACTIONS(384), - [sym__indented_chunk_start] = ACTIONS(384), - [sym_atx_h1_marker] = ACTIONS(384), - [sym_atx_h2_marker] = ACTIONS(384), - [sym_atx_h3_marker] = ACTIONS(384), - [sym_atx_h4_marker] = ACTIONS(384), - [sym_atx_h5_marker] = ACTIONS(384), - [sym_atx_h6_marker] = ACTIONS(384), - [sym__setext_h1_underline] = ACTIONS(384), - [sym__setext_h2_underline] = ACTIONS(384), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(384), - [sym__thematic_break] = ACTIONS(384), - [sym__list_marker_minus] = ACTIONS(384), - [sym__list_marker_plus] = ACTIONS(384), - [sym__list_marker_star] = ACTIONS(384), - [sym__list_marker_parenthesis] = ACTIONS(384), - [sym__list_marker_dot] = ACTIONS(384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(384), - [sym__fenced_code_block_start_backtick] = ACTIONS(384), - [sym__fenced_code_block_start_tilde] = ACTIONS(384), - [sym__blank_line_start] = ACTIONS(384), - [sym__code_span_start] = ACTIONS(384), - [sym__last_token_whitespace] = ACTIONS(434), - [sym__emphasis_open_star] = ACTIONS(384), - [sym__emphasis_open_underscore] = ACTIONS(384), + [sym__block_interrupt_paragraph] = STATE(688), + [sym__blank_line] = STATE(688), + [sym_block_quote] = STATE(688), + [sym_atx_heading] = STATE(688), + [sym_setext_h1_underline] = STATE(688), + [sym_setext_h2_underline] = STATE(688), + [sym_thematic_break] = STATE(688), + [sym_fenced_code_block] = STATE(688), + [sym__html_block_1] = STATE(688), + [sym__html_block_2] = STATE(688), + [sym__html_block_3] = STATE(688), + [sym__html_block_4] = STATE(688), + [sym__html_block_5] = STATE(688), + [sym__html_block_6] = STATE(688), + [aux_sym__html_block_1_token1] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(427), + [anon_sym_LT_QMARK] = ACTIONS(429), + [aux_sym__html_block_4_token1] = ACTIONS(431), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(433), + [aux_sym__html_block_6_token1] = ACTIONS(435), + [aux_sym__html_block_6_token2] = ACTIONS(437), + [sym_backslash_escape] = ACTIONS(381), + [sym_uri_autolink] = ACTIONS(381), + [sym_email_autolink] = ACTIONS(381), + [sym_entity_reference] = ACTIONS(381), + [sym_numeric_character_reference] = ACTIONS(381), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [aux_sym__newline_token1] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(439), + [sym_atx_h1_marker] = ACTIONS(441), + [sym_atx_h2_marker] = ACTIONS(441), + [sym_atx_h3_marker] = ACTIONS(441), + [sym_atx_h4_marker] = ACTIONS(441), + [sym_atx_h5_marker] = ACTIONS(441), + [sym_atx_h6_marker] = ACTIONS(441), + [sym__setext_h1_underline] = ACTIONS(443), + [sym__setext_h2_underline] = ACTIONS(445), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(447), + [sym__thematic_break] = ACTIONS(449), + [sym__list_marker_minus] = ACTIONS(451), + [sym__list_marker_plus] = ACTIONS(451), + [sym__list_marker_star] = ACTIONS(451), + [sym__list_marker_parenthesis] = ACTIONS(451), + [sym__list_marker_dot] = ACTIONS(451), + [sym__fenced_code_block_start_backtick] = ACTIONS(453), + [sym__fenced_code_block_start_tilde] = ACTIONS(455), + [sym__blank_line_start] = ACTIONS(457), + [sym__code_span_start] = ACTIONS(381), + [sym__emphasis_open_star] = ACTIONS(381), + [sym__emphasis_open_underscore] = ACTIONS(381), + [sym__emphasis_close_star] = ACTIONS(381), }, [75] = { - [sym__block_interrupt_paragraph] = STATE(702), - [sym__blank_line] = STATE(702), - [sym_block_quote] = STATE(702), - [sym_atx_heading] = STATE(702), - [sym_setext_h1_underline] = STATE(702), - [sym_setext_h2_underline] = STATE(702), - [sym_thematic_break] = STATE(702), - [sym_fenced_code_block] = STATE(702), - [sym__html_block_1] = STATE(702), - [sym__html_block_2] = STATE(702), - [sym__html_block_3] = STATE(702), - [sym__html_block_4] = STATE(702), - [sym__html_block_5] = STATE(702), - [sym__html_block_6] = STATE(702), - [aux_sym__html_block_1_token1] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(398), - [anon_sym_LT_QMARK] = ACTIONS(400), - [aux_sym__html_block_4_token1] = ACTIONS(402), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(404), - [aux_sym__html_block_6_token1] = ACTIONS(406), - [aux_sym__html_block_6_token2] = ACTIONS(408), - [sym_backslash_escape] = ACTIONS(436), - [sym_uri_autolink] = ACTIONS(436), - [sym_email_autolink] = ACTIONS(436), - [sym_entity_reference] = ACTIONS(436), - [sym_numeric_character_reference] = ACTIONS(436), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [aux_sym__newline_token1] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(412), - [sym_atx_h1_marker] = ACTIONS(414), - [sym_atx_h2_marker] = ACTIONS(414), - [sym_atx_h3_marker] = ACTIONS(414), - [sym_atx_h4_marker] = ACTIONS(414), - [sym_atx_h5_marker] = ACTIONS(414), - [sym_atx_h6_marker] = ACTIONS(414), - [sym__setext_h1_underline] = ACTIONS(416), - [sym__setext_h2_underline] = ACTIONS(418), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(420), - [sym__thematic_break] = ACTIONS(422), - [sym__list_marker_minus] = ACTIONS(440), - [sym__list_marker_plus] = ACTIONS(440), - [sym__list_marker_star] = ACTIONS(440), - [sym__list_marker_parenthesis] = ACTIONS(440), - [sym__list_marker_dot] = ACTIONS(440), - [sym__fenced_code_block_start_backtick] = ACTIONS(426), - [sym__fenced_code_block_start_tilde] = ACTIONS(428), - [sym__blank_line_start] = ACTIONS(430), - [sym__code_span_start] = ACTIONS(436), - [sym__emphasis_open_star] = ACTIONS(436), - [sym__emphasis_open_underscore] = ACTIONS(436), - [sym__emphasis_close_star] = ACTIONS(436), + [sym__block_interrupt_paragraph] = STATE(726), + [sym__blank_line] = STATE(726), + [sym_block_quote] = STATE(726), + [sym_atx_heading] = STATE(726), + [sym_setext_h1_underline] = STATE(726), + [sym_setext_h2_underline] = STATE(726), + [sym_thematic_break] = STATE(726), + [sym_fenced_code_block] = STATE(726), + [sym__html_block_1] = STATE(726), + [sym__html_block_2] = STATE(726), + [sym__html_block_3] = STATE(726), + [sym__html_block_4] = STATE(726), + [sym__html_block_5] = STATE(726), + [sym__html_block_6] = STATE(726), + [aux_sym__html_block_1_token1] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(427), + [anon_sym_LT_QMARK] = ACTIONS(429), + [aux_sym__html_block_4_token1] = ACTIONS(431), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(433), + [aux_sym__html_block_6_token1] = ACTIONS(435), + [aux_sym__html_block_6_token2] = ACTIONS(437), + [sym_backslash_escape] = ACTIONS(419), + [sym_uri_autolink] = ACTIONS(419), + [sym_email_autolink] = ACTIONS(419), + [sym_entity_reference] = ACTIONS(419), + [sym_numeric_character_reference] = ACTIONS(419), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [aux_sym__newline_token1] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(439), + [sym_atx_h1_marker] = ACTIONS(441), + [sym_atx_h2_marker] = ACTIONS(441), + [sym_atx_h3_marker] = ACTIONS(441), + [sym_atx_h4_marker] = ACTIONS(441), + [sym_atx_h5_marker] = ACTIONS(441), + [sym_atx_h6_marker] = ACTIONS(441), + [sym__setext_h1_underline] = ACTIONS(443), + [sym__setext_h2_underline] = ACTIONS(445), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(447), + [sym__thematic_break] = ACTIONS(449), + [sym__list_marker_minus] = ACTIONS(459), + [sym__list_marker_plus] = ACTIONS(459), + [sym__list_marker_star] = ACTIONS(459), + [sym__list_marker_parenthesis] = ACTIONS(459), + [sym__list_marker_dot] = ACTIONS(459), + [sym__fenced_code_block_start_backtick] = ACTIONS(453), + [sym__fenced_code_block_start_tilde] = ACTIONS(455), + [sym__blank_line_start] = ACTIONS(457), + [sym__code_span_start] = ACTIONS(419), + [sym__emphasis_open_star] = ACTIONS(419), + [sym__emphasis_open_underscore] = ACTIONS(419), + [sym__emphasis_close_star] = ACTIONS(419), }, [76] = { - [sym__block_interrupt_paragraph] = STATE(679), - [sym__blank_line] = STATE(679), - [sym_block_quote] = STATE(679), - [sym_atx_heading] = STATE(679), - [sym_setext_h1_underline] = STATE(679), - [sym_setext_h2_underline] = STATE(679), - [sym_thematic_break] = STATE(679), - [sym_fenced_code_block] = STATE(679), - [sym__html_block_1] = STATE(679), - [sym__html_block_2] = STATE(679), - [sym__html_block_3] = STATE(679), - [sym__html_block_4] = STATE(679), - [sym__html_block_5] = STATE(679), - [sym__html_block_6] = STATE(679), - [aux_sym__html_block_1_token1] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(444), - [anon_sym_LT_QMARK] = ACTIONS(446), - [aux_sym__html_block_4_token1] = ACTIONS(448), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(450), - [aux_sym__html_block_6_token1] = ACTIONS(452), - [aux_sym__html_block_6_token2] = ACTIONS(454), - [sym_backslash_escape] = ACTIONS(394), - [sym_uri_autolink] = ACTIONS(394), - [sym_email_autolink] = ACTIONS(394), - [sym_entity_reference] = ACTIONS(394), - [sym_numeric_character_reference] = ACTIONS(394), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [aux_sym__newline_token1] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(456), - [sym_atx_h1_marker] = ACTIONS(458), - [sym_atx_h2_marker] = ACTIONS(458), - [sym_atx_h3_marker] = ACTIONS(458), - [sym_atx_h4_marker] = ACTIONS(458), - [sym_atx_h5_marker] = ACTIONS(458), - [sym_atx_h6_marker] = ACTIONS(458), - [sym__setext_h1_underline] = ACTIONS(460), - [sym__setext_h2_underline] = ACTIONS(462), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(464), - [sym__thematic_break] = ACTIONS(466), - [sym__list_marker_minus] = ACTIONS(468), - [sym__list_marker_plus] = ACTIONS(468), - [sym__list_marker_star] = ACTIONS(468), - [sym__list_marker_parenthesis] = ACTIONS(468), - [sym__list_marker_dot] = ACTIONS(468), - [sym__fenced_code_block_start_backtick] = ACTIONS(470), - [sym__fenced_code_block_start_tilde] = ACTIONS(472), - [sym__blank_line_start] = ACTIONS(474), - [sym__code_span_start] = ACTIONS(394), - [sym__emphasis_open_star] = ACTIONS(394), - [sym__emphasis_open_underscore] = ACTIONS(394), - [sym__emphasis_close_underscore] = ACTIONS(394), + [aux_sym__ignore_matching_tokens] = STATE(85), + [ts_builtin_sym_end] = ACTIONS(461), + [aux_sym__html_block_1_token1] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_BSLASH] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym__] = ACTIONS(461), + [anon_sym_BQUOTE] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(463), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(463), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(461), + [aux_sym__html_block_6_token1] = ACTIONS(463), + [aux_sym__html_block_6_token2] = ACTIONS(461), + [sym__open_tag_html_block] = ACTIONS(461), + [sym__open_tag_html_block_newline] = ACTIONS(461), + [sym__closing_tag_html_block] = ACTIONS(461), + [sym__closing_tag_html_block_newline] = ACTIONS(461), + [sym_backslash_escape] = ACTIONS(461), + [sym_uri_autolink] = ACTIONS(461), + [sym_email_autolink] = ACTIONS(461), + [sym_entity_reference] = ACTIONS(461), + [sym_numeric_character_reference] = ACTIONS(461), + [sym__whitespace_ge_2] = ACTIONS(461), + [aux_sym__whitespace_token1] = ACTIONS(463), + [sym__word_no_digit] = ACTIONS(461), + [sym__digits] = ACTIONS(461), + [aux_sym__newline_token1] = ACTIONS(461), + [sym__split_token] = ACTIONS(461), + [sym__line_ending] = ACTIONS(465), + [sym__soft_line_break_marker] = ACTIONS(461), + [sym__block_continuation] = ACTIONS(467), + [sym__block_quote_start] = ACTIONS(461), + [sym__indented_chunk_start] = ACTIONS(461), + [sym_atx_h1_marker] = ACTIONS(461), + [sym_atx_h2_marker] = ACTIONS(461), + [sym_atx_h3_marker] = ACTIONS(461), + [sym_atx_h4_marker] = ACTIONS(461), + [sym_atx_h5_marker] = ACTIONS(461), + [sym_atx_h6_marker] = ACTIONS(461), + [sym__setext_h1_underline] = ACTIONS(461), + [sym__setext_h2_underline] = ACTIONS(461), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(461), + [sym__thematic_break] = ACTIONS(461), + [sym__list_marker_minus] = ACTIONS(461), + [sym__list_marker_plus] = ACTIONS(461), + [sym__list_marker_star] = ACTIONS(461), + [sym__list_marker_parenthesis] = ACTIONS(461), + [sym__list_marker_dot] = ACTIONS(461), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_star_dont_interrupt] = ACTIONS(461), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(461), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(461), + [sym__fenced_code_block_start_backtick] = ACTIONS(461), + [sym__fenced_code_block_start_tilde] = ACTIONS(461), + [sym__blank_line_start] = ACTIONS(461), + [sym__code_span_start] = ACTIONS(461), + [sym__last_token_whitespace] = ACTIONS(467), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(461), }, [77] = { - [sym__block_interrupt_paragraph] = STATE(797), - [sym__blank_line] = STATE(797), - [sym_block_quote] = STATE(797), - [sym_atx_heading] = STATE(797), - [sym_setext_h1_underline] = STATE(797), - [sym_setext_h2_underline] = STATE(797), - [sym_thematic_break] = STATE(797), - [sym_fenced_code_block] = STATE(797), - [sym__html_block_1] = STATE(797), - [sym__html_block_2] = STATE(797), - [sym__html_block_3] = STATE(797), - [sym__html_block_4] = STATE(797), - [sym__html_block_5] = STATE(797), - [sym__html_block_6] = STATE(797), - [aux_sym__html_block_1_token1] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(444), - [anon_sym_LT_QMARK] = ACTIONS(446), - [aux_sym__html_block_4_token1] = ACTIONS(448), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(450), - [aux_sym__html_block_6_token1] = ACTIONS(452), - [aux_sym__html_block_6_token2] = ACTIONS(454), - [sym_backslash_escape] = ACTIONS(436), - [sym_uri_autolink] = ACTIONS(436), - [sym_email_autolink] = ACTIONS(436), - [sym_entity_reference] = ACTIONS(436), - [sym_numeric_character_reference] = ACTIONS(436), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [aux_sym__newline_token1] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(456), - [sym_atx_h1_marker] = ACTIONS(458), - [sym_atx_h2_marker] = ACTIONS(458), - [sym_atx_h3_marker] = ACTIONS(458), - [sym_atx_h4_marker] = ACTIONS(458), - [sym_atx_h5_marker] = ACTIONS(458), - [sym_atx_h6_marker] = ACTIONS(458), - [sym__setext_h1_underline] = ACTIONS(460), - [sym__setext_h2_underline] = ACTIONS(462), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(464), - [sym__thematic_break] = ACTIONS(466), - [sym__list_marker_minus] = ACTIONS(476), - [sym__list_marker_plus] = ACTIONS(476), - [sym__list_marker_star] = ACTIONS(476), - [sym__list_marker_parenthesis] = ACTIONS(476), - [sym__list_marker_dot] = ACTIONS(476), - [sym__fenced_code_block_start_backtick] = ACTIONS(470), - [sym__fenced_code_block_start_tilde] = ACTIONS(472), - [sym__blank_line_start] = ACTIONS(474), - [sym__code_span_start] = ACTIONS(436), - [sym__emphasis_open_star] = ACTIONS(436), - [sym__emphasis_open_underscore] = ACTIONS(436), - [sym__emphasis_close_underscore] = ACTIONS(436), + [aux_sym__ignore_matching_tokens] = STATE(80), + [aux_sym__html_block_1_token1] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_BSLASH] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym__] = ACTIONS(461), + [anon_sym_BQUOTE] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(463), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(463), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(461), + [aux_sym__html_block_6_token1] = ACTIONS(463), + [aux_sym__html_block_6_token2] = ACTIONS(461), + [sym__open_tag_html_block] = ACTIONS(461), + [sym__open_tag_html_block_newline] = ACTIONS(461), + [sym__closing_tag_html_block] = ACTIONS(461), + [sym__closing_tag_html_block_newline] = ACTIONS(461), + [sym_backslash_escape] = ACTIONS(461), + [sym_uri_autolink] = ACTIONS(461), + [sym_email_autolink] = ACTIONS(461), + [sym_entity_reference] = ACTIONS(461), + [sym_numeric_character_reference] = ACTIONS(461), + [sym__whitespace_ge_2] = ACTIONS(461), + [aux_sym__whitespace_token1] = ACTIONS(463), + [sym__word_no_digit] = ACTIONS(461), + [sym__digits] = ACTIONS(461), + [aux_sym__newline_token1] = ACTIONS(461), + [sym__split_token] = ACTIONS(461), + [sym__line_ending] = ACTIONS(469), + [sym__soft_line_break_marker] = ACTIONS(461), + [sym__block_close] = ACTIONS(461), + [sym__block_continuation] = ACTIONS(471), + [sym__block_quote_start] = ACTIONS(461), + [sym__indented_chunk_start] = ACTIONS(461), + [sym_atx_h1_marker] = ACTIONS(461), + [sym_atx_h2_marker] = ACTIONS(461), + [sym_atx_h3_marker] = ACTIONS(461), + [sym_atx_h4_marker] = ACTIONS(461), + [sym_atx_h5_marker] = ACTIONS(461), + [sym_atx_h6_marker] = ACTIONS(461), + [sym__setext_h1_underline] = ACTIONS(461), + [sym__setext_h2_underline] = ACTIONS(461), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(461), + [sym__thematic_break] = ACTIONS(461), + [sym__list_marker_minus] = ACTIONS(461), + [sym__list_marker_plus] = ACTIONS(461), + [sym__list_marker_star] = ACTIONS(461), + [sym__list_marker_parenthesis] = ACTIONS(461), + [sym__list_marker_dot] = ACTIONS(461), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_star_dont_interrupt] = ACTIONS(461), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(461), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(461), + [sym__fenced_code_block_start_backtick] = ACTIONS(461), + [sym__fenced_code_block_start_tilde] = ACTIONS(461), + [sym__blank_line_start] = ACTIONS(461), + [sym__code_span_start] = ACTIONS(461), + [sym__last_token_whitespace] = ACTIONS(471), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(461), }, [78] = { - [sym__block_interrupt_paragraph] = STATE(847), - [sym__blank_line] = STATE(847), - [sym_block_quote] = STATE(847), - [sym_atx_heading] = STATE(847), - [sym_setext_h1_underline] = STATE(847), - [sym_setext_h2_underline] = STATE(847), - [sym_thematic_break] = STATE(847), - [sym_fenced_code_block] = STATE(847), - [sym__html_block_1] = STATE(847), - [sym__html_block_2] = STATE(847), - [sym__html_block_3] = STATE(847), - [sym__html_block_4] = STATE(847), - [sym__html_block_5] = STATE(847), - [sym__html_block_6] = STATE(847), - [aux_sym__html_block_1_token1] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(480), - [anon_sym_LT_QMARK] = ACTIONS(482), - [aux_sym__html_block_4_token1] = ACTIONS(484), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(486), - [aux_sym__html_block_6_token1] = ACTIONS(488), - [aux_sym__html_block_6_token2] = ACTIONS(490), - [sym_backslash_escape] = ACTIONS(436), - [sym_uri_autolink] = ACTIONS(436), - [sym_email_autolink] = ACTIONS(436), - [sym_entity_reference] = ACTIONS(436), - [sym_numeric_character_reference] = ACTIONS(436), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [aux_sym__newline_token1] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(492), - [sym_atx_h1_marker] = ACTIONS(494), - [sym_atx_h2_marker] = ACTIONS(494), - [sym_atx_h3_marker] = ACTIONS(494), - [sym_atx_h4_marker] = ACTIONS(494), - [sym_atx_h5_marker] = ACTIONS(494), - [sym_atx_h6_marker] = ACTIONS(494), - [sym__setext_h1_underline] = ACTIONS(496), - [sym__setext_h2_underline] = ACTIONS(498), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(500), - [sym__thematic_break] = ACTIONS(502), - [sym__list_marker_minus] = ACTIONS(504), - [sym__list_marker_plus] = ACTIONS(504), - [sym__list_marker_star] = ACTIONS(504), - [sym__list_marker_parenthesis] = ACTIONS(504), - [sym__list_marker_dot] = ACTIONS(504), - [sym__fenced_code_block_start_backtick] = ACTIONS(506), - [sym__fenced_code_block_start_tilde] = ACTIONS(508), - [sym__blank_line_start] = ACTIONS(510), - [sym__code_span_start] = ACTIONS(436), - [sym__emphasis_open_star] = ACTIONS(436), - [sym__emphasis_open_underscore] = ACTIONS(436), + [aux_sym__ignore_matching_tokens] = STATE(78), + [aux_sym__html_block_1_token1] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_BSLASH] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(475), + [anon_sym_LT_QMARK] = ACTIONS(475), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(473), + [aux_sym__html_block_6_token1] = ACTIONS(475), + [aux_sym__html_block_6_token2] = ACTIONS(473), + [sym__open_tag_html_block] = ACTIONS(473), + [sym__open_tag_html_block_newline] = ACTIONS(473), + [sym__closing_tag_html_block] = ACTIONS(473), + [sym__closing_tag_html_block_newline] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [sym_uri_autolink] = ACTIONS(473), + [sym_email_autolink] = ACTIONS(473), + [sym_entity_reference] = ACTIONS(473), + [sym_numeric_character_reference] = ACTIONS(473), + [sym__whitespace_ge_2] = ACTIONS(473), + [aux_sym__whitespace_token1] = ACTIONS(475), + [sym__word_no_digit] = ACTIONS(473), + [sym__digits] = ACTIONS(473), + [aux_sym__newline_token1] = ACTIONS(473), + [sym__split_token] = ACTIONS(473), + [sym__soft_line_break_marker] = ACTIONS(473), + [sym__block_close] = ACTIONS(473), + [sym__block_continuation] = ACTIONS(477), + [sym__block_quote_start] = ACTIONS(473), + [sym__indented_chunk_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(473), + [sym_atx_h2_marker] = ACTIONS(473), + [sym_atx_h3_marker] = ACTIONS(473), + [sym_atx_h4_marker] = ACTIONS(473), + [sym_atx_h5_marker] = ACTIONS(473), + [sym_atx_h6_marker] = ACTIONS(473), + [sym__setext_h1_underline] = ACTIONS(473), + [sym__setext_h2_underline] = ACTIONS(473), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(473), + [sym__thematic_break] = ACTIONS(473), + [sym__list_marker_minus] = ACTIONS(473), + [sym__list_marker_plus] = ACTIONS(473), + [sym__list_marker_star] = ACTIONS(473), + [sym__list_marker_parenthesis] = ACTIONS(473), + [sym__list_marker_dot] = ACTIONS(473), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_star_dont_interrupt] = ACTIONS(473), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(473), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(473), + [sym__fenced_code_block_start_backtick] = ACTIONS(473), + [sym__fenced_code_block_start_tilde] = ACTIONS(473), + [sym__blank_line_start] = ACTIONS(473), + [sym__code_span_start] = ACTIONS(473), + [sym__last_token_whitespace] = ACTIONS(477), + [sym__emphasis_open_star] = ACTIONS(473), + [sym__emphasis_open_underscore] = ACTIONS(473), }, [79] = { - [aux_sym__ignore_matching_tokens] = STATE(82), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__split_token] = ACTIONS(512), - [sym__soft_line_break_marker] = ACTIONS(512), - [sym__block_close] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(516), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h1_underline] = ACTIONS(512), - [sym__setext_h2_underline] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(516), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), + [sym__block_interrupt_paragraph] = STATE(745), + [sym__blank_line] = STATE(745), + [sym_block_quote] = STATE(745), + [sym_atx_heading] = STATE(745), + [sym_setext_h1_underline] = STATE(745), + [sym_setext_h2_underline] = STATE(745), + [sym_thematic_break] = STATE(745), + [sym_fenced_code_block] = STATE(745), + [sym__html_block_1] = STATE(745), + [sym__html_block_2] = STATE(745), + [sym__html_block_3] = STATE(745), + [sym__html_block_4] = STATE(745), + [sym__html_block_5] = STATE(745), + [sym__html_block_6] = STATE(745), + [aux_sym__html_block_1_token1] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(385), + [anon_sym_LT_QMARK] = ACTIONS(387), + [aux_sym__html_block_4_token1] = ACTIONS(389), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(391), + [aux_sym__html_block_6_token1] = ACTIONS(393), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(419), + [sym_uri_autolink] = ACTIONS(419), + [sym_email_autolink] = ACTIONS(419), + [sym_entity_reference] = ACTIONS(419), + [sym_numeric_character_reference] = ACTIONS(419), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(399), + [sym_atx_h1_marker] = ACTIONS(401), + [sym_atx_h2_marker] = ACTIONS(401), + [sym_atx_h3_marker] = ACTIONS(401), + [sym_atx_h4_marker] = ACTIONS(401), + [sym_atx_h5_marker] = ACTIONS(401), + [sym_atx_h6_marker] = ACTIONS(401), + [sym__setext_h1_underline] = ACTIONS(403), + [sym__setext_h2_underline] = ACTIONS(405), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(480), + [sym__thematic_break] = ACTIONS(409), + [sym__list_marker_minus] = ACTIONS(423), + [sym__list_marker_plus] = ACTIONS(423), + [sym__list_marker_star] = ACTIONS(423), + [sym__list_marker_parenthesis] = ACTIONS(423), + [sym__list_marker_dot] = ACTIONS(423), + [sym__fenced_code_block_start_backtick] = ACTIONS(413), + [sym__fenced_code_block_start_tilde] = ACTIONS(415), + [sym__blank_line_start] = ACTIONS(417), + [sym__code_span_start] = ACTIONS(419), + [sym__emphasis_open_star] = ACTIONS(419), + [sym__emphasis_open_underscore] = ACTIONS(419), + [sym__emphasis_close_underscore] = ACTIONS(419), }, [80] = { - [aux_sym__ignore_matching_tokens] = STATE(85), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__split_token] = ACTIONS(512), - [sym__soft_line_break_marker] = ACTIONS(512), - [sym__block_close] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(518), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h1_underline] = ACTIONS(512), - [sym__setext_h2_underline] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(518), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), + [aux_sym__ignore_matching_tokens] = STATE(78), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__split_token] = ACTIONS(482), + [sym__soft_line_break_marker] = ACTIONS(482), + [sym__block_close] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(486), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h1_underline] = ACTIONS(482), + [sym__setext_h2_underline] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(486), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), }, [81] = { - [aux_sym__ignore_matching_tokens] = STATE(81), - [ts_builtin_sym_end] = ACTIONS(520), - [aux_sym__html_block_1_token1] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(522), - [anon_sym_LT_QMARK] = ACTIONS(522), - [aux_sym__html_block_4_token1] = ACTIONS(522), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(520), - [aux_sym__html_block_6_token1] = ACTIONS(522), - [aux_sym__html_block_6_token2] = ACTIONS(520), - [sym__open_tag_html_block] = ACTIONS(520), - [sym__open_tag_html_block_newline] = ACTIONS(520), - [sym__closing_tag_html_block] = ACTIONS(520), - [sym__closing_tag_html_block_newline] = ACTIONS(520), - [sym_backslash_escape] = ACTIONS(520), - [sym_uri_autolink] = ACTIONS(520), - [sym_email_autolink] = ACTIONS(520), - [sym_entity_reference] = ACTIONS(520), - [sym_numeric_character_reference] = ACTIONS(520), - [sym__whitespace_ge_2] = ACTIONS(520), - [aux_sym__whitespace_token1] = ACTIONS(522), - [sym__word_no_digit] = ACTIONS(520), - [sym__digits] = ACTIONS(520), - [aux_sym__newline_token1] = ACTIONS(520), - [sym__split_token] = ACTIONS(520), - [sym__soft_line_break_marker] = ACTIONS(520), - [sym__block_continuation] = ACTIONS(524), - [sym__block_quote_start] = ACTIONS(520), - [sym__indented_chunk_start] = ACTIONS(520), - [sym_atx_h1_marker] = ACTIONS(520), - [sym_atx_h2_marker] = ACTIONS(520), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(520), - [sym_atx_h5_marker] = ACTIONS(520), - [sym_atx_h6_marker] = ACTIONS(520), - [sym__setext_h1_underline] = ACTIONS(520), - [sym__setext_h2_underline] = ACTIONS(520), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), - [sym__thematic_break] = ACTIONS(520), - [sym__list_marker_minus] = ACTIONS(520), - [sym__list_marker_plus] = ACTIONS(520), - [sym__list_marker_star] = ACTIONS(520), - [sym__list_marker_parenthesis] = ACTIONS(520), - [sym__list_marker_dot] = ACTIONS(520), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_star_dont_interrupt] = ACTIONS(520), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(520), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(520), - [sym__fenced_code_block_start_backtick] = ACTIONS(520), - [sym__fenced_code_block_start_tilde] = ACTIONS(520), - [sym__blank_line_start] = ACTIONS(520), - [sym__code_span_start] = ACTIONS(520), - [sym__last_token_whitespace] = ACTIONS(524), - [sym__emphasis_open_star] = ACTIONS(520), - [sym__emphasis_open_underscore] = ACTIONS(520), + [aux_sym__ignore_matching_tokens] = STATE(91), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__split_token] = ACTIONS(482), + [sym__soft_line_break_marker] = ACTIONS(482), + [sym__block_close] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(488), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h1_underline] = ACTIONS(482), + [sym__setext_h2_underline] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(488), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), }, [82] = { - [aux_sym__ignore_matching_tokens] = STATE(85), - [aux_sym__html_block_1_token1] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(527), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), - [anon_sym_BQUOTE] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_QMARK] = ACTIONS(529), - [aux_sym__html_block_4_token1] = ACTIONS(529), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(527), - [aux_sym__html_block_6_token1] = ACTIONS(529), - [aux_sym__html_block_6_token2] = ACTIONS(527), - [sym__open_tag_html_block] = ACTIONS(527), - [sym__open_tag_html_block_newline] = ACTIONS(527), - [sym__closing_tag_html_block] = ACTIONS(527), - [sym__closing_tag_html_block_newline] = ACTIONS(527), - [sym_backslash_escape] = ACTIONS(527), - [sym_uri_autolink] = ACTIONS(527), - [sym_email_autolink] = ACTIONS(527), - [sym_entity_reference] = ACTIONS(527), - [sym_numeric_character_reference] = ACTIONS(527), - [sym__whitespace_ge_2] = ACTIONS(527), - [aux_sym__whitespace_token1] = ACTIONS(529), - [sym__word_no_digit] = ACTIONS(527), - [sym__digits] = ACTIONS(527), - [aux_sym__newline_token1] = ACTIONS(527), - [sym__split_token] = ACTIONS(527), - [sym__soft_line_break_marker] = ACTIONS(527), - [sym__block_close] = ACTIONS(527), - [sym__block_continuation] = ACTIONS(518), - [sym__block_quote_start] = ACTIONS(527), - [sym__indented_chunk_start] = ACTIONS(527), - [sym_atx_h1_marker] = ACTIONS(527), - [sym_atx_h2_marker] = ACTIONS(527), - [sym_atx_h3_marker] = ACTIONS(527), - [sym_atx_h4_marker] = ACTIONS(527), - [sym_atx_h5_marker] = ACTIONS(527), - [sym_atx_h6_marker] = ACTIONS(527), - [sym__setext_h1_underline] = ACTIONS(527), - [sym__setext_h2_underline] = ACTIONS(527), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(527), - [sym__thematic_break] = ACTIONS(527), - [sym__list_marker_minus] = ACTIONS(527), - [sym__list_marker_plus] = ACTIONS(527), - [sym__list_marker_star] = ACTIONS(527), - [sym__list_marker_parenthesis] = ACTIONS(527), - [sym__list_marker_dot] = ACTIONS(527), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_star_dont_interrupt] = ACTIONS(527), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(527), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(527), - [sym__fenced_code_block_start_backtick] = ACTIONS(527), - [sym__fenced_code_block_start_tilde] = ACTIONS(527), - [sym__blank_line_start] = ACTIONS(527), - [sym__code_span_start] = ACTIONS(527), - [sym__last_token_whitespace] = ACTIONS(518), - [sym__emphasis_open_star] = ACTIONS(527), - [sym__emphasis_open_underscore] = ACTIONS(527), + [sym__block_interrupt_paragraph] = STATE(726), + [sym__blank_line] = STATE(726), + [sym_block_quote] = STATE(726), + [sym_atx_heading] = STATE(726), + [sym_setext_h1_underline] = STATE(726), + [sym_setext_h2_underline] = STATE(726), + [sym_thematic_break] = STATE(726), + [sym_fenced_code_block] = STATE(726), + [sym__html_block_1] = STATE(726), + [sym__html_block_2] = STATE(726), + [sym__html_block_3] = STATE(726), + [sym__html_block_4] = STATE(726), + [sym__html_block_5] = STATE(726), + [sym__html_block_6] = STATE(726), + [aux_sym__html_block_1_token1] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(427), + [anon_sym_LT_QMARK] = ACTIONS(429), + [aux_sym__html_block_4_token1] = ACTIONS(431), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(433), + [aux_sym__html_block_6_token1] = ACTIONS(435), + [aux_sym__html_block_6_token2] = ACTIONS(437), + [sym_backslash_escape] = ACTIONS(419), + [sym_uri_autolink] = ACTIONS(419), + [sym_email_autolink] = ACTIONS(419), + [sym_entity_reference] = ACTIONS(419), + [sym_numeric_character_reference] = ACTIONS(419), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(439), + [sym_atx_h1_marker] = ACTIONS(441), + [sym_atx_h2_marker] = ACTIONS(441), + [sym_atx_h3_marker] = ACTIONS(441), + [sym_atx_h4_marker] = ACTIONS(441), + [sym_atx_h5_marker] = ACTIONS(441), + [sym_atx_h6_marker] = ACTIONS(441), + [sym__setext_h1_underline] = ACTIONS(443), + [sym__setext_h2_underline] = ACTIONS(445), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(490), + [sym__thematic_break] = ACTIONS(449), + [sym__list_marker_minus] = ACTIONS(459), + [sym__list_marker_plus] = ACTIONS(459), + [sym__list_marker_star] = ACTIONS(459), + [sym__list_marker_parenthesis] = ACTIONS(459), + [sym__list_marker_dot] = ACTIONS(459), + [sym__fenced_code_block_start_backtick] = ACTIONS(453), + [sym__fenced_code_block_start_tilde] = ACTIONS(455), + [sym__blank_line_start] = ACTIONS(457), + [sym__code_span_start] = ACTIONS(419), + [sym__emphasis_open_star] = ACTIONS(419), + [sym__emphasis_open_underscore] = ACTIONS(419), + [sym__emphasis_close_star] = ACTIONS(419), }, [83] = { - [aux_sym__ignore_matching_tokens] = STATE(81), - [ts_builtin_sym_end] = ACTIONS(527), - [aux_sym__html_block_1_token1] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(527), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), - [anon_sym_BQUOTE] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_QMARK] = ACTIONS(529), - [aux_sym__html_block_4_token1] = ACTIONS(529), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(527), - [aux_sym__html_block_6_token1] = ACTIONS(529), - [aux_sym__html_block_6_token2] = ACTIONS(527), - [sym__open_tag_html_block] = ACTIONS(527), - [sym__open_tag_html_block_newline] = ACTIONS(527), - [sym__closing_tag_html_block] = ACTIONS(527), - [sym__closing_tag_html_block_newline] = ACTIONS(527), - [sym_backslash_escape] = ACTIONS(527), - [sym_uri_autolink] = ACTIONS(527), - [sym_email_autolink] = ACTIONS(527), - [sym_entity_reference] = ACTIONS(527), - [sym_numeric_character_reference] = ACTIONS(527), - [sym__whitespace_ge_2] = ACTIONS(527), - [aux_sym__whitespace_token1] = ACTIONS(529), - [sym__word_no_digit] = ACTIONS(527), - [sym__digits] = ACTIONS(527), - [aux_sym__newline_token1] = ACTIONS(527), - [sym__split_token] = ACTIONS(527), - [sym__soft_line_break_marker] = ACTIONS(527), - [sym__block_continuation] = ACTIONS(531), - [sym__block_quote_start] = ACTIONS(527), - [sym__indented_chunk_start] = ACTIONS(527), - [sym_atx_h1_marker] = ACTIONS(527), - [sym_atx_h2_marker] = ACTIONS(527), - [sym_atx_h3_marker] = ACTIONS(527), - [sym_atx_h4_marker] = ACTIONS(527), - [sym_atx_h5_marker] = ACTIONS(527), - [sym_atx_h6_marker] = ACTIONS(527), - [sym__setext_h1_underline] = ACTIONS(527), - [sym__setext_h2_underline] = ACTIONS(527), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(527), - [sym__thematic_break] = ACTIONS(527), - [sym__list_marker_minus] = ACTIONS(527), - [sym__list_marker_plus] = ACTIONS(527), - [sym__list_marker_star] = ACTIONS(527), - [sym__list_marker_parenthesis] = ACTIONS(527), - [sym__list_marker_dot] = ACTIONS(527), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_star_dont_interrupt] = ACTIONS(527), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(527), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(527), - [sym__fenced_code_block_start_backtick] = ACTIONS(527), - [sym__fenced_code_block_start_tilde] = ACTIONS(527), - [sym__blank_line_start] = ACTIONS(527), - [sym__code_span_start] = ACTIONS(527), - [sym__last_token_whitespace] = ACTIONS(531), - [sym__emphasis_open_star] = ACTIONS(527), - [sym__emphasis_open_underscore] = ACTIONS(527), + [aux_sym__ignore_matching_tokens] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(492), + [aux_sym__html_block_1_token1] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym__] = ACTIONS(492), + [anon_sym_BQUOTE] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(494), + [anon_sym_LT_QMARK] = ACTIONS(494), + [aux_sym__html_block_4_token1] = ACTIONS(494), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(492), + [aux_sym__html_block_6_token1] = ACTIONS(494), + [aux_sym__html_block_6_token2] = ACTIONS(492), + [sym__open_tag_html_block] = ACTIONS(492), + [sym__open_tag_html_block_newline] = ACTIONS(492), + [sym__closing_tag_html_block] = ACTIONS(492), + [sym__closing_tag_html_block_newline] = ACTIONS(492), + [sym_backslash_escape] = ACTIONS(492), + [sym_uri_autolink] = ACTIONS(492), + [sym_email_autolink] = ACTIONS(492), + [sym_entity_reference] = ACTIONS(492), + [sym_numeric_character_reference] = ACTIONS(492), + [sym__whitespace_ge_2] = ACTIONS(492), + [aux_sym__whitespace_token1] = ACTIONS(494), + [sym__word_no_digit] = ACTIONS(492), + [sym__digits] = ACTIONS(492), + [aux_sym__newline_token1] = ACTIONS(492), + [sym__split_token] = ACTIONS(492), + [sym__soft_line_break_marker] = ACTIONS(492), + [sym__block_continuation] = ACTIONS(496), + [sym__block_quote_start] = ACTIONS(492), + [sym__indented_chunk_start] = ACTIONS(492), + [sym_atx_h1_marker] = ACTIONS(492), + [sym_atx_h2_marker] = ACTIONS(492), + [sym_atx_h3_marker] = ACTIONS(492), + [sym_atx_h4_marker] = ACTIONS(492), + [sym_atx_h5_marker] = ACTIONS(492), + [sym_atx_h6_marker] = ACTIONS(492), + [sym__setext_h1_underline] = ACTIONS(492), + [sym__setext_h2_underline] = ACTIONS(492), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(492), + [sym__thematic_break] = ACTIONS(492), + [sym__list_marker_minus] = ACTIONS(492), + [sym__list_marker_plus] = ACTIONS(492), + [sym__list_marker_star] = ACTIONS(492), + [sym__list_marker_parenthesis] = ACTIONS(492), + [sym__list_marker_dot] = ACTIONS(492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(492), + [sym__fenced_code_block_start_backtick] = ACTIONS(492), + [sym__fenced_code_block_start_tilde] = ACTIONS(492), + [sym__blank_line_start] = ACTIONS(492), + [sym__code_span_start] = ACTIONS(492), + [sym__last_token_whitespace] = ACTIONS(496), + [sym__emphasis_open_star] = ACTIONS(492), + [sym__emphasis_open_underscore] = ACTIONS(492), }, [84] = { - [aux_sym__ignore_matching_tokens] = STATE(81), - [ts_builtin_sym_end] = ACTIONS(512), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__split_token] = ACTIONS(512), - [sym__soft_line_break_marker] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(531), + [sym__block_interrupt_paragraph] = STATE(901), + [sym__blank_line] = STATE(901), + [sym_block_quote] = STATE(901), + [sym_atx_heading] = STATE(901), + [sym_setext_h1_underline] = STATE(901), + [sym_setext_h2_underline] = STATE(901), + [sym_thematic_break] = STATE(901), + [sym_fenced_code_block] = STATE(901), + [sym__html_block_1] = STATE(901), + [sym__html_block_2] = STATE(901), + [sym__html_block_3] = STATE(901), + [sym__html_block_4] = STATE(901), + [sym__html_block_5] = STATE(901), + [sym__html_block_6] = STATE(901), + [aux_sym__html_block_1_token1] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(500), + [anon_sym_LT_QMARK] = ACTIONS(502), + [aux_sym__html_block_4_token1] = ACTIONS(504), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(506), + [aux_sym__html_block_6_token1] = ACTIONS(508), + [aux_sym__html_block_6_token2] = ACTIONS(510), + [sym_backslash_escape] = ACTIONS(381), + [sym_uri_autolink] = ACTIONS(381), + [sym_email_autolink] = ACTIONS(381), + [sym_entity_reference] = ACTIONS(381), + [sym_numeric_character_reference] = ACTIONS(381), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [aux_sym__newline_token1] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h1_underline] = ACTIONS(512), - [sym__setext_h2_underline] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(531), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), + [sym_atx_h1_marker] = ACTIONS(514), + [sym_atx_h2_marker] = ACTIONS(514), + [sym_atx_h3_marker] = ACTIONS(514), + [sym_atx_h4_marker] = ACTIONS(514), + [sym_atx_h5_marker] = ACTIONS(514), + [sym_atx_h6_marker] = ACTIONS(514), + [sym__setext_h1_underline] = ACTIONS(516), + [sym__setext_h2_underline] = ACTIONS(518), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), + [sym__thematic_break] = ACTIONS(522), + [sym__list_marker_minus] = ACTIONS(524), + [sym__list_marker_plus] = ACTIONS(524), + [sym__list_marker_star] = ACTIONS(524), + [sym__list_marker_parenthesis] = ACTIONS(524), + [sym__list_marker_dot] = ACTIONS(524), + [sym__fenced_code_block_start_backtick] = ACTIONS(526), + [sym__fenced_code_block_start_tilde] = ACTIONS(528), + [sym__blank_line_start] = ACTIONS(530), + [sym__code_span_start] = ACTIONS(381), + [sym__emphasis_open_star] = ACTIONS(381), + [sym__emphasis_open_underscore] = ACTIONS(381), }, [85] = { - [aux_sym__ignore_matching_tokens] = STATE(85), - [aux_sym__html_block_1_token1] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(522), - [anon_sym_LT_QMARK] = ACTIONS(522), - [aux_sym__html_block_4_token1] = ACTIONS(522), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(520), - [aux_sym__html_block_6_token1] = ACTIONS(522), - [aux_sym__html_block_6_token2] = ACTIONS(520), - [sym__open_tag_html_block] = ACTIONS(520), - [sym__open_tag_html_block_newline] = ACTIONS(520), - [sym__closing_tag_html_block] = ACTIONS(520), - [sym__closing_tag_html_block_newline] = ACTIONS(520), - [sym_backslash_escape] = ACTIONS(520), - [sym_uri_autolink] = ACTIONS(520), - [sym_email_autolink] = ACTIONS(520), - [sym_entity_reference] = ACTIONS(520), - [sym_numeric_character_reference] = ACTIONS(520), - [sym__whitespace_ge_2] = ACTIONS(520), - [aux_sym__whitespace_token1] = ACTIONS(522), - [sym__word_no_digit] = ACTIONS(520), - [sym__digits] = ACTIONS(520), - [aux_sym__newline_token1] = ACTIONS(520), - [sym__split_token] = ACTIONS(520), - [sym__soft_line_break_marker] = ACTIONS(520), - [sym__block_close] = ACTIONS(520), - [sym__block_continuation] = ACTIONS(533), - [sym__block_quote_start] = ACTIONS(520), - [sym__indented_chunk_start] = ACTIONS(520), - [sym_atx_h1_marker] = ACTIONS(520), - [sym_atx_h2_marker] = ACTIONS(520), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(520), - [sym_atx_h5_marker] = ACTIONS(520), - [sym_atx_h6_marker] = ACTIONS(520), - [sym__setext_h1_underline] = ACTIONS(520), - [sym__setext_h2_underline] = ACTIONS(520), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), - [sym__thematic_break] = ACTIONS(520), - [sym__list_marker_minus] = ACTIONS(520), - [sym__list_marker_plus] = ACTIONS(520), - [sym__list_marker_star] = ACTIONS(520), - [sym__list_marker_parenthesis] = ACTIONS(520), - [sym__list_marker_dot] = ACTIONS(520), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_star_dont_interrupt] = ACTIONS(520), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(520), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(520), - [sym__fenced_code_block_start_backtick] = ACTIONS(520), - [sym__fenced_code_block_start_tilde] = ACTIONS(520), - [sym__blank_line_start] = ACTIONS(520), - [sym__code_span_start] = ACTIONS(520), - [sym__last_token_whitespace] = ACTIONS(533), - [sym__emphasis_open_star] = ACTIONS(520), - [sym__emphasis_open_underscore] = ACTIONS(520), + [aux_sym__ignore_matching_tokens] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__split_token] = ACTIONS(482), + [sym__soft_line_break_marker] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(496), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h1_underline] = ACTIONS(482), + [sym__setext_h2_underline] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(496), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), }, [86] = { - [sym__block_interrupt_paragraph] = STATE(702), - [sym__blank_line] = STATE(702), - [sym_block_quote] = STATE(702), - [sym_atx_heading] = STATE(702), - [sym_setext_h1_underline] = STATE(702), - [sym_setext_h2_underline] = STATE(702), - [sym_thematic_break] = STATE(702), - [sym_fenced_code_block] = STATE(702), - [sym__html_block_1] = STATE(702), - [sym__html_block_2] = STATE(702), - [sym__html_block_3] = STATE(702), - [sym__html_block_4] = STATE(702), - [sym__html_block_5] = STATE(702), - [sym__html_block_6] = STATE(702), - [aux_sym__html_block_1_token1] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(398), - [anon_sym_LT_QMARK] = ACTIONS(400), - [aux_sym__html_block_4_token1] = ACTIONS(402), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(404), - [aux_sym__html_block_6_token1] = ACTIONS(406), - [aux_sym__html_block_6_token2] = ACTIONS(408), - [sym_backslash_escape] = ACTIONS(436), - [sym_uri_autolink] = ACTIONS(436), - [sym_email_autolink] = ACTIONS(436), - [sym_entity_reference] = ACTIONS(436), - [sym_numeric_character_reference] = ACTIONS(436), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(412), - [sym_atx_h1_marker] = ACTIONS(414), - [sym_atx_h2_marker] = ACTIONS(414), - [sym_atx_h3_marker] = ACTIONS(414), - [sym_atx_h4_marker] = ACTIONS(414), - [sym_atx_h5_marker] = ACTIONS(414), - [sym_atx_h6_marker] = ACTIONS(414), - [sym__setext_h1_underline] = ACTIONS(416), - [sym__setext_h2_underline] = ACTIONS(418), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(536), - [sym__thematic_break] = ACTIONS(422), - [sym__list_marker_minus] = ACTIONS(440), - [sym__list_marker_plus] = ACTIONS(440), - [sym__list_marker_star] = ACTIONS(440), - [sym__list_marker_parenthesis] = ACTIONS(440), - [sym__list_marker_dot] = ACTIONS(440), - [sym__fenced_code_block_start_backtick] = ACTIONS(426), - [sym__fenced_code_block_start_tilde] = ACTIONS(428), - [sym__blank_line_start] = ACTIONS(430), - [sym__code_span_start] = ACTIONS(436), - [sym__emphasis_open_star] = ACTIONS(436), - [sym__emphasis_open_underscore] = ACTIONS(436), - [sym__emphasis_close_star] = ACTIONS(436), + [sym__block_interrupt_paragraph] = STATE(894), + [sym__blank_line] = STATE(894), + [sym_block_quote] = STATE(894), + [sym_atx_heading] = STATE(894), + [sym_setext_h1_underline] = STATE(894), + [sym_setext_h2_underline] = STATE(894), + [sym_thematic_break] = STATE(894), + [sym_fenced_code_block] = STATE(894), + [sym__html_block_1] = STATE(894), + [sym__html_block_2] = STATE(894), + [sym__html_block_3] = STATE(894), + [sym__html_block_4] = STATE(894), + [sym__html_block_5] = STATE(894), + [sym__html_block_6] = STATE(894), + [aux_sym__html_block_1_token1] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(500), + [anon_sym_LT_QMARK] = ACTIONS(502), + [aux_sym__html_block_4_token1] = ACTIONS(504), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(506), + [aux_sym__html_block_6_token1] = ACTIONS(508), + [aux_sym__html_block_6_token2] = ACTIONS(510), + [sym_backslash_escape] = ACTIONS(419), + [sym_uri_autolink] = ACTIONS(419), + [sym_email_autolink] = ACTIONS(419), + [sym_entity_reference] = ACTIONS(419), + [sym_numeric_character_reference] = ACTIONS(419), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [aux_sym__newline_token1] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(512), + [sym_atx_h1_marker] = ACTIONS(514), + [sym_atx_h2_marker] = ACTIONS(514), + [sym_atx_h3_marker] = ACTIONS(514), + [sym_atx_h4_marker] = ACTIONS(514), + [sym_atx_h5_marker] = ACTIONS(514), + [sym_atx_h6_marker] = ACTIONS(514), + [sym__setext_h1_underline] = ACTIONS(516), + [sym__setext_h2_underline] = ACTIONS(518), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), + [sym__thematic_break] = ACTIONS(522), + [sym__list_marker_minus] = ACTIONS(532), + [sym__list_marker_plus] = ACTIONS(532), + [sym__list_marker_star] = ACTIONS(532), + [sym__list_marker_parenthesis] = ACTIONS(532), + [sym__list_marker_dot] = ACTIONS(532), + [sym__fenced_code_block_start_backtick] = ACTIONS(526), + [sym__fenced_code_block_start_tilde] = ACTIONS(528), + [sym__blank_line_start] = ACTIONS(530), + [sym__code_span_start] = ACTIONS(419), + [sym__emphasis_open_star] = ACTIONS(419), + [sym__emphasis_open_underscore] = ACTIONS(419), }, [87] = { - [sym__block_interrupt_paragraph] = STATE(797), - [sym__blank_line] = STATE(797), - [sym_block_quote] = STATE(797), - [sym_atx_heading] = STATE(797), - [sym_setext_h1_underline] = STATE(797), - [sym_setext_h2_underline] = STATE(797), - [sym_thematic_break] = STATE(797), - [sym_fenced_code_block] = STATE(797), - [sym__html_block_1] = STATE(797), - [sym__html_block_2] = STATE(797), - [sym__html_block_3] = STATE(797), - [sym__html_block_4] = STATE(797), - [sym__html_block_5] = STATE(797), - [sym__html_block_6] = STATE(797), - [aux_sym__html_block_1_token1] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(444), - [anon_sym_LT_QMARK] = ACTIONS(446), - [aux_sym__html_block_4_token1] = ACTIONS(448), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(450), - [aux_sym__html_block_6_token1] = ACTIONS(452), - [aux_sym__html_block_6_token2] = ACTIONS(454), - [sym_backslash_escape] = ACTIONS(436), - [sym_uri_autolink] = ACTIONS(436), - [sym_email_autolink] = ACTIONS(436), - [sym_entity_reference] = ACTIONS(436), - [sym_numeric_character_reference] = ACTIONS(436), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(456), - [sym_atx_h1_marker] = ACTIONS(458), - [sym_atx_h2_marker] = ACTIONS(458), - [sym_atx_h3_marker] = ACTIONS(458), - [sym_atx_h4_marker] = ACTIONS(458), - [sym_atx_h5_marker] = ACTIONS(458), - [sym_atx_h6_marker] = ACTIONS(458), - [sym__setext_h1_underline] = ACTIONS(460), - [sym__setext_h2_underline] = ACTIONS(462), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(538), - [sym__thematic_break] = ACTIONS(466), - [sym__list_marker_minus] = ACTIONS(476), - [sym__list_marker_plus] = ACTIONS(476), - [sym__list_marker_star] = ACTIONS(476), - [sym__list_marker_parenthesis] = ACTIONS(476), - [sym__list_marker_dot] = ACTIONS(476), - [sym__fenced_code_block_start_backtick] = ACTIONS(470), - [sym__fenced_code_block_start_tilde] = ACTIONS(472), - [sym__blank_line_start] = ACTIONS(474), - [sym__code_span_start] = ACTIONS(436), - [sym__emphasis_open_star] = ACTIONS(436), - [sym__emphasis_open_underscore] = ACTIONS(436), - [sym__emphasis_close_underscore] = ACTIONS(436), + [sym__block_interrupt_paragraph] = STATE(688), + [sym__blank_line] = STATE(688), + [sym_block_quote] = STATE(688), + [sym_atx_heading] = STATE(688), + [sym_setext_h1_underline] = STATE(688), + [sym_setext_h2_underline] = STATE(688), + [sym_thematic_break] = STATE(688), + [sym_fenced_code_block] = STATE(688), + [sym__html_block_1] = STATE(688), + [sym__html_block_2] = STATE(688), + [sym__html_block_3] = STATE(688), + [sym__html_block_4] = STATE(688), + [sym__html_block_5] = STATE(688), + [sym__html_block_6] = STATE(688), + [aux_sym__html_block_1_token1] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(427), + [anon_sym_LT_QMARK] = ACTIONS(429), + [aux_sym__html_block_4_token1] = ACTIONS(431), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(433), + [aux_sym__html_block_6_token1] = ACTIONS(435), + [aux_sym__html_block_6_token2] = ACTIONS(437), + [sym_backslash_escape] = ACTIONS(381), + [sym_uri_autolink] = ACTIONS(381), + [sym_email_autolink] = ACTIONS(381), + [sym_entity_reference] = ACTIONS(381), + [sym_numeric_character_reference] = ACTIONS(381), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(439), + [sym_atx_h1_marker] = ACTIONS(441), + [sym_atx_h2_marker] = ACTIONS(441), + [sym_atx_h3_marker] = ACTIONS(441), + [sym_atx_h4_marker] = ACTIONS(441), + [sym_atx_h5_marker] = ACTIONS(441), + [sym_atx_h6_marker] = ACTIONS(441), + [sym__setext_h1_underline] = ACTIONS(443), + [sym__setext_h2_underline] = ACTIONS(445), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(490), + [sym__thematic_break] = ACTIONS(449), + [sym__list_marker_minus] = ACTIONS(451), + [sym__list_marker_plus] = ACTIONS(451), + [sym__list_marker_star] = ACTIONS(451), + [sym__list_marker_parenthesis] = ACTIONS(451), + [sym__list_marker_dot] = ACTIONS(451), + [sym__fenced_code_block_start_backtick] = ACTIONS(453), + [sym__fenced_code_block_start_tilde] = ACTIONS(455), + [sym__blank_line_start] = ACTIONS(457), + [sym__code_span_start] = ACTIONS(381), + [sym__emphasis_open_star] = ACTIONS(381), + [sym__emphasis_open_underscore] = ACTIONS(381), + [sym__emphasis_close_star] = ACTIONS(381), }, [88] = { [aux_sym__ignore_matching_tokens] = STATE(83), - [ts_builtin_sym_end] = ACTIONS(512), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__split_token] = ACTIONS(512), - [sym__soft_line_break_marker] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(540), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h1_underline] = ACTIONS(512), - [sym__setext_h2_underline] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(540), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), + [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__split_token] = ACTIONS(482), + [sym__soft_line_break_marker] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(534), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h1_underline] = ACTIONS(482), + [sym__setext_h2_underline] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(534), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), }, [89] = { - [sym__block_interrupt_paragraph] = STATE(742), - [sym__blank_line] = STATE(742), - [sym_block_quote] = STATE(742), - [sym_atx_heading] = STATE(742), - [sym_setext_h1_underline] = STATE(742), - [sym_setext_h2_underline] = STATE(742), - [sym_thematic_break] = STATE(742), - [sym_fenced_code_block] = STATE(742), - [sym__html_block_1] = STATE(742), - [sym__html_block_2] = STATE(742), - [sym__html_block_3] = STATE(742), - [sym__html_block_4] = STATE(742), - [sym__html_block_5] = STATE(742), - [sym__html_block_6] = STATE(742), - [aux_sym__html_block_1_token1] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(398), - [anon_sym_LT_QMARK] = ACTIONS(400), - [aux_sym__html_block_4_token1] = ACTIONS(402), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(404), - [aux_sym__html_block_6_token1] = ACTIONS(406), - [aux_sym__html_block_6_token2] = ACTIONS(408), - [sym_backslash_escape] = ACTIONS(394), - [sym_uri_autolink] = ACTIONS(394), - [sym_email_autolink] = ACTIONS(394), - [sym_entity_reference] = ACTIONS(394), - [sym_numeric_character_reference] = ACTIONS(394), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(412), - [sym_atx_h1_marker] = ACTIONS(414), - [sym_atx_h2_marker] = ACTIONS(414), - [sym_atx_h3_marker] = ACTIONS(414), - [sym_atx_h4_marker] = ACTIONS(414), - [sym_atx_h5_marker] = ACTIONS(414), - [sym_atx_h6_marker] = ACTIONS(414), - [sym__setext_h1_underline] = ACTIONS(416), - [sym__setext_h2_underline] = ACTIONS(418), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(536), - [sym__thematic_break] = ACTIONS(422), - [sym__list_marker_minus] = ACTIONS(424), - [sym__list_marker_plus] = ACTIONS(424), - [sym__list_marker_star] = ACTIONS(424), - [sym__list_marker_parenthesis] = ACTIONS(424), - [sym__list_marker_dot] = ACTIONS(424), - [sym__fenced_code_block_start_backtick] = ACTIONS(426), - [sym__fenced_code_block_start_tilde] = ACTIONS(428), - [sym__blank_line_start] = ACTIONS(430), - [sym__code_span_start] = ACTIONS(394), - [sym__emphasis_open_star] = ACTIONS(394), - [sym__emphasis_open_underscore] = ACTIONS(394), - [sym__emphasis_close_star] = ACTIONS(394), + [sym__block_interrupt_paragraph] = STATE(741), + [sym__blank_line] = STATE(741), + [sym_block_quote] = STATE(741), + [sym_atx_heading] = STATE(741), + [sym_setext_h1_underline] = STATE(741), + [sym_setext_h2_underline] = STATE(741), + [sym_thematic_break] = STATE(741), + [sym_fenced_code_block] = STATE(741), + [sym__html_block_1] = STATE(741), + [sym__html_block_2] = STATE(741), + [sym__html_block_3] = STATE(741), + [sym__html_block_4] = STATE(741), + [sym__html_block_5] = STATE(741), + [sym__html_block_6] = STATE(741), + [aux_sym__html_block_1_token1] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(385), + [anon_sym_LT_QMARK] = ACTIONS(387), + [aux_sym__html_block_4_token1] = ACTIONS(389), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(391), + [aux_sym__html_block_6_token1] = ACTIONS(393), + [aux_sym__html_block_6_token2] = ACTIONS(395), + [sym_backslash_escape] = ACTIONS(381), + [sym_uri_autolink] = ACTIONS(381), + [sym_email_autolink] = ACTIONS(381), + [sym_entity_reference] = ACTIONS(381), + [sym_numeric_character_reference] = ACTIONS(381), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(399), + [sym_atx_h1_marker] = ACTIONS(401), + [sym_atx_h2_marker] = ACTIONS(401), + [sym_atx_h3_marker] = ACTIONS(401), + [sym_atx_h4_marker] = ACTIONS(401), + [sym_atx_h5_marker] = ACTIONS(401), + [sym_atx_h6_marker] = ACTIONS(401), + [sym__setext_h1_underline] = ACTIONS(403), + [sym__setext_h2_underline] = ACTIONS(405), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(480), + [sym__thematic_break] = ACTIONS(409), + [sym__list_marker_minus] = ACTIONS(411), + [sym__list_marker_plus] = ACTIONS(411), + [sym__list_marker_star] = ACTIONS(411), + [sym__list_marker_parenthesis] = ACTIONS(411), + [sym__list_marker_dot] = ACTIONS(411), + [sym__fenced_code_block_start_backtick] = ACTIONS(413), + [sym__fenced_code_block_start_tilde] = ACTIONS(415), + [sym__blank_line_start] = ACTIONS(417), + [sym__code_span_start] = ACTIONS(381), + [sym__emphasis_open_star] = ACTIONS(381), + [sym__emphasis_open_underscore] = ACTIONS(381), + [sym__emphasis_close_underscore] = ACTIONS(381), }, [90] = { - [sym__block_interrupt_paragraph] = STATE(824), - [sym__blank_line] = STATE(824), - [sym_block_quote] = STATE(824), - [sym_atx_heading] = STATE(824), - [sym_setext_h1_underline] = STATE(824), - [sym_setext_h2_underline] = STATE(824), - [sym_thematic_break] = STATE(824), - [sym_fenced_code_block] = STATE(824), - [sym__html_block_1] = STATE(824), - [sym__html_block_2] = STATE(824), - [sym__html_block_3] = STATE(824), - [sym__html_block_4] = STATE(824), - [sym__html_block_5] = STATE(824), - [sym__html_block_6] = STATE(824), - [aux_sym__html_block_1_token1] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(480), - [anon_sym_LT_QMARK] = ACTIONS(482), - [aux_sym__html_block_4_token1] = ACTIONS(484), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(486), - [aux_sym__html_block_6_token1] = ACTIONS(488), - [aux_sym__html_block_6_token2] = ACTIONS(490), - [sym_backslash_escape] = ACTIONS(394), - [sym_uri_autolink] = ACTIONS(394), - [sym_email_autolink] = ACTIONS(394), - [sym_entity_reference] = ACTIONS(394), - [sym_numeric_character_reference] = ACTIONS(394), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [aux_sym__newline_token1] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(492), - [sym_atx_h1_marker] = ACTIONS(494), - [sym_atx_h2_marker] = ACTIONS(494), - [sym_atx_h3_marker] = ACTIONS(494), - [sym_atx_h4_marker] = ACTIONS(494), - [sym_atx_h5_marker] = ACTIONS(494), - [sym_atx_h6_marker] = ACTIONS(494), - [sym__setext_h1_underline] = ACTIONS(496), - [sym__setext_h2_underline] = ACTIONS(498), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(500), - [sym__thematic_break] = ACTIONS(502), - [sym__list_marker_minus] = ACTIONS(542), - [sym__list_marker_plus] = ACTIONS(542), - [sym__list_marker_star] = ACTIONS(542), - [sym__list_marker_parenthesis] = ACTIONS(542), - [sym__list_marker_dot] = ACTIONS(542), - [sym__fenced_code_block_start_backtick] = ACTIONS(506), - [sym__fenced_code_block_start_tilde] = ACTIONS(508), - [sym__blank_line_start] = ACTIONS(510), - [sym__code_span_start] = ACTIONS(394), - [sym__emphasis_open_star] = ACTIONS(394), - [sym__emphasis_open_underscore] = ACTIONS(394), + [aux_sym__ignore_matching_tokens] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(473), + [aux_sym__html_block_1_token1] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_BSLASH] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(475), + [anon_sym_LT_QMARK] = ACTIONS(475), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(473), + [aux_sym__html_block_6_token1] = ACTIONS(475), + [aux_sym__html_block_6_token2] = ACTIONS(473), + [sym__open_tag_html_block] = ACTIONS(473), + [sym__open_tag_html_block_newline] = ACTIONS(473), + [sym__closing_tag_html_block] = ACTIONS(473), + [sym__closing_tag_html_block_newline] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [sym_uri_autolink] = ACTIONS(473), + [sym_email_autolink] = ACTIONS(473), + [sym_entity_reference] = ACTIONS(473), + [sym_numeric_character_reference] = ACTIONS(473), + [sym__whitespace_ge_2] = ACTIONS(473), + [aux_sym__whitespace_token1] = ACTIONS(475), + [sym__word_no_digit] = ACTIONS(473), + [sym__digits] = ACTIONS(473), + [aux_sym__newline_token1] = ACTIONS(473), + [sym__split_token] = ACTIONS(473), + [sym__soft_line_break_marker] = ACTIONS(473), + [sym__block_continuation] = ACTIONS(536), + [sym__block_quote_start] = ACTIONS(473), + [sym__indented_chunk_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(473), + [sym_atx_h2_marker] = ACTIONS(473), + [sym_atx_h3_marker] = ACTIONS(473), + [sym_atx_h4_marker] = ACTIONS(473), + [sym_atx_h5_marker] = ACTIONS(473), + [sym_atx_h6_marker] = ACTIONS(473), + [sym__setext_h1_underline] = ACTIONS(473), + [sym__setext_h2_underline] = ACTIONS(473), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(473), + [sym__thematic_break] = ACTIONS(473), + [sym__list_marker_minus] = ACTIONS(473), + [sym__list_marker_plus] = ACTIONS(473), + [sym__list_marker_star] = ACTIONS(473), + [sym__list_marker_parenthesis] = ACTIONS(473), + [sym__list_marker_dot] = ACTIONS(473), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_star_dont_interrupt] = ACTIONS(473), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(473), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(473), + [sym__fenced_code_block_start_backtick] = ACTIONS(473), + [sym__fenced_code_block_start_tilde] = ACTIONS(473), + [sym__blank_line_start] = ACTIONS(473), + [sym__code_span_start] = ACTIONS(473), + [sym__last_token_whitespace] = ACTIONS(536), + [sym__emphasis_open_star] = ACTIONS(473), + [sym__emphasis_open_underscore] = ACTIONS(473), }, [91] = { - [sym__block_interrupt_paragraph] = STATE(679), - [sym__blank_line] = STATE(679), - [sym_block_quote] = STATE(679), - [sym_atx_heading] = STATE(679), - [sym_setext_h1_underline] = STATE(679), - [sym_setext_h2_underline] = STATE(679), - [sym_thematic_break] = STATE(679), - [sym_fenced_code_block] = STATE(679), - [sym__html_block_1] = STATE(679), - [sym__html_block_2] = STATE(679), - [sym__html_block_3] = STATE(679), - [sym__html_block_4] = STATE(679), - [sym__html_block_5] = STATE(679), - [sym__html_block_6] = STATE(679), - [aux_sym__html_block_1_token1] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(444), - [anon_sym_LT_QMARK] = ACTIONS(446), - [aux_sym__html_block_4_token1] = ACTIONS(448), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(450), - [aux_sym__html_block_6_token1] = ACTIONS(452), - [aux_sym__html_block_6_token2] = ACTIONS(454), - [sym_backslash_escape] = ACTIONS(394), - [sym_uri_autolink] = ACTIONS(394), - [sym_email_autolink] = ACTIONS(394), - [sym_entity_reference] = ACTIONS(394), - [sym_numeric_character_reference] = ACTIONS(394), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(456), - [sym_atx_h1_marker] = ACTIONS(458), - [sym_atx_h2_marker] = ACTIONS(458), - [sym_atx_h3_marker] = ACTIONS(458), - [sym_atx_h4_marker] = ACTIONS(458), - [sym_atx_h5_marker] = ACTIONS(458), - [sym_atx_h6_marker] = ACTIONS(458), - [sym__setext_h1_underline] = ACTIONS(460), - [sym__setext_h2_underline] = ACTIONS(462), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(538), - [sym__thematic_break] = ACTIONS(466), - [sym__list_marker_minus] = ACTIONS(468), - [sym__list_marker_plus] = ACTIONS(468), - [sym__list_marker_star] = ACTIONS(468), - [sym__list_marker_parenthesis] = ACTIONS(468), - [sym__list_marker_dot] = ACTIONS(468), - [sym__fenced_code_block_start_backtick] = ACTIONS(470), - [sym__fenced_code_block_start_tilde] = ACTIONS(472), - [sym__blank_line_start] = ACTIONS(474), - [sym__code_span_start] = ACTIONS(394), - [sym__emphasis_open_star] = ACTIONS(394), - [sym__emphasis_open_underscore] = ACTIONS(394), - [sym__emphasis_close_underscore] = ACTIONS(394), + [aux_sym__ignore_matching_tokens] = STATE(78), + [aux_sym__html_block_1_token1] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym__] = ACTIONS(492), + [anon_sym_BQUOTE] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(494), + [anon_sym_LT_QMARK] = ACTIONS(494), + [aux_sym__html_block_4_token1] = ACTIONS(494), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(492), + [aux_sym__html_block_6_token1] = ACTIONS(494), + [aux_sym__html_block_6_token2] = ACTIONS(492), + [sym__open_tag_html_block] = ACTIONS(492), + [sym__open_tag_html_block_newline] = ACTIONS(492), + [sym__closing_tag_html_block] = ACTIONS(492), + [sym__closing_tag_html_block_newline] = ACTIONS(492), + [sym_backslash_escape] = ACTIONS(492), + [sym_uri_autolink] = ACTIONS(492), + [sym_email_autolink] = ACTIONS(492), + [sym_entity_reference] = ACTIONS(492), + [sym_numeric_character_reference] = ACTIONS(492), + [sym__whitespace_ge_2] = ACTIONS(492), + [aux_sym__whitespace_token1] = ACTIONS(494), + [sym__word_no_digit] = ACTIONS(492), + [sym__digits] = ACTIONS(492), + [aux_sym__newline_token1] = ACTIONS(492), + [sym__split_token] = ACTIONS(492), + [sym__soft_line_break_marker] = ACTIONS(492), + [sym__block_close] = ACTIONS(492), + [sym__block_continuation] = ACTIONS(486), + [sym__block_quote_start] = ACTIONS(492), + [sym__indented_chunk_start] = ACTIONS(492), + [sym_atx_h1_marker] = ACTIONS(492), + [sym_atx_h2_marker] = ACTIONS(492), + [sym_atx_h3_marker] = ACTIONS(492), + [sym_atx_h4_marker] = ACTIONS(492), + [sym_atx_h5_marker] = ACTIONS(492), + [sym_atx_h6_marker] = ACTIONS(492), + [sym__setext_h1_underline] = ACTIONS(492), + [sym__setext_h2_underline] = ACTIONS(492), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(492), + [sym__thematic_break] = ACTIONS(492), + [sym__list_marker_minus] = ACTIONS(492), + [sym__list_marker_plus] = ACTIONS(492), + [sym__list_marker_star] = ACTIONS(492), + [sym__list_marker_parenthesis] = ACTIONS(492), + [sym__list_marker_dot] = ACTIONS(492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(492), + [sym__fenced_code_block_start_backtick] = ACTIONS(492), + [sym__fenced_code_block_start_tilde] = ACTIONS(492), + [sym__blank_line_start] = ACTIONS(492), + [sym__code_span_start] = ACTIONS(492), + [sym__last_token_whitespace] = ACTIONS(486), + [sym__emphasis_open_star] = ACTIONS(492), + [sym__emphasis_open_underscore] = ACTIONS(492), }, [92] = { - [aux_sym__soft_line_break_repeat1] = STATE(2095), - [aux_sym__paragraph_end_newline_repeat1] = STATE(105), - [ts_builtin_sym_end] = ACTIONS(544), - [aux_sym__html_block_1_token1] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym__] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(546), - [anon_sym_LT_QMARK] = ACTIONS(546), - [aux_sym__html_block_4_token1] = ACTIONS(546), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(544), - [aux_sym__html_block_6_token1] = ACTIONS(546), - [aux_sym__html_block_6_token2] = ACTIONS(544), - [sym__open_tag_html_block] = ACTIONS(544), - [sym__open_tag_html_block_newline] = ACTIONS(544), - [sym__closing_tag_html_block] = ACTIONS(544), - [sym__closing_tag_html_block_newline] = ACTIONS(544), - [sym_backslash_escape] = ACTIONS(544), - [sym_uri_autolink] = ACTIONS(544), - [sym_email_autolink] = ACTIONS(544), - [sym_entity_reference] = ACTIONS(544), - [sym_numeric_character_reference] = ACTIONS(544), - [sym__whitespace_ge_2] = ACTIONS(544), - [aux_sym__whitespace_token1] = ACTIONS(546), - [sym__word_no_digit] = ACTIONS(544), - [sym__digits] = ACTIONS(544), - [aux_sym__newline_token1] = ACTIONS(544), - [sym__split_token] = ACTIONS(548), - [sym__soft_line_break_marker] = ACTIONS(550), - [sym__block_quote_start] = ACTIONS(544), - [sym__indented_chunk_start] = ACTIONS(544), - [sym_atx_h1_marker] = ACTIONS(544), - [sym_atx_h2_marker] = ACTIONS(544), - [sym_atx_h3_marker] = ACTIONS(544), - [sym_atx_h4_marker] = ACTIONS(544), - [sym_atx_h5_marker] = ACTIONS(544), - [sym_atx_h6_marker] = ACTIONS(544), - [sym__setext_h1_underline] = ACTIONS(544), - [sym__setext_h2_underline] = ACTIONS(544), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(544), - [sym__thematic_break] = ACTIONS(544), - [sym__list_marker_minus] = ACTIONS(544), - [sym__list_marker_plus] = ACTIONS(544), - [sym__list_marker_star] = ACTIONS(544), - [sym__list_marker_parenthesis] = ACTIONS(544), - [sym__list_marker_dot] = ACTIONS(544), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(544), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(544), - [sym__list_marker_star_dont_interrupt] = ACTIONS(544), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(544), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(544), - [sym__fenced_code_block_start_backtick] = ACTIONS(544), - [sym__fenced_code_block_start_tilde] = ACTIONS(544), - [sym__blank_line_start] = ACTIONS(544), - [sym__code_span_start] = ACTIONS(544), - [sym__emphasis_open_star] = ACTIONS(544), - [sym__emphasis_open_underscore] = ACTIONS(544), + [aux_sym__soft_line_break_repeat1] = STATE(2115), + [aux_sym__paragraph_end_newline_repeat1] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(539), + [aux_sym__html_block_1_token1] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(539), + [anon_sym_PERCENT] = ACTIONS(539), + [anon_sym_AMP] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(539), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_SLASH] = ACTIONS(539), + [anon_sym_COLON] = ACTIONS(539), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_BSLASH] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(539), + [anon_sym__] = ACTIONS(539), + [anon_sym_BQUOTE] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_TILDE] = ACTIONS(539), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(541), + [anon_sym_LT_QMARK] = ACTIONS(541), + [aux_sym__html_block_4_token1] = ACTIONS(541), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(539), + [aux_sym__html_block_6_token1] = ACTIONS(541), + [aux_sym__html_block_6_token2] = ACTIONS(539), + [sym__open_tag_html_block] = ACTIONS(539), + [sym__open_tag_html_block_newline] = ACTIONS(539), + [sym__closing_tag_html_block] = ACTIONS(539), + [sym__closing_tag_html_block_newline] = ACTIONS(539), + [sym_backslash_escape] = ACTIONS(539), + [sym_uri_autolink] = ACTIONS(539), + [sym_email_autolink] = ACTIONS(539), + [sym_entity_reference] = ACTIONS(539), + [sym_numeric_character_reference] = ACTIONS(539), + [sym__whitespace_ge_2] = ACTIONS(539), + [aux_sym__whitespace_token1] = ACTIONS(541), + [sym__word_no_digit] = ACTIONS(539), + [sym__digits] = ACTIONS(539), + [aux_sym__newline_token1] = ACTIONS(539), + [sym__split_token] = ACTIONS(543), + [sym__soft_line_break_marker] = ACTIONS(545), + [sym__block_quote_start] = ACTIONS(539), + [sym__indented_chunk_start] = ACTIONS(539), + [sym_atx_h1_marker] = ACTIONS(539), + [sym_atx_h2_marker] = ACTIONS(539), + [sym_atx_h3_marker] = ACTIONS(539), + [sym_atx_h4_marker] = ACTIONS(539), + [sym_atx_h5_marker] = ACTIONS(539), + [sym_atx_h6_marker] = ACTIONS(539), + [sym__setext_h1_underline] = ACTIONS(539), + [sym__setext_h2_underline] = ACTIONS(539), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(539), + [sym__thematic_break] = ACTIONS(539), + [sym__list_marker_minus] = ACTIONS(539), + [sym__list_marker_plus] = ACTIONS(539), + [sym__list_marker_star] = ACTIONS(539), + [sym__list_marker_parenthesis] = ACTIONS(539), + [sym__list_marker_dot] = ACTIONS(539), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(539), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(539), + [sym__list_marker_star_dont_interrupt] = ACTIONS(539), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(539), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(539), + [sym__fenced_code_block_start_backtick] = ACTIONS(539), + [sym__fenced_code_block_start_tilde] = ACTIONS(539), + [sym__blank_line_start] = ACTIONS(539), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(539), }, [93] = { - [aux_sym__soft_line_break_repeat1] = STATE(2095), - [aux_sym__paragraph_end_newline_repeat1] = STATE(113), - [aux_sym__html_block_1_token1] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_BSLASH] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym__] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(546), - [anon_sym_LT_QMARK] = ACTIONS(546), - [aux_sym__html_block_4_token1] = ACTIONS(546), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(544), - [aux_sym__html_block_6_token1] = ACTIONS(546), - [aux_sym__html_block_6_token2] = ACTIONS(544), - [sym__open_tag_html_block] = ACTIONS(544), - [sym__open_tag_html_block_newline] = ACTIONS(544), - [sym__closing_tag_html_block] = ACTIONS(544), - [sym__closing_tag_html_block_newline] = ACTIONS(544), - [sym_backslash_escape] = ACTIONS(544), - [sym_uri_autolink] = ACTIONS(544), - [sym_email_autolink] = ACTIONS(544), - [sym_entity_reference] = ACTIONS(544), - [sym_numeric_character_reference] = ACTIONS(544), - [sym__whitespace_ge_2] = ACTIONS(544), - [aux_sym__whitespace_token1] = ACTIONS(546), - [sym__word_no_digit] = ACTIONS(544), - [sym__digits] = ACTIONS(544), - [aux_sym__newline_token1] = ACTIONS(544), - [sym__split_token] = ACTIONS(552), - [sym__soft_line_break_marker] = ACTIONS(550), - [sym__block_close] = ACTIONS(544), - [sym__block_quote_start] = ACTIONS(544), - [sym__indented_chunk_start] = ACTIONS(544), - [sym_atx_h1_marker] = ACTIONS(544), - [sym_atx_h2_marker] = ACTIONS(544), - [sym_atx_h3_marker] = ACTIONS(544), - [sym_atx_h4_marker] = ACTIONS(544), - [sym_atx_h5_marker] = ACTIONS(544), - [sym_atx_h6_marker] = ACTIONS(544), - [sym__setext_h1_underline] = ACTIONS(544), - [sym__setext_h2_underline] = ACTIONS(544), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(544), - [sym__thematic_break] = ACTIONS(544), - [sym__list_marker_minus] = ACTIONS(544), - [sym__list_marker_plus] = ACTIONS(544), - [sym__list_marker_star] = ACTIONS(544), - [sym__list_marker_parenthesis] = ACTIONS(544), - [sym__list_marker_dot] = ACTIONS(544), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(544), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(544), - [sym__list_marker_star_dont_interrupt] = ACTIONS(544), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(544), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(544), - [sym__fenced_code_block_start_backtick] = ACTIONS(544), - [sym__fenced_code_block_start_tilde] = ACTIONS(544), - [sym__blank_line_start] = ACTIONS(544), - [sym__code_span_start] = ACTIONS(544), - [sym__emphasis_open_star] = ACTIONS(544), - [sym__emphasis_open_underscore] = ACTIONS(544), + [aux_sym__soft_line_break_repeat1] = STATE(2115), + [aux_sym__paragraph_end_newline_repeat1] = STATE(111), + [aux_sym__html_block_1_token1] = ACTIONS(539), + [anon_sym_BANG] = ACTIONS(539), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(539), + [anon_sym_PERCENT] = ACTIONS(539), + [anon_sym_AMP] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_LPAREN] = ACTIONS(539), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_PLUS] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(539), + [anon_sym_DASH] = ACTIONS(539), + [anon_sym_DOT] = ACTIONS(539), + [anon_sym_SLASH] = ACTIONS(539), + [anon_sym_COLON] = ACTIONS(539), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_EQ] = ACTIONS(539), + [anon_sym_GT] = ACTIONS(539), + [anon_sym_QMARK] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LBRACK] = ACTIONS(539), + [anon_sym_BSLASH] = ACTIONS(541), + [anon_sym_RBRACK] = ACTIONS(539), + [anon_sym_CARET] = ACTIONS(539), + [anon_sym__] = ACTIONS(539), + [anon_sym_BQUOTE] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_TILDE] = ACTIONS(539), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(541), + [anon_sym_LT_QMARK] = ACTIONS(541), + [aux_sym__html_block_4_token1] = ACTIONS(541), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(539), + [aux_sym__html_block_6_token1] = ACTIONS(541), + [aux_sym__html_block_6_token2] = ACTIONS(539), + [sym__open_tag_html_block] = ACTIONS(539), + [sym__open_tag_html_block_newline] = ACTIONS(539), + [sym__closing_tag_html_block] = ACTIONS(539), + [sym__closing_tag_html_block_newline] = ACTIONS(539), + [sym_backslash_escape] = ACTIONS(539), + [sym_uri_autolink] = ACTIONS(539), + [sym_email_autolink] = ACTIONS(539), + [sym_entity_reference] = ACTIONS(539), + [sym_numeric_character_reference] = ACTIONS(539), + [sym__whitespace_ge_2] = ACTIONS(539), + [aux_sym__whitespace_token1] = ACTIONS(541), + [sym__word_no_digit] = ACTIONS(539), + [sym__digits] = ACTIONS(539), + [aux_sym__newline_token1] = ACTIONS(539), + [sym__split_token] = ACTIONS(547), + [sym__soft_line_break_marker] = ACTIONS(545), + [sym__block_close] = ACTIONS(539), + [sym__block_quote_start] = ACTIONS(539), + [sym__indented_chunk_start] = ACTIONS(539), + [sym_atx_h1_marker] = ACTIONS(539), + [sym_atx_h2_marker] = ACTIONS(539), + [sym_atx_h3_marker] = ACTIONS(539), + [sym_atx_h4_marker] = ACTIONS(539), + [sym_atx_h5_marker] = ACTIONS(539), + [sym_atx_h6_marker] = ACTIONS(539), + [sym__setext_h1_underline] = ACTIONS(539), + [sym__setext_h2_underline] = ACTIONS(539), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(539), + [sym__thematic_break] = ACTIONS(539), + [sym__list_marker_minus] = ACTIONS(539), + [sym__list_marker_plus] = ACTIONS(539), + [sym__list_marker_star] = ACTIONS(539), + [sym__list_marker_parenthesis] = ACTIONS(539), + [sym__list_marker_dot] = ACTIONS(539), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(539), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(539), + [sym__list_marker_star_dont_interrupt] = ACTIONS(539), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(539), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(539), + [sym__fenced_code_block_start_backtick] = ACTIONS(539), + [sym__fenced_code_block_start_tilde] = ACTIONS(539), + [sym__blank_line_start] = ACTIONS(539), + [sym__code_span_start] = ACTIONS(539), + [sym__emphasis_open_star] = ACTIONS(539), + [sym__emphasis_open_underscore] = ACTIONS(539), }, [94] = { - [aux_sym__ignore_matching_tokens] = STATE(98), - [aux_sym__html_block_1_token1] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_BSLASH] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(386), - [anon_sym_LT_QMARK] = ACTIONS(386), - [aux_sym__html_block_4_token1] = ACTIONS(386), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(384), - [aux_sym__html_block_6_token1] = ACTIONS(386), - [aux_sym__html_block_6_token2] = ACTIONS(384), - [sym__open_tag_html_block] = ACTIONS(384), - [sym__open_tag_html_block_newline] = ACTIONS(384), - [sym__closing_tag_html_block] = ACTIONS(384), - [sym__closing_tag_html_block_newline] = ACTIONS(384), - [sym_backslash_escape] = ACTIONS(384), - [sym_uri_autolink] = ACTIONS(384), - [sym_email_autolink] = ACTIONS(384), - [sym_entity_reference] = ACTIONS(384), - [sym_numeric_character_reference] = ACTIONS(384), - [sym__whitespace_ge_2] = ACTIONS(384), - [aux_sym__whitespace_token1] = ACTIONS(386), - [sym__word_no_digit] = ACTIONS(384), - [sym__digits] = ACTIONS(384), - [aux_sym__newline_token1] = ACTIONS(384), - [sym__line_ending] = ACTIONS(554), - [sym__block_close] = ACTIONS(384), - [sym__block_continuation] = ACTIONS(556), - [sym__block_quote_start] = ACTIONS(384), - [sym__indented_chunk_start] = ACTIONS(384), - [sym_atx_h1_marker] = ACTIONS(384), - [sym_atx_h2_marker] = ACTIONS(384), - [sym_atx_h3_marker] = ACTIONS(384), - [sym_atx_h4_marker] = ACTIONS(384), - [sym_atx_h5_marker] = ACTIONS(384), - [sym_atx_h6_marker] = ACTIONS(384), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(384), - [sym__thematic_break] = ACTIONS(384), - [sym__list_marker_minus] = ACTIONS(384), - [sym__list_marker_plus] = ACTIONS(384), - [sym__list_marker_star] = ACTIONS(384), - [sym__list_marker_parenthesis] = ACTIONS(384), - [sym__list_marker_dot] = ACTIONS(384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(384), - [sym__fenced_code_block_start_backtick] = ACTIONS(384), - [sym__fenced_code_block_start_tilde] = ACTIONS(384), - [sym__blank_line_start] = ACTIONS(384), - [sym__code_span_start] = ACTIONS(384), - [sym__last_token_whitespace] = ACTIONS(556), - [sym__emphasis_open_star] = ACTIONS(384), - [sym__emphasis_open_underscore] = ACTIONS(384), - [sym__no_indented_chunk] = ACTIONS(384), + [aux_sym__ignore_matching_tokens] = STATE(110), + [aux_sym__html_block_1_token1] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_BSLASH] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym__] = ACTIONS(461), + [anon_sym_BQUOTE] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(463), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(463), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(461), + [aux_sym__html_block_6_token1] = ACTIONS(463), + [aux_sym__html_block_6_token2] = ACTIONS(461), + [sym__open_tag_html_block] = ACTIONS(461), + [sym__open_tag_html_block_newline] = ACTIONS(461), + [sym__closing_tag_html_block] = ACTIONS(461), + [sym__closing_tag_html_block_newline] = ACTIONS(461), + [sym_backslash_escape] = ACTIONS(461), + [sym_uri_autolink] = ACTIONS(461), + [sym_email_autolink] = ACTIONS(461), + [sym_entity_reference] = ACTIONS(461), + [sym_numeric_character_reference] = ACTIONS(461), + [sym__whitespace_ge_2] = ACTIONS(461), + [aux_sym__whitespace_token1] = ACTIONS(463), + [sym__word_no_digit] = ACTIONS(461), + [sym__digits] = ACTIONS(461), + [aux_sym__newline_token1] = ACTIONS(461), + [sym__line_ending] = ACTIONS(549), + [sym__block_close] = ACTIONS(461), + [sym__block_continuation] = ACTIONS(551), + [sym__block_quote_start] = ACTIONS(461), + [sym__indented_chunk_start] = ACTIONS(461), + [sym_atx_h1_marker] = ACTIONS(461), + [sym_atx_h2_marker] = ACTIONS(461), + [sym_atx_h3_marker] = ACTIONS(461), + [sym_atx_h4_marker] = ACTIONS(461), + [sym_atx_h5_marker] = ACTIONS(461), + [sym_atx_h6_marker] = ACTIONS(461), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(461), + [sym__thematic_break] = ACTIONS(461), + [sym__list_marker_minus] = ACTIONS(461), + [sym__list_marker_plus] = ACTIONS(461), + [sym__list_marker_star] = ACTIONS(461), + [sym__list_marker_parenthesis] = ACTIONS(461), + [sym__list_marker_dot] = ACTIONS(461), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_star_dont_interrupt] = ACTIONS(461), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(461), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(461), + [sym__fenced_code_block_start_backtick] = ACTIONS(461), + [sym__fenced_code_block_start_tilde] = ACTIONS(461), + [sym__blank_line_start] = ACTIONS(461), + [sym__code_span_start] = ACTIONS(461), + [sym__last_token_whitespace] = ACTIONS(551), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(461), + [sym__no_indented_chunk] = ACTIONS(461), }, [95] = { - [aux_sym__ignore_matching_tokens] = STATE(107), - [ts_builtin_sym_end] = ACTIONS(384), - [aux_sym__html_block_1_token1] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_BSLASH] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(386), - [anon_sym_LT_QMARK] = ACTIONS(386), - [aux_sym__html_block_4_token1] = ACTIONS(386), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(384), - [aux_sym__html_block_6_token1] = ACTIONS(386), - [aux_sym__html_block_6_token2] = ACTIONS(384), - [sym__open_tag_html_block] = ACTIONS(384), - [sym__open_tag_html_block_newline] = ACTIONS(384), - [sym__closing_tag_html_block] = ACTIONS(384), - [sym__closing_tag_html_block_newline] = ACTIONS(384), - [sym_backslash_escape] = ACTIONS(384), - [sym_uri_autolink] = ACTIONS(384), - [sym_email_autolink] = ACTIONS(384), - [sym_entity_reference] = ACTIONS(384), - [sym_numeric_character_reference] = ACTIONS(384), - [sym__whitespace_ge_2] = ACTIONS(384), - [aux_sym__whitespace_token1] = ACTIONS(386), - [sym__word_no_digit] = ACTIONS(384), - [sym__digits] = ACTIONS(384), - [aux_sym__newline_token1] = ACTIONS(384), - [sym__line_ending] = ACTIONS(558), - [sym__block_continuation] = ACTIONS(560), - [sym__block_quote_start] = ACTIONS(384), - [sym__indented_chunk_start] = ACTIONS(384), - [sym_atx_h1_marker] = ACTIONS(384), - [sym_atx_h2_marker] = ACTIONS(384), - [sym_atx_h3_marker] = ACTIONS(384), - [sym_atx_h4_marker] = ACTIONS(384), - [sym_atx_h5_marker] = ACTIONS(384), - [sym_atx_h6_marker] = ACTIONS(384), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(384), - [sym__thematic_break] = ACTIONS(384), - [sym__list_marker_minus] = ACTIONS(384), - [sym__list_marker_plus] = ACTIONS(384), - [sym__list_marker_star] = ACTIONS(384), - [sym__list_marker_parenthesis] = ACTIONS(384), - [sym__list_marker_dot] = ACTIONS(384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(384), - [sym__fenced_code_block_start_backtick] = ACTIONS(384), - [sym__fenced_code_block_start_tilde] = ACTIONS(384), - [sym__blank_line_start] = ACTIONS(384), - [sym__code_span_start] = ACTIONS(384), - [sym__last_token_whitespace] = ACTIONS(560), - [sym__emphasis_open_star] = ACTIONS(384), - [sym__emphasis_open_underscore] = ACTIONS(384), - [sym__no_indented_chunk] = ACTIONS(384), + [aux_sym__ignore_matching_tokens] = STATE(105), + [ts_builtin_sym_end] = ACTIONS(461), + [aux_sym__html_block_1_token1] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_BSLASH] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym__] = ACTIONS(461), + [anon_sym_BQUOTE] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(463), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(463), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(461), + [aux_sym__html_block_6_token1] = ACTIONS(463), + [aux_sym__html_block_6_token2] = ACTIONS(461), + [sym__open_tag_html_block] = ACTIONS(461), + [sym__open_tag_html_block_newline] = ACTIONS(461), + [sym__closing_tag_html_block] = ACTIONS(461), + [sym__closing_tag_html_block_newline] = ACTIONS(461), + [sym_backslash_escape] = ACTIONS(461), + [sym_uri_autolink] = ACTIONS(461), + [sym_email_autolink] = ACTIONS(461), + [sym_entity_reference] = ACTIONS(461), + [sym_numeric_character_reference] = ACTIONS(461), + [sym__whitespace_ge_2] = ACTIONS(461), + [aux_sym__whitespace_token1] = ACTIONS(463), + [sym__word_no_digit] = ACTIONS(461), + [sym__digits] = ACTIONS(461), + [aux_sym__newline_token1] = ACTIONS(461), + [sym__line_ending] = ACTIONS(553), + [sym__block_continuation] = ACTIONS(555), + [sym__block_quote_start] = ACTIONS(461), + [sym__indented_chunk_start] = ACTIONS(461), + [sym_atx_h1_marker] = ACTIONS(461), + [sym_atx_h2_marker] = ACTIONS(461), + [sym_atx_h3_marker] = ACTIONS(461), + [sym_atx_h4_marker] = ACTIONS(461), + [sym_atx_h5_marker] = ACTIONS(461), + [sym_atx_h6_marker] = ACTIONS(461), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(461), + [sym__thematic_break] = ACTIONS(461), + [sym__list_marker_minus] = ACTIONS(461), + [sym__list_marker_plus] = ACTIONS(461), + [sym__list_marker_star] = ACTIONS(461), + [sym__list_marker_parenthesis] = ACTIONS(461), + [sym__list_marker_dot] = ACTIONS(461), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_star_dont_interrupt] = ACTIONS(461), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(461), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(461), + [sym__fenced_code_block_start_backtick] = ACTIONS(461), + [sym__fenced_code_block_start_tilde] = ACTIONS(461), + [sym__blank_line_start] = ACTIONS(461), + [sym__code_span_start] = ACTIONS(461), + [sym__last_token_whitespace] = ACTIONS(555), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(461), + [sym__no_indented_chunk] = ACTIONS(461), }, [96] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(96), - [ts_builtin_sym_end] = ACTIONS(562), - [aux_sym__html_block_1_token1] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(562), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_DOLLAR] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RPAREN] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_COLON] = ACTIONS(562), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_AT] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_BSLASH] = ACTIONS(564), - [anon_sym_RBRACK] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym__] = ACTIONS(562), - [anon_sym_BQUOTE] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(564), - [anon_sym_LT_QMARK] = ACTIONS(564), - [aux_sym__html_block_4_token1] = ACTIONS(564), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(562), - [aux_sym__html_block_6_token1] = ACTIONS(564), - [aux_sym__html_block_6_token2] = ACTIONS(562), - [sym__open_tag_html_block] = ACTIONS(562), - [sym__open_tag_html_block_newline] = ACTIONS(562), - [sym__closing_tag_html_block] = ACTIONS(562), - [sym__closing_tag_html_block_newline] = ACTIONS(562), - [sym_backslash_escape] = ACTIONS(562), - [sym_uri_autolink] = ACTIONS(562), - [sym_email_autolink] = ACTIONS(562), - [sym_entity_reference] = ACTIONS(562), - [sym_numeric_character_reference] = ACTIONS(562), - [sym__whitespace_ge_2] = ACTIONS(562), - [aux_sym__whitespace_token1] = ACTIONS(564), - [sym__word_no_digit] = ACTIONS(562), - [sym__digits] = ACTIONS(562), - [aux_sym__newline_token1] = ACTIONS(562), - [sym__split_token] = ACTIONS(566), - [sym__block_quote_start] = ACTIONS(562), - [sym__indented_chunk_start] = ACTIONS(562), - [sym_atx_h1_marker] = ACTIONS(562), - [sym_atx_h2_marker] = ACTIONS(562), - [sym_atx_h3_marker] = ACTIONS(562), - [sym_atx_h4_marker] = ACTIONS(562), - [sym_atx_h5_marker] = ACTIONS(562), - [sym_atx_h6_marker] = ACTIONS(562), - [sym__setext_h1_underline] = ACTIONS(562), - [sym__setext_h2_underline] = ACTIONS(562), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(562), - [sym__thematic_break] = ACTIONS(562), - [sym__list_marker_minus] = ACTIONS(562), - [sym__list_marker_plus] = ACTIONS(562), - [sym__list_marker_star] = ACTIONS(562), - [sym__list_marker_parenthesis] = ACTIONS(562), - [sym__list_marker_dot] = ACTIONS(562), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(562), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(562), - [sym__list_marker_star_dont_interrupt] = ACTIONS(562), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(562), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(562), - [sym__fenced_code_block_start_backtick] = ACTIONS(562), - [sym__fenced_code_block_start_tilde] = ACTIONS(562), - [sym__blank_line_start] = ACTIONS(562), - [sym__code_span_start] = ACTIONS(562), - [sym__emphasis_open_star] = ACTIONS(562), - [sym__emphasis_open_underscore] = ACTIONS(562), + [aux_sym__ignore_matching_tokens] = STATE(96), + [aux_sym__html_block_1_token1] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_BSLASH] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(475), + [anon_sym_LT_QMARK] = ACTIONS(475), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(473), + [aux_sym__html_block_6_token1] = ACTIONS(475), + [aux_sym__html_block_6_token2] = ACTIONS(473), + [sym__open_tag_html_block] = ACTIONS(473), + [sym__open_tag_html_block_newline] = ACTIONS(473), + [sym__closing_tag_html_block] = ACTIONS(473), + [sym__closing_tag_html_block_newline] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [sym_uri_autolink] = ACTIONS(473), + [sym_email_autolink] = ACTIONS(473), + [sym_entity_reference] = ACTIONS(473), + [sym_numeric_character_reference] = ACTIONS(473), + [sym__whitespace_ge_2] = ACTIONS(473), + [aux_sym__whitespace_token1] = ACTIONS(475), + [sym__word_no_digit] = ACTIONS(473), + [sym__digits] = ACTIONS(473), + [aux_sym__newline_token1] = ACTIONS(473), + [sym__block_close] = ACTIONS(473), + [sym__block_continuation] = ACTIONS(557), + [sym__block_quote_start] = ACTIONS(473), + [sym__indented_chunk_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(473), + [sym_atx_h2_marker] = ACTIONS(473), + [sym_atx_h3_marker] = ACTIONS(473), + [sym_atx_h4_marker] = ACTIONS(473), + [sym_atx_h5_marker] = ACTIONS(473), + [sym_atx_h6_marker] = ACTIONS(473), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(473), + [sym__thematic_break] = ACTIONS(473), + [sym__list_marker_minus] = ACTIONS(473), + [sym__list_marker_plus] = ACTIONS(473), + [sym__list_marker_star] = ACTIONS(473), + [sym__list_marker_parenthesis] = ACTIONS(473), + [sym__list_marker_dot] = ACTIONS(473), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_star_dont_interrupt] = ACTIONS(473), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(473), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(473), + [sym__fenced_code_block_start_backtick] = ACTIONS(473), + [sym__fenced_code_block_start_tilde] = ACTIONS(473), + [sym__blank_line_start] = ACTIONS(473), + [sym__code_span_start] = ACTIONS(473), + [sym__last_token_whitespace] = ACTIONS(557), + [sym__emphasis_open_star] = ACTIONS(473), + [sym__emphasis_open_underscore] = ACTIONS(473), + [sym__no_indented_chunk] = ACTIONS(473), }, [97] = { - [aux_sym__ignore_matching_tokens] = STATE(101), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__block_close] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(569), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(569), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), - [sym__no_indented_chunk] = ACTIONS(512), + [aux_sym__paragraph_end_newline_repeat1] = STATE(98), + [ts_builtin_sym_end] = ACTIONS(560), + [aux_sym__html_block_1_token1] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(560), + [anon_sym_RPAREN] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_COLON] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_BSLASH] = ACTIONS(562), + [anon_sym_RBRACK] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym__] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(562), + [anon_sym_LT_QMARK] = ACTIONS(562), + [aux_sym__html_block_4_token1] = ACTIONS(562), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(560), + [aux_sym__html_block_6_token1] = ACTIONS(562), + [aux_sym__html_block_6_token2] = ACTIONS(560), + [sym__open_tag_html_block] = ACTIONS(560), + [sym__open_tag_html_block_newline] = ACTIONS(560), + [sym__closing_tag_html_block] = ACTIONS(560), + [sym__closing_tag_html_block_newline] = ACTIONS(560), + [sym_backslash_escape] = ACTIONS(560), + [sym_uri_autolink] = ACTIONS(560), + [sym_email_autolink] = ACTIONS(560), + [sym_entity_reference] = ACTIONS(560), + [sym_numeric_character_reference] = ACTIONS(560), + [sym__whitespace_ge_2] = ACTIONS(560), + [aux_sym__whitespace_token1] = ACTIONS(562), + [sym__word_no_digit] = ACTIONS(560), + [sym__digits] = ACTIONS(560), + [aux_sym__newline_token1] = ACTIONS(560), + [sym__split_token] = ACTIONS(564), + [sym__block_quote_start] = ACTIONS(560), + [sym__indented_chunk_start] = ACTIONS(560), + [sym_atx_h1_marker] = ACTIONS(560), + [sym_atx_h2_marker] = ACTIONS(560), + [sym_atx_h3_marker] = ACTIONS(560), + [sym_atx_h4_marker] = ACTIONS(560), + [sym_atx_h5_marker] = ACTIONS(560), + [sym_atx_h6_marker] = ACTIONS(560), + [sym__setext_h1_underline] = ACTIONS(560), + [sym__setext_h2_underline] = ACTIONS(560), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(560), + [sym__thematic_break] = ACTIONS(560), + [sym__list_marker_minus] = ACTIONS(560), + [sym__list_marker_plus] = ACTIONS(560), + [sym__list_marker_star] = ACTIONS(560), + [sym__list_marker_parenthesis] = ACTIONS(560), + [sym__list_marker_dot] = ACTIONS(560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(560), + [sym__fenced_code_block_start_backtick] = ACTIONS(560), + [sym__fenced_code_block_start_tilde] = ACTIONS(560), + [sym__blank_line_start] = ACTIONS(560), + [sym__code_span_start] = ACTIONS(560), + [sym__emphasis_open_star] = ACTIONS(560), + [sym__emphasis_open_underscore] = ACTIONS(560), }, [98] = { - [aux_sym__ignore_matching_tokens] = STATE(109), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__block_close] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(571), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(571), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), - [sym__no_indented_chunk] = ACTIONS(512), + [aux_sym__paragraph_end_newline_repeat1] = STATE(98), + [ts_builtin_sym_end] = ACTIONS(566), + [aux_sym__html_block_1_token1] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_COLON] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_BSLASH] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym__] = ACTIONS(566), + [anon_sym_BQUOTE] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(568), + [anon_sym_LT_QMARK] = ACTIONS(568), + [aux_sym__html_block_4_token1] = ACTIONS(568), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(566), + [aux_sym__html_block_6_token1] = ACTIONS(568), + [aux_sym__html_block_6_token2] = ACTIONS(566), + [sym__open_tag_html_block] = ACTIONS(566), + [sym__open_tag_html_block_newline] = ACTIONS(566), + [sym__closing_tag_html_block] = ACTIONS(566), + [sym__closing_tag_html_block_newline] = ACTIONS(566), + [sym_backslash_escape] = ACTIONS(566), + [sym_uri_autolink] = ACTIONS(566), + [sym_email_autolink] = ACTIONS(566), + [sym_entity_reference] = ACTIONS(566), + [sym_numeric_character_reference] = ACTIONS(566), + [sym__whitespace_ge_2] = ACTIONS(566), + [aux_sym__whitespace_token1] = ACTIONS(568), + [sym__word_no_digit] = ACTIONS(566), + [sym__digits] = ACTIONS(566), + [aux_sym__newline_token1] = ACTIONS(566), + [sym__split_token] = ACTIONS(570), + [sym__block_quote_start] = ACTIONS(566), + [sym__indented_chunk_start] = ACTIONS(566), + [sym_atx_h1_marker] = ACTIONS(566), + [sym_atx_h2_marker] = ACTIONS(566), + [sym_atx_h3_marker] = ACTIONS(566), + [sym_atx_h4_marker] = ACTIONS(566), + [sym_atx_h5_marker] = ACTIONS(566), + [sym_atx_h6_marker] = ACTIONS(566), + [sym__setext_h1_underline] = ACTIONS(566), + [sym__setext_h2_underline] = ACTIONS(566), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(566), + [sym__thematic_break] = ACTIONS(566), + [sym__list_marker_minus] = ACTIONS(566), + [sym__list_marker_plus] = ACTIONS(566), + [sym__list_marker_star] = ACTIONS(566), + [sym__list_marker_parenthesis] = ACTIONS(566), + [sym__list_marker_dot] = ACTIONS(566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(566), + [sym__fenced_code_block_start_backtick] = ACTIONS(566), + [sym__fenced_code_block_start_tilde] = ACTIONS(566), + [sym__blank_line_start] = ACTIONS(566), + [sym__code_span_start] = ACTIONS(566), + [sym__emphasis_open_star] = ACTIONS(566), + [sym__emphasis_open_underscore] = ACTIONS(566), }, [99] = { - [aux_sym__ignore_matching_tokens] = STATE(306), - [aux_sym__html_block_1_token1] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_BSLASH] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(386), - [anon_sym_LT_QMARK] = ACTIONS(386), - [aux_sym__html_block_4_token1] = ACTIONS(386), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(384), - [aux_sym__html_block_6_token1] = ACTIONS(386), - [aux_sym__html_block_6_token2] = ACTIONS(384), - [sym__open_tag_html_block] = ACTIONS(384), - [sym__open_tag_html_block_newline] = ACTIONS(384), - [sym__closing_tag_html_block] = ACTIONS(384), - [sym__closing_tag_html_block_newline] = ACTIONS(384), - [sym_backslash_escape] = ACTIONS(384), - [sym_uri_autolink] = ACTIONS(384), - [sym_email_autolink] = ACTIONS(384), - [sym_entity_reference] = ACTIONS(384), - [sym_numeric_character_reference] = ACTIONS(384), - [sym__whitespace_ge_2] = ACTIONS(384), - [aux_sym__whitespace_token1] = ACTIONS(386), - [sym__word_no_digit] = ACTIONS(384), - [sym__digits] = ACTIONS(384), - [aux_sym__newline_token1] = ACTIONS(384), - [sym__line_ending] = ACTIONS(573), - [sym__block_close] = ACTIONS(384), - [sym__block_continuation] = ACTIONS(575), - [sym__block_quote_start] = ACTIONS(384), - [sym__indented_chunk_start] = ACTIONS(384), - [sym_atx_h1_marker] = ACTIONS(384), - [sym_atx_h2_marker] = ACTIONS(384), - [sym_atx_h3_marker] = ACTIONS(384), - [sym_atx_h4_marker] = ACTIONS(384), - [sym_atx_h5_marker] = ACTIONS(384), - [sym_atx_h6_marker] = ACTIONS(384), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(384), - [sym__thematic_break] = ACTIONS(384), - [sym__list_marker_minus] = ACTIONS(384), - [sym__list_marker_plus] = ACTIONS(384), - [sym__list_marker_star] = ACTIONS(384), - [sym__list_marker_parenthesis] = ACTIONS(384), - [sym__list_marker_dot] = ACTIONS(384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(384), - [sym__fenced_code_block_start_backtick] = ACTIONS(384), - [sym__fenced_code_block_start_tilde] = ACTIONS(384), - [sym__blank_line_start] = ACTIONS(384), - [sym__code_span_start] = ACTIONS(384), - [sym__last_token_whitespace] = ACTIONS(575), - [sym__emphasis_open_star] = ACTIONS(384), - [sym__emphasis_open_underscore] = ACTIONS(384), + [sym_setext_h1_underline] = STATE(2218), + [sym_setext_h2_underline] = STATE(2218), + [ts_builtin_sym_end] = ACTIONS(573), + [aux_sym__html_block_1_token1] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_DQUOTE] = ACTIONS(573), + [anon_sym_POUND] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(573), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_BSLASH] = ACTIONS(575), + [anon_sym_RBRACK] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym__] = ACTIONS(573), + [anon_sym_BQUOTE] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(575), + [anon_sym_LT_QMARK] = ACTIONS(575), + [aux_sym__html_block_4_token1] = ACTIONS(575), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(573), + [aux_sym__html_block_6_token1] = ACTIONS(575), + [aux_sym__html_block_6_token2] = ACTIONS(573), + [sym__open_tag_html_block] = ACTIONS(573), + [sym__open_tag_html_block_newline] = ACTIONS(573), + [sym__closing_tag_html_block] = ACTIONS(573), + [sym__closing_tag_html_block_newline] = ACTIONS(573), + [sym_backslash_escape] = ACTIONS(573), + [sym_uri_autolink] = ACTIONS(573), + [sym_email_autolink] = ACTIONS(573), + [sym_entity_reference] = ACTIONS(573), + [sym_numeric_character_reference] = ACTIONS(573), + [sym__whitespace_ge_2] = ACTIONS(573), + [aux_sym__whitespace_token1] = ACTIONS(575), + [sym__word_no_digit] = ACTIONS(573), + [sym__digits] = ACTIONS(573), + [aux_sym__newline_token1] = ACTIONS(573), + [sym__block_quote_start] = ACTIONS(573), + [sym__indented_chunk_start] = ACTIONS(573), + [sym_atx_h1_marker] = ACTIONS(573), + [sym_atx_h2_marker] = ACTIONS(573), + [sym_atx_h3_marker] = ACTIONS(573), + [sym_atx_h4_marker] = ACTIONS(573), + [sym_atx_h5_marker] = ACTIONS(573), + [sym_atx_h6_marker] = ACTIONS(573), + [sym__setext_h1_underline] = ACTIONS(577), + [sym__setext_h2_underline] = ACTIONS(579), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(579), + [sym__thematic_break] = ACTIONS(573), + [sym__list_marker_minus] = ACTIONS(573), + [sym__list_marker_plus] = ACTIONS(573), + [sym__list_marker_star] = ACTIONS(573), + [sym__list_marker_parenthesis] = ACTIONS(573), + [sym__list_marker_dot] = ACTIONS(573), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(573), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(573), + [sym__list_marker_star_dont_interrupt] = ACTIONS(573), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(573), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(573), + [sym__fenced_code_block_start_backtick] = ACTIONS(573), + [sym__fenced_code_block_start_tilde] = ACTIONS(573), + [sym__blank_line_start] = ACTIONS(573), + [sym__code_span_start] = ACTIONS(573), + [sym__emphasis_open_star] = ACTIONS(573), + [sym__emphasis_open_underscore] = ACTIONS(573), }, [100] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(100), - [aux_sym__html_block_1_token1] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(562), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_DOLLAR] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RPAREN] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_COLON] = ACTIONS(562), - [anon_sym_SEMI] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(562), - [anon_sym_AT] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_BSLASH] = ACTIONS(564), - [anon_sym_RBRACK] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym__] = ACTIONS(562), - [anon_sym_BQUOTE] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(564), - [anon_sym_LT_QMARK] = ACTIONS(564), - [aux_sym__html_block_4_token1] = ACTIONS(564), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(562), - [aux_sym__html_block_6_token1] = ACTIONS(564), - [aux_sym__html_block_6_token2] = ACTIONS(562), - [sym__open_tag_html_block] = ACTIONS(562), - [sym__open_tag_html_block_newline] = ACTIONS(562), - [sym__closing_tag_html_block] = ACTIONS(562), - [sym__closing_tag_html_block_newline] = ACTIONS(562), - [sym_backslash_escape] = ACTIONS(562), - [sym_uri_autolink] = ACTIONS(562), - [sym_email_autolink] = ACTIONS(562), - [sym_entity_reference] = ACTIONS(562), - [sym_numeric_character_reference] = ACTIONS(562), - [sym__whitespace_ge_2] = ACTIONS(562), - [aux_sym__whitespace_token1] = ACTIONS(564), - [sym__word_no_digit] = ACTIONS(562), - [sym__digits] = ACTIONS(562), - [aux_sym__newline_token1] = ACTIONS(562), - [sym__split_token] = ACTIONS(577), - [sym__block_close] = ACTIONS(562), - [sym__block_quote_start] = ACTIONS(562), - [sym__indented_chunk_start] = ACTIONS(562), - [sym_atx_h1_marker] = ACTIONS(562), - [sym_atx_h2_marker] = ACTIONS(562), - [sym_atx_h3_marker] = ACTIONS(562), - [sym_atx_h4_marker] = ACTIONS(562), - [sym_atx_h5_marker] = ACTIONS(562), - [sym_atx_h6_marker] = ACTIONS(562), - [sym__setext_h1_underline] = ACTIONS(562), - [sym__setext_h2_underline] = ACTIONS(562), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(562), - [sym__thematic_break] = ACTIONS(562), - [sym__list_marker_minus] = ACTIONS(562), - [sym__list_marker_plus] = ACTIONS(562), - [sym__list_marker_star] = ACTIONS(562), - [sym__list_marker_parenthesis] = ACTIONS(562), - [sym__list_marker_dot] = ACTIONS(562), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(562), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(562), - [sym__list_marker_star_dont_interrupt] = ACTIONS(562), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(562), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(562), - [sym__fenced_code_block_start_backtick] = ACTIONS(562), - [sym__fenced_code_block_start_tilde] = ACTIONS(562), - [sym__blank_line_start] = ACTIONS(562), - [sym__code_span_start] = ACTIONS(562), - [sym__emphasis_open_star] = ACTIONS(562), - [sym__emphasis_open_underscore] = ACTIONS(562), + [ts_builtin_sym_end] = ACTIONS(581), + [aux_sym__html_block_1_token1] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_BSLASH] = ACTIONS(583), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym__] = ACTIONS(581), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(583), + [anon_sym_LT_QMARK] = ACTIONS(583), + [aux_sym__html_block_4_token1] = ACTIONS(583), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(581), + [aux_sym__html_block_6_token1] = ACTIONS(583), + [aux_sym__html_block_6_token2] = ACTIONS(581), + [sym__open_tag_html_block] = ACTIONS(581), + [sym__open_tag_html_block_newline] = ACTIONS(581), + [sym__closing_tag_html_block] = ACTIONS(581), + [sym__closing_tag_html_block_newline] = ACTIONS(581), + [sym_backslash_escape] = ACTIONS(581), + [sym_uri_autolink] = ACTIONS(581), + [sym_email_autolink] = ACTIONS(581), + [sym_entity_reference] = ACTIONS(581), + [sym_numeric_character_reference] = ACTIONS(581), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(581), + [sym__digits] = ACTIONS(581), + [aux_sym__newline_token1] = ACTIONS(581), + [sym__split_token] = ACTIONS(585), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(581), + [sym__indented_chunk_start] = ACTIONS(581), + [sym_atx_h1_marker] = ACTIONS(581), + [sym_atx_h2_marker] = ACTIONS(581), + [sym_atx_h3_marker] = ACTIONS(581), + [sym_atx_h4_marker] = ACTIONS(581), + [sym_atx_h5_marker] = ACTIONS(581), + [sym_atx_h6_marker] = ACTIONS(581), + [sym__setext_h1_underline] = ACTIONS(581), + [sym__setext_h2_underline] = ACTIONS(581), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(581), + [sym__thematic_break] = ACTIONS(581), + [sym__list_marker_minus] = ACTIONS(581), + [sym__list_marker_plus] = ACTIONS(581), + [sym__list_marker_star] = ACTIONS(581), + [sym__list_marker_parenthesis] = ACTIONS(581), + [sym__list_marker_dot] = ACTIONS(581), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(581), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(581), + [sym__list_marker_star_dont_interrupt] = ACTIONS(581), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(581), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(581), + [sym__fenced_code_block_start_backtick] = ACTIONS(581), + [sym__fenced_code_block_start_tilde] = ACTIONS(581), + [sym__blank_line_start] = ACTIONS(581), + [sym__code_span_start] = ACTIONS(581), + [sym__emphasis_open_star] = ACTIONS(581), + [sym__emphasis_open_underscore] = ACTIONS(581), }, [101] = { - [aux_sym__ignore_matching_tokens] = STATE(109), - [aux_sym__html_block_1_token1] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(527), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), - [anon_sym_BQUOTE] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_QMARK] = ACTIONS(529), - [aux_sym__html_block_4_token1] = ACTIONS(529), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(527), - [aux_sym__html_block_6_token1] = ACTIONS(529), - [aux_sym__html_block_6_token2] = ACTIONS(527), - [sym__open_tag_html_block] = ACTIONS(527), - [sym__open_tag_html_block_newline] = ACTIONS(527), - [sym__closing_tag_html_block] = ACTIONS(527), - [sym__closing_tag_html_block_newline] = ACTIONS(527), - [sym_backslash_escape] = ACTIONS(527), - [sym_uri_autolink] = ACTIONS(527), - [sym_email_autolink] = ACTIONS(527), - [sym_entity_reference] = ACTIONS(527), - [sym_numeric_character_reference] = ACTIONS(527), - [sym__whitespace_ge_2] = ACTIONS(527), - [aux_sym__whitespace_token1] = ACTIONS(529), - [sym__word_no_digit] = ACTIONS(527), - [sym__digits] = ACTIONS(527), - [aux_sym__newline_token1] = ACTIONS(527), - [sym__block_close] = ACTIONS(527), - [sym__block_continuation] = ACTIONS(571), - [sym__block_quote_start] = ACTIONS(527), - [sym__indented_chunk_start] = ACTIONS(527), - [sym_atx_h1_marker] = ACTIONS(527), - [sym_atx_h2_marker] = ACTIONS(527), - [sym_atx_h3_marker] = ACTIONS(527), - [sym_atx_h4_marker] = ACTIONS(527), - [sym_atx_h5_marker] = ACTIONS(527), - [sym_atx_h6_marker] = ACTIONS(527), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(527), - [sym__thematic_break] = ACTIONS(527), - [sym__list_marker_minus] = ACTIONS(527), - [sym__list_marker_plus] = ACTIONS(527), - [sym__list_marker_star] = ACTIONS(527), - [sym__list_marker_parenthesis] = ACTIONS(527), - [sym__list_marker_dot] = ACTIONS(527), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_star_dont_interrupt] = ACTIONS(527), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(527), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(527), - [sym__fenced_code_block_start_backtick] = ACTIONS(527), - [sym__fenced_code_block_start_tilde] = ACTIONS(527), - [sym__blank_line_start] = ACTIONS(527), - [sym__code_span_start] = ACTIONS(527), - [sym__last_token_whitespace] = ACTIONS(571), - [sym__emphasis_open_star] = ACTIONS(527), - [sym__emphasis_open_underscore] = ACTIONS(527), - [sym__no_indented_chunk] = ACTIONS(527), + [aux_sym__ignore_matching_tokens] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(492), + [aux_sym__html_block_1_token1] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym__] = ACTIONS(492), + [anon_sym_BQUOTE] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(494), + [anon_sym_LT_QMARK] = ACTIONS(494), + [aux_sym__html_block_4_token1] = ACTIONS(494), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(492), + [aux_sym__html_block_6_token1] = ACTIONS(494), + [aux_sym__html_block_6_token2] = ACTIONS(492), + [sym__open_tag_html_block] = ACTIONS(492), + [sym__open_tag_html_block_newline] = ACTIONS(492), + [sym__closing_tag_html_block] = ACTIONS(492), + [sym__closing_tag_html_block_newline] = ACTIONS(492), + [sym_backslash_escape] = ACTIONS(492), + [sym_uri_autolink] = ACTIONS(492), + [sym_email_autolink] = ACTIONS(492), + [sym_entity_reference] = ACTIONS(492), + [sym_numeric_character_reference] = ACTIONS(492), + [sym__whitespace_ge_2] = ACTIONS(492), + [aux_sym__whitespace_token1] = ACTIONS(494), + [sym__word_no_digit] = ACTIONS(492), + [sym__digits] = ACTIONS(492), + [aux_sym__newline_token1] = ACTIONS(492), + [sym__block_continuation] = ACTIONS(588), + [sym__block_quote_start] = ACTIONS(492), + [sym__indented_chunk_start] = ACTIONS(492), + [sym_atx_h1_marker] = ACTIONS(492), + [sym_atx_h2_marker] = ACTIONS(492), + [sym_atx_h3_marker] = ACTIONS(492), + [sym_atx_h4_marker] = ACTIONS(492), + [sym_atx_h5_marker] = ACTIONS(492), + [sym_atx_h6_marker] = ACTIONS(492), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(492), + [sym__thematic_break] = ACTIONS(492), + [sym__list_marker_minus] = ACTIONS(492), + [sym__list_marker_plus] = ACTIONS(492), + [sym__list_marker_star] = ACTIONS(492), + [sym__list_marker_parenthesis] = ACTIONS(492), + [sym__list_marker_dot] = ACTIONS(492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(492), + [sym__fenced_code_block_start_backtick] = ACTIONS(492), + [sym__fenced_code_block_start_tilde] = ACTIONS(492), + [sym__blank_line_start] = ACTIONS(492), + [sym__code_span_start] = ACTIONS(492), + [sym__last_token_whitespace] = ACTIONS(588), + [sym__emphasis_open_star] = ACTIONS(492), + [sym__emphasis_open_underscore] = ACTIONS(492), + [sym__no_indented_chunk] = ACTIONS(492), }, [102] = { - [aux_sym__ignore_matching_tokens] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(384), - [aux_sym__html_block_1_token1] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(384), - [anon_sym_POUND] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_LPAREN] = ACTIONS(384), - [anon_sym_RPAREN] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_COMMA] = ACTIONS(384), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_COLON] = ACTIONS(384), - [anon_sym_SEMI] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_QMARK] = ACTIONS(384), - [anon_sym_AT] = ACTIONS(384), - [anon_sym_LBRACK] = ACTIONS(384), - [anon_sym_BSLASH] = ACTIONS(386), - [anon_sym_RBRACK] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), - [anon_sym_BQUOTE] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(384), - [anon_sym_RBRACE] = ACTIONS(384), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(386), - [anon_sym_LT_QMARK] = ACTIONS(386), - [aux_sym__html_block_4_token1] = ACTIONS(386), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(384), - [aux_sym__html_block_6_token1] = ACTIONS(386), - [aux_sym__html_block_6_token2] = ACTIONS(384), - [sym__open_tag_html_block] = ACTIONS(384), - [sym__open_tag_html_block_newline] = ACTIONS(384), - [sym__closing_tag_html_block] = ACTIONS(384), - [sym__closing_tag_html_block_newline] = ACTIONS(384), - [sym_backslash_escape] = ACTIONS(384), - [sym_uri_autolink] = ACTIONS(384), - [sym_email_autolink] = ACTIONS(384), - [sym_entity_reference] = ACTIONS(384), - [sym_numeric_character_reference] = ACTIONS(384), - [sym__whitespace_ge_2] = ACTIONS(384), - [aux_sym__whitespace_token1] = ACTIONS(386), - [sym__word_no_digit] = ACTIONS(384), - [sym__digits] = ACTIONS(384), - [aux_sym__newline_token1] = ACTIONS(384), - [sym__line_ending] = ACTIONS(580), - [sym__block_continuation] = ACTIONS(582), - [sym__block_quote_start] = ACTIONS(384), - [sym__indented_chunk_start] = ACTIONS(384), - [sym_atx_h1_marker] = ACTIONS(384), - [sym_atx_h2_marker] = ACTIONS(384), - [sym_atx_h3_marker] = ACTIONS(384), - [sym_atx_h4_marker] = ACTIONS(384), - [sym_atx_h5_marker] = ACTIONS(384), - [sym_atx_h6_marker] = ACTIONS(384), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(384), - [sym__thematic_break] = ACTIONS(384), - [sym__list_marker_minus] = ACTIONS(384), - [sym__list_marker_plus] = ACTIONS(384), - [sym__list_marker_star] = ACTIONS(384), - [sym__list_marker_parenthesis] = ACTIONS(384), - [sym__list_marker_dot] = ACTIONS(384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(384), - [sym__fenced_code_block_start_backtick] = ACTIONS(384), - [sym__fenced_code_block_start_tilde] = ACTIONS(384), - [sym__blank_line_start] = ACTIONS(384), - [sym__code_span_start] = ACTIONS(384), - [sym__last_token_whitespace] = ACTIONS(582), - [sym__emphasis_open_star] = ACTIONS(384), - [sym__emphasis_open_underscore] = ACTIONS(384), + [aux_sym__paragraph_end_newline_repeat1] = STATE(102), + [aux_sym__html_block_1_token1] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_RPAREN] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_COLON] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_BSLASH] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(566), + [anon_sym__] = ACTIONS(566), + [anon_sym_BQUOTE] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(568), + [anon_sym_LT_QMARK] = ACTIONS(568), + [aux_sym__html_block_4_token1] = ACTIONS(568), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(566), + [aux_sym__html_block_6_token1] = ACTIONS(568), + [aux_sym__html_block_6_token2] = ACTIONS(566), + [sym__open_tag_html_block] = ACTIONS(566), + [sym__open_tag_html_block_newline] = ACTIONS(566), + [sym__closing_tag_html_block] = ACTIONS(566), + [sym__closing_tag_html_block_newline] = ACTIONS(566), + [sym_backslash_escape] = ACTIONS(566), + [sym_uri_autolink] = ACTIONS(566), + [sym_email_autolink] = ACTIONS(566), + [sym_entity_reference] = ACTIONS(566), + [sym_numeric_character_reference] = ACTIONS(566), + [sym__whitespace_ge_2] = ACTIONS(566), + [aux_sym__whitespace_token1] = ACTIONS(568), + [sym__word_no_digit] = ACTIONS(566), + [sym__digits] = ACTIONS(566), + [aux_sym__newline_token1] = ACTIONS(566), + [sym__split_token] = ACTIONS(590), + [sym__block_close] = ACTIONS(566), + [sym__block_quote_start] = ACTIONS(566), + [sym__indented_chunk_start] = ACTIONS(566), + [sym_atx_h1_marker] = ACTIONS(566), + [sym_atx_h2_marker] = ACTIONS(566), + [sym_atx_h3_marker] = ACTIONS(566), + [sym_atx_h4_marker] = ACTIONS(566), + [sym_atx_h5_marker] = ACTIONS(566), + [sym_atx_h6_marker] = ACTIONS(566), + [sym__setext_h1_underline] = ACTIONS(566), + [sym__setext_h2_underline] = ACTIONS(566), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(566), + [sym__thematic_break] = ACTIONS(566), + [sym__list_marker_minus] = ACTIONS(566), + [sym__list_marker_plus] = ACTIONS(566), + [sym__list_marker_star] = ACTIONS(566), + [sym__list_marker_parenthesis] = ACTIONS(566), + [sym__list_marker_dot] = ACTIONS(566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(566), + [sym__fenced_code_block_start_backtick] = ACTIONS(566), + [sym__fenced_code_block_start_tilde] = ACTIONS(566), + [sym__blank_line_start] = ACTIONS(566), + [sym__code_span_start] = ACTIONS(566), + [sym__emphasis_open_star] = ACTIONS(566), + [sym__emphasis_open_underscore] = ACTIONS(566), }, [103] = { - [aux_sym__ignore_matching_tokens] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(520), - [aux_sym__html_block_1_token1] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(522), - [anon_sym_LT_QMARK] = ACTIONS(522), - [aux_sym__html_block_4_token1] = ACTIONS(522), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(520), - [aux_sym__html_block_6_token1] = ACTIONS(522), - [aux_sym__html_block_6_token2] = ACTIONS(520), - [sym__open_tag_html_block] = ACTIONS(520), - [sym__open_tag_html_block_newline] = ACTIONS(520), - [sym__closing_tag_html_block] = ACTIONS(520), - [sym__closing_tag_html_block_newline] = ACTIONS(520), - [sym_backslash_escape] = ACTIONS(520), - [sym_uri_autolink] = ACTIONS(520), - [sym_email_autolink] = ACTIONS(520), - [sym_entity_reference] = ACTIONS(520), - [sym_numeric_character_reference] = ACTIONS(520), - [sym__whitespace_ge_2] = ACTIONS(520), - [aux_sym__whitespace_token1] = ACTIONS(522), - [sym__word_no_digit] = ACTIONS(520), - [sym__digits] = ACTIONS(520), - [aux_sym__newline_token1] = ACTIONS(520), - [sym__block_continuation] = ACTIONS(584), - [sym__block_quote_start] = ACTIONS(520), - [sym__indented_chunk_start] = ACTIONS(520), - [sym_atx_h1_marker] = ACTIONS(520), - [sym_atx_h2_marker] = ACTIONS(520), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(520), - [sym_atx_h5_marker] = ACTIONS(520), - [sym_atx_h6_marker] = ACTIONS(520), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), - [sym__thematic_break] = ACTIONS(520), - [sym__list_marker_minus] = ACTIONS(520), - [sym__list_marker_plus] = ACTIONS(520), - [sym__list_marker_star] = ACTIONS(520), - [sym__list_marker_parenthesis] = ACTIONS(520), - [sym__list_marker_dot] = ACTIONS(520), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_star_dont_interrupt] = ACTIONS(520), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(520), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(520), - [sym__fenced_code_block_start_backtick] = ACTIONS(520), - [sym__fenced_code_block_start_tilde] = ACTIONS(520), - [sym__blank_line_start] = ACTIONS(520), - [sym__code_span_start] = ACTIONS(520), - [sym__last_token_whitespace] = ACTIONS(584), - [sym__emphasis_open_star] = ACTIONS(520), - [sym__emphasis_open_underscore] = ACTIONS(520), - [sym__no_indented_chunk] = ACTIONS(520), + [aux_sym__ignore_matching_tokens] = STATE(212), + [ts_builtin_sym_end] = ACTIONS(461), + [aux_sym__html_block_1_token1] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_BSLASH] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym__] = ACTIONS(461), + [anon_sym_BQUOTE] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(463), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(463), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(461), + [aux_sym__html_block_6_token1] = ACTIONS(463), + [aux_sym__html_block_6_token2] = ACTIONS(461), + [sym__open_tag_html_block] = ACTIONS(461), + [sym__open_tag_html_block_newline] = ACTIONS(461), + [sym__closing_tag_html_block] = ACTIONS(461), + [sym__closing_tag_html_block_newline] = ACTIONS(461), + [sym_backslash_escape] = ACTIONS(461), + [sym_uri_autolink] = ACTIONS(461), + [sym_email_autolink] = ACTIONS(461), + [sym_entity_reference] = ACTIONS(461), + [sym_numeric_character_reference] = ACTIONS(461), + [sym__whitespace_ge_2] = ACTIONS(461), + [aux_sym__whitespace_token1] = ACTIONS(463), + [sym__word_no_digit] = ACTIONS(461), + [sym__digits] = ACTIONS(461), + [aux_sym__newline_token1] = ACTIONS(461), + [sym__line_ending] = ACTIONS(593), + [sym__block_continuation] = ACTIONS(595), + [sym__block_quote_start] = ACTIONS(461), + [sym__indented_chunk_start] = ACTIONS(461), + [sym_atx_h1_marker] = ACTIONS(461), + [sym_atx_h2_marker] = ACTIONS(461), + [sym_atx_h3_marker] = ACTIONS(461), + [sym_atx_h4_marker] = ACTIONS(461), + [sym_atx_h5_marker] = ACTIONS(461), + [sym_atx_h6_marker] = ACTIONS(461), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(461), + [sym__thematic_break] = ACTIONS(461), + [sym__list_marker_minus] = ACTIONS(461), + [sym__list_marker_plus] = ACTIONS(461), + [sym__list_marker_star] = ACTIONS(461), + [sym__list_marker_parenthesis] = ACTIONS(461), + [sym__list_marker_dot] = ACTIONS(461), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_star_dont_interrupt] = ACTIONS(461), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(461), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(461), + [sym__fenced_code_block_start_backtick] = ACTIONS(461), + [sym__fenced_code_block_start_tilde] = ACTIONS(461), + [sym__blank_line_start] = ACTIONS(461), + [sym__code_span_start] = ACTIONS(461), + [sym__last_token_whitespace] = ACTIONS(595), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(461), }, [104] = { - [ts_builtin_sym_end] = ACTIONS(587), - [aux_sym__html_block_1_token1] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(587), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_SQUOTE] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(587), - [anon_sym_COLON] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_GT] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_BSLASH] = ACTIONS(589), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym__] = ACTIONS(587), - [anon_sym_BQUOTE] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RBRACE] = ACTIONS(587), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(589), - [anon_sym_LT_QMARK] = ACTIONS(589), - [aux_sym__html_block_4_token1] = ACTIONS(589), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(587), - [aux_sym__html_block_6_token1] = ACTIONS(589), - [aux_sym__html_block_6_token2] = ACTIONS(587), - [sym__open_tag_html_block] = ACTIONS(587), - [sym__open_tag_html_block_newline] = ACTIONS(587), - [sym__closing_tag_html_block] = ACTIONS(587), - [sym__closing_tag_html_block_newline] = ACTIONS(587), - [sym_backslash_escape] = ACTIONS(587), - [sym_uri_autolink] = ACTIONS(587), - [sym_email_autolink] = ACTIONS(587), - [sym_entity_reference] = ACTIONS(587), - [sym_numeric_character_reference] = ACTIONS(587), - [sym__whitespace_ge_2] = ACTIONS(587), - [aux_sym__whitespace_token1] = ACTIONS(589), - [sym__word_no_digit] = ACTIONS(587), - [sym__digits] = ACTIONS(587), - [aux_sym__newline_token1] = ACTIONS(587), - [sym__split_token] = ACTIONS(591), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(587), - [sym__indented_chunk_start] = ACTIONS(587), - [sym_atx_h1_marker] = ACTIONS(587), - [sym_atx_h2_marker] = ACTIONS(587), - [sym_atx_h3_marker] = ACTIONS(587), - [sym_atx_h4_marker] = ACTIONS(587), - [sym_atx_h5_marker] = ACTIONS(587), - [sym_atx_h6_marker] = ACTIONS(587), - [sym__setext_h1_underline] = ACTIONS(587), - [sym__setext_h2_underline] = ACTIONS(587), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(587), - [sym__thematic_break] = ACTIONS(587), - [sym__list_marker_minus] = ACTIONS(587), - [sym__list_marker_plus] = ACTIONS(587), - [sym__list_marker_star] = ACTIONS(587), - [sym__list_marker_parenthesis] = ACTIONS(587), - [sym__list_marker_dot] = ACTIONS(587), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(587), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(587), - [sym__list_marker_star_dont_interrupt] = ACTIONS(587), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(587), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(587), - [sym__fenced_code_block_start_backtick] = ACTIONS(587), - [sym__fenced_code_block_start_tilde] = ACTIONS(587), - [sym__blank_line_start] = ACTIONS(587), - [sym__code_span_start] = ACTIONS(587), - [sym__emphasis_open_star] = ACTIONS(587), - [sym__emphasis_open_underscore] = ACTIONS(587), + [aux_sym__ignore_matching_tokens] = STATE(101), + [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(597), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(597), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), + [sym__no_indented_chunk] = ACTIONS(482), }, [105] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(96), - [ts_builtin_sym_end] = ACTIONS(594), - [aux_sym__html_block_1_token1] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_DQUOTE] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_DOLLAR] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_COLON] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_BSLASH] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym__] = ACTIONS(594), - [anon_sym_BQUOTE] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(596), - [anon_sym_LT_QMARK] = ACTIONS(596), - [aux_sym__html_block_4_token1] = ACTIONS(596), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(594), - [aux_sym__html_block_6_token1] = ACTIONS(596), - [aux_sym__html_block_6_token2] = ACTIONS(594), - [sym__open_tag_html_block] = ACTIONS(594), - [sym__open_tag_html_block_newline] = ACTIONS(594), - [sym__closing_tag_html_block] = ACTIONS(594), - [sym__closing_tag_html_block_newline] = ACTIONS(594), - [sym_backslash_escape] = ACTIONS(594), - [sym_uri_autolink] = ACTIONS(594), - [sym_email_autolink] = ACTIONS(594), - [sym_entity_reference] = ACTIONS(594), - [sym_numeric_character_reference] = ACTIONS(594), - [sym__whitespace_ge_2] = ACTIONS(594), - [aux_sym__whitespace_token1] = ACTIONS(596), - [sym__word_no_digit] = ACTIONS(594), - [sym__digits] = ACTIONS(594), - [aux_sym__newline_token1] = ACTIONS(594), - [sym__split_token] = ACTIONS(598), - [sym__block_quote_start] = ACTIONS(594), - [sym__indented_chunk_start] = ACTIONS(594), - [sym_atx_h1_marker] = ACTIONS(594), - [sym_atx_h2_marker] = ACTIONS(594), - [sym_atx_h3_marker] = ACTIONS(594), - [sym_atx_h4_marker] = ACTIONS(594), - [sym_atx_h5_marker] = ACTIONS(594), - [sym_atx_h6_marker] = ACTIONS(594), - [sym__setext_h1_underline] = ACTIONS(594), - [sym__setext_h2_underline] = ACTIONS(594), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(594), - [sym__thematic_break] = ACTIONS(594), - [sym__list_marker_minus] = ACTIONS(594), - [sym__list_marker_plus] = ACTIONS(594), - [sym__list_marker_star] = ACTIONS(594), - [sym__list_marker_parenthesis] = ACTIONS(594), - [sym__list_marker_dot] = ACTIONS(594), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(594), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(594), - [sym__list_marker_star_dont_interrupt] = ACTIONS(594), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(594), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(594), - [sym__fenced_code_block_start_backtick] = ACTIONS(594), - [sym__fenced_code_block_start_tilde] = ACTIONS(594), - [sym__blank_line_start] = ACTIONS(594), - [sym__code_span_start] = ACTIONS(594), - [sym__emphasis_open_star] = ACTIONS(594), - [sym__emphasis_open_underscore] = ACTIONS(594), + [aux_sym__ignore_matching_tokens] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(588), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(588), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), + [sym__no_indented_chunk] = ACTIONS(482), }, [106] = { - [aux_sym__ignore_matching_tokens] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(527), - [aux_sym__html_block_1_token1] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(527), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), - [anon_sym_BQUOTE] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_QMARK] = ACTIONS(529), - [aux_sym__html_block_4_token1] = ACTIONS(529), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(527), - [aux_sym__html_block_6_token1] = ACTIONS(529), - [aux_sym__html_block_6_token2] = ACTIONS(527), - [sym__open_tag_html_block] = ACTIONS(527), - [sym__open_tag_html_block_newline] = ACTIONS(527), - [sym__closing_tag_html_block] = ACTIONS(527), - [sym__closing_tag_html_block_newline] = ACTIONS(527), - [sym_backslash_escape] = ACTIONS(527), - [sym_uri_autolink] = ACTIONS(527), - [sym_email_autolink] = ACTIONS(527), - [sym_entity_reference] = ACTIONS(527), - [sym_numeric_character_reference] = ACTIONS(527), - [sym__whitespace_ge_2] = ACTIONS(527), - [aux_sym__whitespace_token1] = ACTIONS(529), - [sym__word_no_digit] = ACTIONS(527), - [sym__digits] = ACTIONS(527), - [aux_sym__newline_token1] = ACTIONS(527), - [sym__block_continuation] = ACTIONS(600), - [sym__block_quote_start] = ACTIONS(527), - [sym__indented_chunk_start] = ACTIONS(527), - [sym_atx_h1_marker] = ACTIONS(527), - [sym_atx_h2_marker] = ACTIONS(527), - [sym_atx_h3_marker] = ACTIONS(527), - [sym_atx_h4_marker] = ACTIONS(527), - [sym_atx_h5_marker] = ACTIONS(527), - [sym_atx_h6_marker] = ACTIONS(527), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(527), - [sym__thematic_break] = ACTIONS(527), - [sym__list_marker_minus] = ACTIONS(527), - [sym__list_marker_plus] = ACTIONS(527), - [sym__list_marker_star] = ACTIONS(527), - [sym__list_marker_parenthesis] = ACTIONS(527), - [sym__list_marker_dot] = ACTIONS(527), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_star_dont_interrupt] = ACTIONS(527), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(527), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(527), - [sym__fenced_code_block_start_backtick] = ACTIONS(527), - [sym__fenced_code_block_start_tilde] = ACTIONS(527), - [sym__blank_line_start] = ACTIONS(527), - [sym__code_span_start] = ACTIONS(527), - [sym__last_token_whitespace] = ACTIONS(600), - [sym__emphasis_open_star] = ACTIONS(527), - [sym__emphasis_open_underscore] = ACTIONS(527), - [sym__no_indented_chunk] = ACTIONS(527), + [aux_sym__ignore_matching_tokens] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(473), + [aux_sym__html_block_1_token1] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_BSLASH] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(475), + [anon_sym_LT_QMARK] = ACTIONS(475), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(473), + [aux_sym__html_block_6_token1] = ACTIONS(475), + [aux_sym__html_block_6_token2] = ACTIONS(473), + [sym__open_tag_html_block] = ACTIONS(473), + [sym__open_tag_html_block_newline] = ACTIONS(473), + [sym__closing_tag_html_block] = ACTIONS(473), + [sym__closing_tag_html_block_newline] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [sym_uri_autolink] = ACTIONS(473), + [sym_email_autolink] = ACTIONS(473), + [sym_entity_reference] = ACTIONS(473), + [sym_numeric_character_reference] = ACTIONS(473), + [sym__whitespace_ge_2] = ACTIONS(473), + [aux_sym__whitespace_token1] = ACTIONS(475), + [sym__word_no_digit] = ACTIONS(473), + [sym__digits] = ACTIONS(473), + [aux_sym__newline_token1] = ACTIONS(473), + [sym__block_continuation] = ACTIONS(599), + [sym__block_quote_start] = ACTIONS(473), + [sym__indented_chunk_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(473), + [sym_atx_h2_marker] = ACTIONS(473), + [sym_atx_h3_marker] = ACTIONS(473), + [sym_atx_h4_marker] = ACTIONS(473), + [sym_atx_h5_marker] = ACTIONS(473), + [sym_atx_h6_marker] = ACTIONS(473), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(473), + [sym__thematic_break] = ACTIONS(473), + [sym__list_marker_minus] = ACTIONS(473), + [sym__list_marker_plus] = ACTIONS(473), + [sym__list_marker_star] = ACTIONS(473), + [sym__list_marker_parenthesis] = ACTIONS(473), + [sym__list_marker_dot] = ACTIONS(473), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_star_dont_interrupt] = ACTIONS(473), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(473), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(473), + [sym__fenced_code_block_start_backtick] = ACTIONS(473), + [sym__fenced_code_block_start_tilde] = ACTIONS(473), + [sym__blank_line_start] = ACTIONS(473), + [sym__code_span_start] = ACTIONS(473), + [sym__last_token_whitespace] = ACTIONS(599), + [sym__emphasis_open_star] = ACTIONS(473), + [sym__emphasis_open_underscore] = ACTIONS(473), + [sym__no_indented_chunk] = ACTIONS(473), }, [107] = { - [aux_sym__ignore_matching_tokens] = STATE(103), - [ts_builtin_sym_end] = ACTIONS(512), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(600), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(600), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), - [sym__no_indented_chunk] = ACTIONS(512), - }, - [108] = { - [aux_sym__ignore_matching_tokens] = STATE(106), - [ts_builtin_sym_end] = ACTIONS(512), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), + [aux_sym__ignore_matching_tokens] = STATE(96), + [aux_sym__html_block_1_token1] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym__] = ACTIONS(492), + [anon_sym_BQUOTE] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(494), + [anon_sym_LT_QMARK] = ACTIONS(494), + [aux_sym__html_block_4_token1] = ACTIONS(494), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(492), + [aux_sym__html_block_6_token1] = ACTIONS(494), + [aux_sym__html_block_6_token2] = ACTIONS(492), + [sym__open_tag_html_block] = ACTIONS(492), + [sym__open_tag_html_block_newline] = ACTIONS(492), + [sym__closing_tag_html_block] = ACTIONS(492), + [sym__closing_tag_html_block_newline] = ACTIONS(492), + [sym_backslash_escape] = ACTIONS(492), + [sym_uri_autolink] = ACTIONS(492), + [sym_email_autolink] = ACTIONS(492), + [sym_entity_reference] = ACTIONS(492), + [sym_numeric_character_reference] = ACTIONS(492), + [sym__whitespace_ge_2] = ACTIONS(492), + [aux_sym__whitespace_token1] = ACTIONS(494), + [sym__word_no_digit] = ACTIONS(492), + [sym__digits] = ACTIONS(492), + [aux_sym__newline_token1] = ACTIONS(492), + [sym__block_close] = ACTIONS(492), [sym__block_continuation] = ACTIONS(602), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), + [sym__block_quote_start] = ACTIONS(492), + [sym__indented_chunk_start] = ACTIONS(492), + [sym_atx_h1_marker] = ACTIONS(492), + [sym_atx_h2_marker] = ACTIONS(492), + [sym_atx_h3_marker] = ACTIONS(492), + [sym_atx_h4_marker] = ACTIONS(492), + [sym_atx_h5_marker] = ACTIONS(492), + [sym_atx_h6_marker] = ACTIONS(492), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(492), + [sym__thematic_break] = ACTIONS(492), + [sym__list_marker_minus] = ACTIONS(492), + [sym__list_marker_plus] = ACTIONS(492), + [sym__list_marker_star] = ACTIONS(492), + [sym__list_marker_parenthesis] = ACTIONS(492), + [sym__list_marker_dot] = ACTIONS(492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(492), + [sym__fenced_code_block_start_backtick] = ACTIONS(492), + [sym__fenced_code_block_start_tilde] = ACTIONS(492), + [sym__blank_line_start] = ACTIONS(492), + [sym__code_span_start] = ACTIONS(492), [sym__last_token_whitespace] = ACTIONS(602), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), - [sym__no_indented_chunk] = ACTIONS(512), + [sym__emphasis_open_star] = ACTIONS(492), + [sym__emphasis_open_underscore] = ACTIONS(492), + [sym__no_indented_chunk] = ACTIONS(492), + }, + [108] = { + [sym_setext_h1_underline] = STATE(2233), + [sym_setext_h2_underline] = STATE(2233), + [aux_sym__html_block_1_token1] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_DQUOTE] = ACTIONS(573), + [anon_sym_POUND] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(573), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_BSLASH] = ACTIONS(575), + [anon_sym_RBRACK] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym__] = ACTIONS(573), + [anon_sym_BQUOTE] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(575), + [anon_sym_LT_QMARK] = ACTIONS(575), + [aux_sym__html_block_4_token1] = ACTIONS(575), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(573), + [aux_sym__html_block_6_token1] = ACTIONS(575), + [aux_sym__html_block_6_token2] = ACTIONS(573), + [sym__open_tag_html_block] = ACTIONS(573), + [sym__open_tag_html_block_newline] = ACTIONS(573), + [sym__closing_tag_html_block] = ACTIONS(573), + [sym__closing_tag_html_block_newline] = ACTIONS(573), + [sym_backslash_escape] = ACTIONS(573), + [sym_uri_autolink] = ACTIONS(573), + [sym_email_autolink] = ACTIONS(573), + [sym_entity_reference] = ACTIONS(573), + [sym_numeric_character_reference] = ACTIONS(573), + [sym__whitespace_ge_2] = ACTIONS(573), + [aux_sym__whitespace_token1] = ACTIONS(575), + [sym__word_no_digit] = ACTIONS(573), + [sym__digits] = ACTIONS(573), + [aux_sym__newline_token1] = ACTIONS(573), + [sym__block_close] = ACTIONS(573), + [sym__block_quote_start] = ACTIONS(573), + [sym__indented_chunk_start] = ACTIONS(573), + [sym_atx_h1_marker] = ACTIONS(573), + [sym_atx_h2_marker] = ACTIONS(573), + [sym_atx_h3_marker] = ACTIONS(573), + [sym_atx_h4_marker] = ACTIONS(573), + [sym_atx_h5_marker] = ACTIONS(573), + [sym_atx_h6_marker] = ACTIONS(573), + [sym__setext_h1_underline] = ACTIONS(577), + [sym__setext_h2_underline] = ACTIONS(579), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(579), + [sym__thematic_break] = ACTIONS(573), + [sym__list_marker_minus] = ACTIONS(573), + [sym__list_marker_plus] = ACTIONS(573), + [sym__list_marker_star] = ACTIONS(573), + [sym__list_marker_parenthesis] = ACTIONS(573), + [sym__list_marker_dot] = ACTIONS(573), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(573), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(573), + [sym__list_marker_star_dont_interrupt] = ACTIONS(573), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(573), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(573), + [sym__fenced_code_block_start_backtick] = ACTIONS(573), + [sym__fenced_code_block_start_tilde] = ACTIONS(573), + [sym__blank_line_start] = ACTIONS(573), + [sym__code_span_start] = ACTIONS(573), + [sym__emphasis_open_star] = ACTIONS(573), + [sym__emphasis_open_underscore] = ACTIONS(573), }, [109] = { - [aux_sym__ignore_matching_tokens] = STATE(109), - [aux_sym__html_block_1_token1] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(522), - [anon_sym_LT_QMARK] = ACTIONS(522), - [aux_sym__html_block_4_token1] = ACTIONS(522), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(520), - [aux_sym__html_block_6_token1] = ACTIONS(522), - [aux_sym__html_block_6_token2] = ACTIONS(520), - [sym__open_tag_html_block] = ACTIONS(520), - [sym__open_tag_html_block_newline] = ACTIONS(520), - [sym__closing_tag_html_block] = ACTIONS(520), - [sym__closing_tag_html_block_newline] = ACTIONS(520), - [sym_backslash_escape] = ACTIONS(520), - [sym_uri_autolink] = ACTIONS(520), - [sym_email_autolink] = ACTIONS(520), - [sym_entity_reference] = ACTIONS(520), - [sym_numeric_character_reference] = ACTIONS(520), - [sym__whitespace_ge_2] = ACTIONS(520), - [aux_sym__whitespace_token1] = ACTIONS(522), - [sym__word_no_digit] = ACTIONS(520), - [sym__digits] = ACTIONS(520), - [aux_sym__newline_token1] = ACTIONS(520), - [sym__block_close] = ACTIONS(520), - [sym__block_continuation] = ACTIONS(604), - [sym__block_quote_start] = ACTIONS(520), - [sym__indented_chunk_start] = ACTIONS(520), - [sym_atx_h1_marker] = ACTIONS(520), - [sym_atx_h2_marker] = ACTIONS(520), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(520), - [sym_atx_h5_marker] = ACTIONS(520), - [sym_atx_h6_marker] = ACTIONS(520), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), - [sym__thematic_break] = ACTIONS(520), - [sym__list_marker_minus] = ACTIONS(520), - [sym__list_marker_plus] = ACTIONS(520), - [sym__list_marker_star] = ACTIONS(520), - [sym__list_marker_parenthesis] = ACTIONS(520), - [sym__list_marker_dot] = ACTIONS(520), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_star_dont_interrupt] = ACTIONS(520), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(520), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(520), - [sym__fenced_code_block_start_backtick] = ACTIONS(520), - [sym__fenced_code_block_start_tilde] = ACTIONS(520), - [sym__blank_line_start] = ACTIONS(520), - [sym__code_span_start] = ACTIONS(520), - [sym__last_token_whitespace] = ACTIONS(604), - [sym__emphasis_open_star] = ACTIONS(520), - [sym__emphasis_open_underscore] = ACTIONS(520), - [sym__no_indented_chunk] = ACTIONS(520), + [aux_sym__html_block_1_token1] = ACTIONS(581), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_POUND] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(581), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(581), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_EQ] = ACTIONS(581), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_BSLASH] = ACTIONS(583), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym__] = ACTIONS(581), + [anon_sym_BQUOTE] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(583), + [anon_sym_LT_QMARK] = ACTIONS(583), + [aux_sym__html_block_4_token1] = ACTIONS(583), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(581), + [aux_sym__html_block_6_token1] = ACTIONS(583), + [aux_sym__html_block_6_token2] = ACTIONS(581), + [sym__open_tag_html_block] = ACTIONS(581), + [sym__open_tag_html_block_newline] = ACTIONS(581), + [sym__closing_tag_html_block] = ACTIONS(581), + [sym__closing_tag_html_block_newline] = ACTIONS(581), + [sym_backslash_escape] = ACTIONS(581), + [sym_uri_autolink] = ACTIONS(581), + [sym_email_autolink] = ACTIONS(581), + [sym_entity_reference] = ACTIONS(581), + [sym_numeric_character_reference] = ACTIONS(581), + [sym__whitespace_ge_2] = ACTIONS(581), + [aux_sym__whitespace_token1] = ACTIONS(583), + [sym__word_no_digit] = ACTIONS(581), + [sym__digits] = ACTIONS(581), + [aux_sym__newline_token1] = ACTIONS(581), + [sym__split_token] = ACTIONS(585), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_close] = ACTIONS(581), + [sym__block_quote_start] = ACTIONS(581), + [sym__indented_chunk_start] = ACTIONS(581), + [sym_atx_h1_marker] = ACTIONS(581), + [sym_atx_h2_marker] = ACTIONS(581), + [sym_atx_h3_marker] = ACTIONS(581), + [sym_atx_h4_marker] = ACTIONS(581), + [sym_atx_h5_marker] = ACTIONS(581), + [sym_atx_h6_marker] = ACTIONS(581), + [sym__setext_h1_underline] = ACTIONS(581), + [sym__setext_h2_underline] = ACTIONS(581), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(581), + [sym__thematic_break] = ACTIONS(581), + [sym__list_marker_minus] = ACTIONS(581), + [sym__list_marker_plus] = ACTIONS(581), + [sym__list_marker_star] = ACTIONS(581), + [sym__list_marker_parenthesis] = ACTIONS(581), + [sym__list_marker_dot] = ACTIONS(581), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(581), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(581), + [sym__list_marker_star_dont_interrupt] = ACTIONS(581), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(581), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(581), + [sym__fenced_code_block_start_backtick] = ACTIONS(581), + [sym__fenced_code_block_start_tilde] = ACTIONS(581), + [sym__blank_line_start] = ACTIONS(581), + [sym__code_span_start] = ACTIONS(581), + [sym__emphasis_open_star] = ACTIONS(581), + [sym__emphasis_open_underscore] = ACTIONS(581), }, [110] = { - [sym_setext_h1_underline] = STATE(2254), - [sym_setext_h2_underline] = STATE(2254), - [aux_sym__html_block_1_token1] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_BSLASH] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym__] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(609), - [anon_sym_LT_QMARK] = ACTIONS(609), - [aux_sym__html_block_4_token1] = ACTIONS(609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(607), - [aux_sym__html_block_6_token1] = ACTIONS(609), - [aux_sym__html_block_6_token2] = ACTIONS(607), - [sym__open_tag_html_block] = ACTIONS(607), - [sym__open_tag_html_block_newline] = ACTIONS(607), - [sym__closing_tag_html_block] = ACTIONS(607), - [sym__closing_tag_html_block_newline] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(607), - [sym_email_autolink] = ACTIONS(607), - [sym_entity_reference] = ACTIONS(607), - [sym_numeric_character_reference] = ACTIONS(607), - [sym__whitespace_ge_2] = ACTIONS(607), - [aux_sym__whitespace_token1] = ACTIONS(609), - [sym__word_no_digit] = ACTIONS(607), - [sym__digits] = ACTIONS(607), - [aux_sym__newline_token1] = ACTIONS(607), - [sym__block_close] = ACTIONS(607), - [sym__block_quote_start] = ACTIONS(607), - [sym__indented_chunk_start] = ACTIONS(607), - [sym_atx_h1_marker] = ACTIONS(607), - [sym_atx_h2_marker] = ACTIONS(607), - [sym_atx_h3_marker] = ACTIONS(607), - [sym_atx_h4_marker] = ACTIONS(607), - [sym_atx_h5_marker] = ACTIONS(607), - [sym_atx_h6_marker] = ACTIONS(607), - [sym__setext_h1_underline] = ACTIONS(611), - [sym__setext_h2_underline] = ACTIONS(613), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(613), - [sym__thematic_break] = ACTIONS(607), - [sym__list_marker_minus] = ACTIONS(607), - [sym__list_marker_plus] = ACTIONS(607), - [sym__list_marker_star] = ACTIONS(607), - [sym__list_marker_parenthesis] = ACTIONS(607), - [sym__list_marker_dot] = ACTIONS(607), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(607), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(607), - [sym__list_marker_star_dont_interrupt] = ACTIONS(607), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(607), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(607), - [sym__fenced_code_block_start_backtick] = ACTIONS(607), - [sym__fenced_code_block_start_tilde] = ACTIONS(607), - [sym__blank_line_start] = ACTIONS(607), - [sym__code_span_start] = ACTIONS(607), - [sym__emphasis_open_star] = ACTIONS(607), - [sym__emphasis_open_underscore] = ACTIONS(607), + [aux_sym__ignore_matching_tokens] = STATE(96), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_close] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(602), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(602), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), + [sym__no_indented_chunk] = ACTIONS(482), }, [111] = { - [sym_setext_h1_underline] = STATE(2257), - [sym_setext_h2_underline] = STATE(2257), - [ts_builtin_sym_end] = ACTIONS(607), - [aux_sym__html_block_1_token1] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_BSLASH] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym__] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(609), - [anon_sym_LT_QMARK] = ACTIONS(609), - [aux_sym__html_block_4_token1] = ACTIONS(609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(607), - [aux_sym__html_block_6_token1] = ACTIONS(609), - [aux_sym__html_block_6_token2] = ACTIONS(607), - [sym__open_tag_html_block] = ACTIONS(607), - [sym__open_tag_html_block_newline] = ACTIONS(607), - [sym__closing_tag_html_block] = ACTIONS(607), - [sym__closing_tag_html_block_newline] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(607), - [sym_email_autolink] = ACTIONS(607), - [sym_entity_reference] = ACTIONS(607), - [sym_numeric_character_reference] = ACTIONS(607), - [sym__whitespace_ge_2] = ACTIONS(607), - [aux_sym__whitespace_token1] = ACTIONS(609), - [sym__word_no_digit] = ACTIONS(607), - [sym__digits] = ACTIONS(607), - [aux_sym__newline_token1] = ACTIONS(607), - [sym__block_quote_start] = ACTIONS(607), - [sym__indented_chunk_start] = ACTIONS(607), - [sym_atx_h1_marker] = ACTIONS(607), - [sym_atx_h2_marker] = ACTIONS(607), - [sym_atx_h3_marker] = ACTIONS(607), - [sym_atx_h4_marker] = ACTIONS(607), - [sym_atx_h5_marker] = ACTIONS(607), - [sym_atx_h6_marker] = ACTIONS(607), - [sym__setext_h1_underline] = ACTIONS(611), - [sym__setext_h2_underline] = ACTIONS(613), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(613), - [sym__thematic_break] = ACTIONS(607), - [sym__list_marker_minus] = ACTIONS(607), - [sym__list_marker_plus] = ACTIONS(607), - [sym__list_marker_star] = ACTIONS(607), - [sym__list_marker_parenthesis] = ACTIONS(607), - [sym__list_marker_dot] = ACTIONS(607), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(607), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(607), - [sym__list_marker_star_dont_interrupt] = ACTIONS(607), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(607), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(607), - [sym__fenced_code_block_start_backtick] = ACTIONS(607), - [sym__fenced_code_block_start_tilde] = ACTIONS(607), - [sym__blank_line_start] = ACTIONS(607), - [sym__code_span_start] = ACTIONS(607), - [sym__emphasis_open_star] = ACTIONS(607), - [sym__emphasis_open_underscore] = ACTIONS(607), + [aux_sym__paragraph_end_newline_repeat1] = STATE(102), + [aux_sym__html_block_1_token1] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(560), + [anon_sym_RPAREN] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_COLON] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_BSLASH] = ACTIONS(562), + [anon_sym_RBRACK] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym__] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(562), + [anon_sym_LT_QMARK] = ACTIONS(562), + [aux_sym__html_block_4_token1] = ACTIONS(562), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(560), + [aux_sym__html_block_6_token1] = ACTIONS(562), + [aux_sym__html_block_6_token2] = ACTIONS(560), + [sym__open_tag_html_block] = ACTIONS(560), + [sym__open_tag_html_block_newline] = ACTIONS(560), + [sym__closing_tag_html_block] = ACTIONS(560), + [sym__closing_tag_html_block_newline] = ACTIONS(560), + [sym_backslash_escape] = ACTIONS(560), + [sym_uri_autolink] = ACTIONS(560), + [sym_email_autolink] = ACTIONS(560), + [sym_entity_reference] = ACTIONS(560), + [sym_numeric_character_reference] = ACTIONS(560), + [sym__whitespace_ge_2] = ACTIONS(560), + [aux_sym__whitespace_token1] = ACTIONS(562), + [sym__word_no_digit] = ACTIONS(560), + [sym__digits] = ACTIONS(560), + [aux_sym__newline_token1] = ACTIONS(560), + [sym__split_token] = ACTIONS(604), + [sym__block_close] = ACTIONS(560), + [sym__block_quote_start] = ACTIONS(560), + [sym__indented_chunk_start] = ACTIONS(560), + [sym_atx_h1_marker] = ACTIONS(560), + [sym_atx_h2_marker] = ACTIONS(560), + [sym_atx_h3_marker] = ACTIONS(560), + [sym_atx_h4_marker] = ACTIONS(560), + [sym_atx_h5_marker] = ACTIONS(560), + [sym_atx_h6_marker] = ACTIONS(560), + [sym__setext_h1_underline] = ACTIONS(560), + [sym__setext_h2_underline] = ACTIONS(560), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(560), + [sym__thematic_break] = ACTIONS(560), + [sym__list_marker_minus] = ACTIONS(560), + [sym__list_marker_plus] = ACTIONS(560), + [sym__list_marker_star] = ACTIONS(560), + [sym__list_marker_parenthesis] = ACTIONS(560), + [sym__list_marker_dot] = ACTIONS(560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(560), + [sym__fenced_code_block_start_backtick] = ACTIONS(560), + [sym__fenced_code_block_start_tilde] = ACTIONS(560), + [sym__blank_line_start] = ACTIONS(560), + [sym__code_span_start] = ACTIONS(560), + [sym__emphasis_open_star] = ACTIONS(560), + [sym__emphasis_open_underscore] = ACTIONS(560), }, [112] = { - [aux_sym__html_block_1_token1] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(587), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_SQUOTE] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(587), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_STAR] = ACTIONS(587), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(587), - [anon_sym_SLASH] = ACTIONS(587), - [anon_sym_COLON] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_EQ] = ACTIONS(587), - [anon_sym_GT] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_BSLASH] = ACTIONS(589), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym__] = ACTIONS(587), - [anon_sym_BQUOTE] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_RBRACE] = ACTIONS(587), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(589), - [anon_sym_LT_QMARK] = ACTIONS(589), - [aux_sym__html_block_4_token1] = ACTIONS(589), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(587), - [aux_sym__html_block_6_token1] = ACTIONS(589), - [aux_sym__html_block_6_token2] = ACTIONS(587), - [sym__open_tag_html_block] = ACTIONS(587), - [sym__open_tag_html_block_newline] = ACTIONS(587), - [sym__closing_tag_html_block] = ACTIONS(587), - [sym__closing_tag_html_block_newline] = ACTIONS(587), - [sym_backslash_escape] = ACTIONS(587), - [sym_uri_autolink] = ACTIONS(587), - [sym_email_autolink] = ACTIONS(587), - [sym_entity_reference] = ACTIONS(587), - [sym_numeric_character_reference] = ACTIONS(587), - [sym__whitespace_ge_2] = ACTIONS(587), - [aux_sym__whitespace_token1] = ACTIONS(589), - [sym__word_no_digit] = ACTIONS(587), - [sym__digits] = ACTIONS(587), - [aux_sym__newline_token1] = ACTIONS(587), - [sym__split_token] = ACTIONS(591), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_close] = ACTIONS(587), - [sym__block_quote_start] = ACTIONS(587), - [sym__indented_chunk_start] = ACTIONS(587), - [sym_atx_h1_marker] = ACTIONS(587), - [sym_atx_h2_marker] = ACTIONS(587), - [sym_atx_h3_marker] = ACTIONS(587), - [sym_atx_h4_marker] = ACTIONS(587), - [sym_atx_h5_marker] = ACTIONS(587), - [sym_atx_h6_marker] = ACTIONS(587), - [sym__setext_h1_underline] = ACTIONS(587), - [sym__setext_h2_underline] = ACTIONS(587), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(587), - [sym__thematic_break] = ACTIONS(587), - [sym__list_marker_minus] = ACTIONS(587), - [sym__list_marker_plus] = ACTIONS(587), - [sym__list_marker_star] = ACTIONS(587), - [sym__list_marker_parenthesis] = ACTIONS(587), - [sym__list_marker_dot] = ACTIONS(587), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(587), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(587), - [sym__list_marker_star_dont_interrupt] = ACTIONS(587), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(587), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(587), - [sym__fenced_code_block_start_backtick] = ACTIONS(587), - [sym__fenced_code_block_start_tilde] = ACTIONS(587), - [sym__blank_line_start] = ACTIONS(587), - [sym__code_span_start] = ACTIONS(587), - [sym__emphasis_open_star] = ACTIONS(587), - [sym__emphasis_open_underscore] = ACTIONS(587), + [aux_sym__ignore_matching_tokens] = STATE(284), + [aux_sym__html_block_1_token1] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_DQUOTE] = ACTIONS(461), + [anon_sym_POUND] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(461), + [anon_sym_PERCENT] = ACTIONS(461), + [anon_sym_AMP] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_COMMA] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_DOT] = ACTIONS(461), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_COLON] = ACTIONS(461), + [anon_sym_SEMI] = ACTIONS(461), + [anon_sym_LT] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(461), + [anon_sym_GT] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_BSLASH] = ACTIONS(463), + [anon_sym_RBRACK] = ACTIONS(461), + [anon_sym_CARET] = ACTIONS(461), + [anon_sym__] = ACTIONS(461), + [anon_sym_BQUOTE] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(461), + [anon_sym_PIPE] = ACTIONS(461), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(463), + [anon_sym_LT_QMARK] = ACTIONS(463), + [aux_sym__html_block_4_token1] = ACTIONS(463), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(461), + [aux_sym__html_block_6_token1] = ACTIONS(463), + [aux_sym__html_block_6_token2] = ACTIONS(461), + [sym__open_tag_html_block] = ACTIONS(461), + [sym__open_tag_html_block_newline] = ACTIONS(461), + [sym__closing_tag_html_block] = ACTIONS(461), + [sym__closing_tag_html_block_newline] = ACTIONS(461), + [sym_backslash_escape] = ACTIONS(461), + [sym_uri_autolink] = ACTIONS(461), + [sym_email_autolink] = ACTIONS(461), + [sym_entity_reference] = ACTIONS(461), + [sym_numeric_character_reference] = ACTIONS(461), + [sym__whitespace_ge_2] = ACTIONS(461), + [aux_sym__whitespace_token1] = ACTIONS(463), + [sym__word_no_digit] = ACTIONS(461), + [sym__digits] = ACTIONS(461), + [aux_sym__newline_token1] = ACTIONS(461), + [sym__line_ending] = ACTIONS(606), + [sym__block_close] = ACTIONS(461), + [sym__block_continuation] = ACTIONS(608), + [sym__block_quote_start] = ACTIONS(461), + [sym__indented_chunk_start] = ACTIONS(461), + [sym_atx_h1_marker] = ACTIONS(461), + [sym_atx_h2_marker] = ACTIONS(461), + [sym_atx_h3_marker] = ACTIONS(461), + [sym_atx_h4_marker] = ACTIONS(461), + [sym_atx_h5_marker] = ACTIONS(461), + [sym_atx_h6_marker] = ACTIONS(461), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(461), + [sym__thematic_break] = ACTIONS(461), + [sym__list_marker_minus] = ACTIONS(461), + [sym__list_marker_plus] = ACTIONS(461), + [sym__list_marker_star] = ACTIONS(461), + [sym__list_marker_parenthesis] = ACTIONS(461), + [sym__list_marker_dot] = ACTIONS(461), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(461), + [sym__list_marker_star_dont_interrupt] = ACTIONS(461), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(461), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(461), + [sym__fenced_code_block_start_backtick] = ACTIONS(461), + [sym__fenced_code_block_start_tilde] = ACTIONS(461), + [sym__blank_line_start] = ACTIONS(461), + [sym__code_span_start] = ACTIONS(461), + [sym__last_token_whitespace] = ACTIONS(608), + [sym__emphasis_open_star] = ACTIONS(461), + [sym__emphasis_open_underscore] = ACTIONS(461), }, [113] = { - [aux_sym__paragraph_end_newline_repeat1] = STATE(100), - [aux_sym__html_block_1_token1] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(594), - [anon_sym_DQUOTE] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_DOLLAR] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(594), - [anon_sym_COLON] = ACTIONS(594), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_BSLASH] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym__] = ACTIONS(594), - [anon_sym_BQUOTE] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(596), - [anon_sym_LT_QMARK] = ACTIONS(596), - [aux_sym__html_block_4_token1] = ACTIONS(596), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(594), - [aux_sym__html_block_6_token1] = ACTIONS(596), - [aux_sym__html_block_6_token2] = ACTIONS(594), - [sym__open_tag_html_block] = ACTIONS(594), - [sym__open_tag_html_block_newline] = ACTIONS(594), - [sym__closing_tag_html_block] = ACTIONS(594), - [sym__closing_tag_html_block_newline] = ACTIONS(594), - [sym_backslash_escape] = ACTIONS(594), - [sym_uri_autolink] = ACTIONS(594), - [sym_email_autolink] = ACTIONS(594), - [sym_entity_reference] = ACTIONS(594), - [sym_numeric_character_reference] = ACTIONS(594), - [sym__whitespace_ge_2] = ACTIONS(594), - [aux_sym__whitespace_token1] = ACTIONS(596), - [sym__word_no_digit] = ACTIONS(594), - [sym__digits] = ACTIONS(594), - [aux_sym__newline_token1] = ACTIONS(594), - [sym__split_token] = ACTIONS(615), - [sym__block_close] = ACTIONS(594), - [sym__block_quote_start] = ACTIONS(594), - [sym__indented_chunk_start] = ACTIONS(594), - [sym_atx_h1_marker] = ACTIONS(594), - [sym_atx_h2_marker] = ACTIONS(594), - [sym_atx_h3_marker] = ACTIONS(594), - [sym_atx_h4_marker] = ACTIONS(594), - [sym_atx_h5_marker] = ACTIONS(594), - [sym_atx_h6_marker] = ACTIONS(594), - [sym__setext_h1_underline] = ACTIONS(594), - [sym__setext_h2_underline] = ACTIONS(594), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(594), - [sym__thematic_break] = ACTIONS(594), - [sym__list_marker_minus] = ACTIONS(594), - [sym__list_marker_plus] = ACTIONS(594), - [sym__list_marker_star] = ACTIONS(594), - [sym__list_marker_parenthesis] = ACTIONS(594), - [sym__list_marker_dot] = ACTIONS(594), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(594), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(594), - [sym__list_marker_star_dont_interrupt] = ACTIONS(594), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(594), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(594), - [sym__fenced_code_block_start_backtick] = ACTIONS(594), - [sym__fenced_code_block_start_tilde] = ACTIONS(594), - [sym__blank_line_start] = ACTIONS(594), - [sym__code_span_start] = ACTIONS(594), - [sym__emphasis_open_star] = ACTIONS(594), - [sym__emphasis_open_underscore] = ACTIONS(594), + [aux_sym__ignore_matching_tokens] = STATE(107), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_close] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(610), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(610), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), + [sym__no_indented_chunk] = ACTIONS(482), }, [114] = { - [aux_sym__ignore_matching_tokens] = STATE(121), - [ts_builtin_sym_end] = ACTIONS(617), - [aux_sym__html_block_1_token1] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_POUND] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym__] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(619), - [anon_sym_LT_QMARK] = ACTIONS(619), - [aux_sym__html_block_4_token1] = ACTIONS(619), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(617), - [aux_sym__html_block_6_token1] = ACTIONS(619), - [aux_sym__html_block_6_token2] = ACTIONS(617), - [sym__open_tag_html_block] = ACTIONS(617), - [sym__open_tag_html_block_newline] = ACTIONS(617), - [sym__closing_tag_html_block] = ACTIONS(617), - [sym__closing_tag_html_block_newline] = ACTIONS(617), - [sym_backslash_escape] = ACTIONS(617), - [sym_uri_autolink] = ACTIONS(617), - [sym_email_autolink] = ACTIONS(617), - [sym_entity_reference] = ACTIONS(617), - [sym_numeric_character_reference] = ACTIONS(617), - [sym__whitespace_ge_2] = ACTIONS(617), - [aux_sym__whitespace_token1] = ACTIONS(619), - [sym__word_no_digit] = ACTIONS(617), - [sym__digits] = ACTIONS(617), - [aux_sym__newline_token1] = ACTIONS(617), - [sym__block_continuation] = ACTIONS(621), - [sym__block_quote_start] = ACTIONS(617), - [sym__indented_chunk_start] = ACTIONS(617), - [sym_atx_h1_marker] = ACTIONS(617), - [sym_atx_h2_marker] = ACTIONS(617), - [sym_atx_h3_marker] = ACTIONS(617), - [sym_atx_h4_marker] = ACTIONS(617), - [sym_atx_h5_marker] = ACTIONS(617), - [sym_atx_h6_marker] = ACTIONS(617), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(617), - [sym__thematic_break] = ACTIONS(617), - [sym__list_marker_minus] = ACTIONS(617), - [sym__list_marker_plus] = ACTIONS(617), - [sym__list_marker_star] = ACTIONS(617), - [sym__list_marker_parenthesis] = ACTIONS(617), - [sym__list_marker_dot] = ACTIONS(617), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_star_dont_interrupt] = ACTIONS(617), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(617), - [sym__fenced_code_block_start_backtick] = ACTIONS(617), - [sym__fenced_code_block_start_tilde] = ACTIONS(617), - [sym__blank_line_start] = ACTIONS(617), - [sym__code_span_start] = ACTIONS(617), - [sym__last_token_whitespace] = ACTIONS(621), - [sym__emphasis_open_star] = ACTIONS(617), - [sym__emphasis_open_underscore] = ACTIONS(617), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(612), + [aux_sym__html_block_1_token1] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_DOLLAR] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_BQUOTE] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(612), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(614), + [anon_sym_LT_QMARK] = ACTIONS(614), + [aux_sym__html_block_4_token1] = ACTIONS(614), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(612), + [aux_sym__html_block_6_token1] = ACTIONS(614), + [aux_sym__html_block_6_token2] = ACTIONS(612), + [sym__open_tag_html_block] = ACTIONS(612), + [sym__open_tag_html_block_newline] = ACTIONS(612), + [sym__closing_tag_html_block] = ACTIONS(612), + [sym__closing_tag_html_block_newline] = ACTIONS(612), + [sym_backslash_escape] = ACTIONS(612), + [sym_uri_autolink] = ACTIONS(612), + [sym_email_autolink] = ACTIONS(612), + [sym_entity_reference] = ACTIONS(612), + [sym_numeric_character_reference] = ACTIONS(612), + [sym__whitespace_ge_2] = ACTIONS(612), + [aux_sym__whitespace_token1] = ACTIONS(614), + [sym__word_no_digit] = ACTIONS(612), + [sym__digits] = ACTIONS(612), + [aux_sym__newline_token1] = ACTIONS(612), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(612), + [sym__indented_chunk_start] = ACTIONS(612), + [sym_atx_h1_marker] = ACTIONS(612), + [sym_atx_h2_marker] = ACTIONS(612), + [sym_atx_h3_marker] = ACTIONS(612), + [sym_atx_h4_marker] = ACTIONS(612), + [sym_atx_h5_marker] = ACTIONS(612), + [sym_atx_h6_marker] = ACTIONS(612), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(612), + [sym__thematic_break] = ACTIONS(612), + [sym__list_marker_minus] = ACTIONS(612), + [sym__list_marker_plus] = ACTIONS(612), + [sym__list_marker_star] = ACTIONS(612), + [sym__list_marker_parenthesis] = ACTIONS(612), + [sym__list_marker_dot] = ACTIONS(612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(612), + [sym__fenced_code_block_start_backtick] = ACTIONS(612), + [sym__fenced_code_block_start_tilde] = ACTIONS(612), + [sym__blank_line_start] = ACTIONS(612), + [sym__code_span_start] = ACTIONS(612), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(612), + [sym__emphasis_open_underscore] = ACTIONS(612), }, [115] = { - [aux_sym__ignore_matching_tokens] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(623), - [aux_sym__html_block_1_token1] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BQUOTE] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(625), - [anon_sym_LT_QMARK] = ACTIONS(625), - [aux_sym__html_block_4_token1] = ACTIONS(625), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(623), - [aux_sym__html_block_6_token1] = ACTIONS(625), - [aux_sym__html_block_6_token2] = ACTIONS(623), - [sym__open_tag_html_block] = ACTIONS(623), - [sym__open_tag_html_block_newline] = ACTIONS(623), - [sym__closing_tag_html_block] = ACTIONS(623), - [sym__closing_tag_html_block_newline] = ACTIONS(623), - [sym_backslash_escape] = ACTIONS(623), - [sym_uri_autolink] = ACTIONS(623), - [sym_email_autolink] = ACTIONS(623), - [sym_entity_reference] = ACTIONS(623), - [sym_numeric_character_reference] = ACTIONS(623), - [sym__whitespace_ge_2] = ACTIONS(623), - [aux_sym__whitespace_token1] = ACTIONS(625), - [sym__word_no_digit] = ACTIONS(623), - [sym__digits] = ACTIONS(623), - [aux_sym__newline_token1] = ACTIONS(623), - [sym__block_continuation] = ACTIONS(627), - [sym__block_quote_start] = ACTIONS(623), - [sym__indented_chunk_start] = ACTIONS(623), - [sym_atx_h1_marker] = ACTIONS(623), - [sym_atx_h2_marker] = ACTIONS(623), - [sym_atx_h3_marker] = ACTIONS(623), - [sym_atx_h4_marker] = ACTIONS(623), - [sym_atx_h5_marker] = ACTIONS(623), - [sym_atx_h6_marker] = ACTIONS(623), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(623), - [sym__thematic_break] = ACTIONS(623), - [sym__list_marker_minus] = ACTIONS(623), - [sym__list_marker_plus] = ACTIONS(623), - [sym__list_marker_star] = ACTIONS(623), - [sym__list_marker_parenthesis] = ACTIONS(623), - [sym__list_marker_dot] = ACTIONS(623), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(623), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(623), - [sym__list_marker_star_dont_interrupt] = ACTIONS(623), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(623), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(623), - [sym__fenced_code_block_start_backtick] = ACTIONS(623), - [sym__fenced_code_block_start_tilde] = ACTIONS(623), - [sym__blank_line_start] = ACTIONS(623), - [sym__code_span_start] = ACTIONS(623), - [sym__last_token_whitespace] = ACTIONS(627), - [sym__emphasis_open_star] = ACTIONS(623), - [sym__emphasis_open_underscore] = ACTIONS(623), + [aux_sym__ignore_matching_tokens] = STATE(195), + [aux_sym__html_block_1_token1] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_BSLASH] = ACTIONS(618), + [anon_sym_RBRACK] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(618), + [anon_sym_LT_QMARK] = ACTIONS(618), + [aux_sym__html_block_4_token1] = ACTIONS(618), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(616), + [aux_sym__html_block_6_token1] = ACTIONS(618), + [aux_sym__html_block_6_token2] = ACTIONS(616), + [sym__open_tag_html_block] = ACTIONS(616), + [sym__open_tag_html_block_newline] = ACTIONS(616), + [sym__closing_tag_html_block] = ACTIONS(616), + [sym__closing_tag_html_block_newline] = ACTIONS(616), + [sym_backslash_escape] = ACTIONS(616), + [sym_uri_autolink] = ACTIONS(616), + [sym_email_autolink] = ACTIONS(616), + [sym_entity_reference] = ACTIONS(616), + [sym_numeric_character_reference] = ACTIONS(616), + [sym__whitespace_ge_2] = ACTIONS(616), + [aux_sym__whitespace_token1] = ACTIONS(618), + [sym__word_no_digit] = ACTIONS(616), + [sym__digits] = ACTIONS(616), + [aux_sym__newline_token1] = ACTIONS(616), + [sym__block_close] = ACTIONS(616), + [sym__block_continuation] = ACTIONS(620), + [sym__block_quote_start] = ACTIONS(616), + [sym__indented_chunk_start] = ACTIONS(616), + [sym_atx_h1_marker] = ACTIONS(616), + [sym_atx_h2_marker] = ACTIONS(616), + [sym_atx_h3_marker] = ACTIONS(616), + [sym_atx_h4_marker] = ACTIONS(616), + [sym_atx_h5_marker] = ACTIONS(616), + [sym_atx_h6_marker] = ACTIONS(616), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(616), + [sym__thematic_break] = ACTIONS(616), + [sym__list_marker_minus] = ACTIONS(616), + [sym__list_marker_plus] = ACTIONS(616), + [sym__list_marker_star] = ACTIONS(616), + [sym__list_marker_parenthesis] = ACTIONS(616), + [sym__list_marker_dot] = ACTIONS(616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(616), + [sym__fenced_code_block_start_backtick] = ACTIONS(616), + [sym__fenced_code_block_start_tilde] = ACTIONS(616), + [sym__blank_line_start] = ACTIONS(616), + [sym__code_span_start] = ACTIONS(616), + [sym__last_token_whitespace] = ACTIONS(620), + [sym__emphasis_open_star] = ACTIONS(616), + [sym__emphasis_open_underscore] = ACTIONS(616), }, [116] = { - [sym_shortcut_link] = STATE(247), - [sym_full_reference_link] = STATE(247), - [sym_collapsed_reference_link] = STATE(247), - [sym_inline_link] = STATE(247), - [sym_image] = STATE(247), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym__soft_line_break] = STATE(247), - [sym_hard_line_break] = STATE(247), - [sym_html_tag] = STATE(247), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(247), - [sym__word] = STATE(247), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore] = STATE(247), - [aux_sym__inline_no_underscore] = STATE(247), - [sym__text_inline_no_underscore] = STATE(247), - [sym__emphasis_star] = STATE(725), - [sym__strong_emphasis_star] = STATE(247), - [sym__emphasis_underscore] = STATE(725), - [sym__strong_emphasis_underscore] = STATE(247), - [sym__code_span] = STATE(247), - [anon_sym_BANG] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(641), - [anon_sym_LT_QMARK] = ACTIONS(643), - [aux_sym__html_block_4_token1] = ACTIONS(645), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(647), - [sym_backslash_escape] = ACTIONS(649), - [sym_uri_autolink] = ACTIONS(649), - [sym_email_autolink] = ACTIONS(649), - [sym_entity_reference] = ACTIONS(649), - [sym_numeric_character_reference] = ACTIONS(649), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(649), - [sym__digits] = ACTIONS(649), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__emphasis_close_underscore] = ACTIONS(661), + [aux_sym__ignore_matching_tokens] = STATE(175), + [aux_sym__html_block_1_token1] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(624), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_BSLASH] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym__] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(624), + [anon_sym_LT_QMARK] = ACTIONS(624), + [aux_sym__html_block_4_token1] = ACTIONS(624), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(622), + [aux_sym__html_block_6_token1] = ACTIONS(624), + [aux_sym__html_block_6_token2] = ACTIONS(622), + [sym__open_tag_html_block] = ACTIONS(622), + [sym__open_tag_html_block_newline] = ACTIONS(622), + [sym__closing_tag_html_block] = ACTIONS(622), + [sym__closing_tag_html_block_newline] = ACTIONS(622), + [sym_backslash_escape] = ACTIONS(622), + [sym_uri_autolink] = ACTIONS(622), + [sym_email_autolink] = ACTIONS(622), + [sym_entity_reference] = ACTIONS(622), + [sym_numeric_character_reference] = ACTIONS(622), + [sym__whitespace_ge_2] = ACTIONS(622), + [aux_sym__whitespace_token1] = ACTIONS(624), + [sym__word_no_digit] = ACTIONS(622), + [sym__digits] = ACTIONS(622), + [aux_sym__newline_token1] = ACTIONS(622), + [sym__block_close] = ACTIONS(622), + [sym__block_continuation] = ACTIONS(626), + [sym__block_quote_start] = ACTIONS(622), + [sym__indented_chunk_start] = ACTIONS(622), + [sym_atx_h1_marker] = ACTIONS(622), + [sym_atx_h2_marker] = ACTIONS(622), + [sym_atx_h3_marker] = ACTIONS(622), + [sym_atx_h4_marker] = ACTIONS(622), + [sym_atx_h5_marker] = ACTIONS(622), + [sym_atx_h6_marker] = ACTIONS(622), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(622), + [sym__thematic_break] = ACTIONS(622), + [sym__list_marker_minus] = ACTIONS(622), + [sym__list_marker_plus] = ACTIONS(622), + [sym__list_marker_star] = ACTIONS(622), + [sym__list_marker_parenthesis] = ACTIONS(622), + [sym__list_marker_dot] = ACTIONS(622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(622), + [sym__fenced_code_block_start_backtick] = ACTIONS(622), + [sym__fenced_code_block_start_tilde] = ACTIONS(622), + [sym__blank_line_start] = ACTIONS(622), + [sym__code_span_start] = ACTIONS(622), + [sym__last_token_whitespace] = ACTIONS(626), + [sym__emphasis_open_star] = ACTIONS(622), + [sym__emphasis_open_underscore] = ACTIONS(622), }, [117] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_BSLASH] = ACTIONS(665), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [anon_sym__] = ACTIONS(663), - [anon_sym_BQUOTE] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(665), - [anon_sym_LT_QMARK] = ACTIONS(665), - [aux_sym__html_block_4_token1] = ACTIONS(665), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(663), - [aux_sym__html_block_6_token1] = ACTIONS(665), - [aux_sym__html_block_6_token2] = ACTIONS(663), - [sym__open_tag_html_block] = ACTIONS(663), - [sym__open_tag_html_block_newline] = ACTIONS(663), - [sym__closing_tag_html_block] = ACTIONS(663), - [sym__closing_tag_html_block_newline] = ACTIONS(663), - [sym_backslash_escape] = ACTIONS(663), - [sym_uri_autolink] = ACTIONS(663), - [sym_email_autolink] = ACTIONS(663), - [sym_entity_reference] = ACTIONS(663), - [sym_numeric_character_reference] = ACTIONS(663), - [sym__whitespace_ge_2] = ACTIONS(663), - [aux_sym__whitespace_token1] = ACTIONS(665), - [sym__word_no_digit] = ACTIONS(663), - [sym__digits] = ACTIONS(663), - [aux_sym__newline_token1] = ACTIONS(663), - [sym__block_close] = ACTIONS(663), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(663), - [sym__indented_chunk_start] = ACTIONS(663), - [sym_atx_h1_marker] = ACTIONS(663), - [sym_atx_h2_marker] = ACTIONS(663), - [sym_atx_h3_marker] = ACTIONS(663), - [sym_atx_h4_marker] = ACTIONS(663), - [sym_atx_h5_marker] = ACTIONS(663), - [sym_atx_h6_marker] = ACTIONS(663), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(663), - [sym__thematic_break] = ACTIONS(663), - [sym__list_marker_minus] = ACTIONS(663), - [sym__list_marker_plus] = ACTIONS(663), - [sym__list_marker_star] = ACTIONS(663), - [sym__list_marker_parenthesis] = ACTIONS(663), - [sym__list_marker_dot] = ACTIONS(663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(663), - [sym__fenced_code_block_start_backtick] = ACTIONS(663), - [sym__fenced_code_block_start_tilde] = ACTIONS(663), - [sym__blank_line_start] = ACTIONS(663), - [sym__code_span_start] = ACTIONS(663), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(663), - [sym__emphasis_open_underscore] = ACTIONS(663), + [sym_shortcut_link] = STATE(249), + [sym_full_reference_link] = STATE(249), + [sym_collapsed_reference_link] = STATE(249), + [sym_inline_link] = STATE(249), + [sym_image] = STATE(249), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym__soft_line_break] = STATE(249), + [sym_hard_line_break] = STATE(249), + [sym_html_tag] = STATE(249), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(249), + [sym__word] = STATE(249), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore] = STATE(249), + [aux_sym__inline_no_underscore] = STATE(249), + [sym__text_inline_no_underscore] = STATE(249), + [sym__emphasis_star] = STATE(744), + [sym__strong_emphasis_star] = STATE(249), + [sym__emphasis_underscore] = STATE(744), + [sym__strong_emphasis_underscore] = STATE(249), + [sym__code_span] = STATE(249), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_BSLASH] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(640), + [anon_sym_LT_QMARK] = ACTIONS(642), + [aux_sym__html_block_4_token1] = ACTIONS(644), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(646), + [sym_backslash_escape] = ACTIONS(648), + [sym_uri_autolink] = ACTIONS(648), + [sym_email_autolink] = ACTIONS(648), + [sym_entity_reference] = ACTIONS(648), + [sym_numeric_character_reference] = ACTIONS(648), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(648), + [sym__digits] = ACTIONS(648), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(654), + [sym__emphasis_open_star] = ACTIONS(656), + [sym__emphasis_open_underscore] = ACTIONS(658), + [sym__emphasis_close_underscore] = ACTIONS(660), }, [118] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(663), - [aux_sym__html_block_1_token1] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [anon_sym_POUND] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_PERCENT] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_SQUOTE] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_STAR] = ACTIONS(663), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_EQ] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_QMARK] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(663), - [anon_sym_BSLASH] = ACTIONS(665), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(663), - [anon_sym__] = ACTIONS(663), - [anon_sym_BQUOTE] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(663), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(665), - [anon_sym_LT_QMARK] = ACTIONS(665), - [aux_sym__html_block_4_token1] = ACTIONS(665), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(663), - [aux_sym__html_block_6_token1] = ACTIONS(665), - [aux_sym__html_block_6_token2] = ACTIONS(663), - [sym__open_tag_html_block] = ACTIONS(663), - [sym__open_tag_html_block_newline] = ACTIONS(663), - [sym__closing_tag_html_block] = ACTIONS(663), - [sym__closing_tag_html_block_newline] = ACTIONS(663), - [sym_backslash_escape] = ACTIONS(663), - [sym_uri_autolink] = ACTIONS(663), - [sym_email_autolink] = ACTIONS(663), - [sym_entity_reference] = ACTIONS(663), - [sym_numeric_character_reference] = ACTIONS(663), - [sym__whitespace_ge_2] = ACTIONS(663), - [aux_sym__whitespace_token1] = ACTIONS(665), - [sym__word_no_digit] = ACTIONS(663), - [sym__digits] = ACTIONS(663), - [aux_sym__newline_token1] = ACTIONS(663), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(663), - [sym__indented_chunk_start] = ACTIONS(663), - [sym_atx_h1_marker] = ACTIONS(663), - [sym_atx_h2_marker] = ACTIONS(663), - [sym_atx_h3_marker] = ACTIONS(663), - [sym_atx_h4_marker] = ACTIONS(663), - [sym_atx_h5_marker] = ACTIONS(663), - [sym_atx_h6_marker] = ACTIONS(663), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(663), - [sym__thematic_break] = ACTIONS(663), - [sym__list_marker_minus] = ACTIONS(663), - [sym__list_marker_plus] = ACTIONS(663), - [sym__list_marker_star] = ACTIONS(663), - [sym__list_marker_parenthesis] = ACTIONS(663), - [sym__list_marker_dot] = ACTIONS(663), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(663), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(663), - [sym__list_marker_star_dont_interrupt] = ACTIONS(663), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(663), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(663), - [sym__fenced_code_block_start_backtick] = ACTIONS(663), - [sym__fenced_code_block_start_tilde] = ACTIONS(663), - [sym__blank_line_start] = ACTIONS(663), - [sym__code_span_start] = ACTIONS(663), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(663), - [sym__emphasis_open_underscore] = ACTIONS(663), + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(624), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_BSLASH] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym__] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(624), + [anon_sym_LT_QMARK] = ACTIONS(624), + [aux_sym__html_block_4_token1] = ACTIONS(624), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(622), + [aux_sym__html_block_6_token1] = ACTIONS(624), + [aux_sym__html_block_6_token2] = ACTIONS(622), + [sym__open_tag_html_block] = ACTIONS(622), + [sym__open_tag_html_block_newline] = ACTIONS(622), + [sym__closing_tag_html_block] = ACTIONS(622), + [sym__closing_tag_html_block_newline] = ACTIONS(622), + [sym_backslash_escape] = ACTIONS(622), + [sym_uri_autolink] = ACTIONS(622), + [sym_email_autolink] = ACTIONS(622), + [sym_entity_reference] = ACTIONS(622), + [sym_numeric_character_reference] = ACTIONS(622), + [sym__whitespace_ge_2] = ACTIONS(622), + [aux_sym__whitespace_token1] = ACTIONS(624), + [sym__word_no_digit] = ACTIONS(622), + [sym__digits] = ACTIONS(622), + [aux_sym__newline_token1] = ACTIONS(622), + [sym__block_close] = ACTIONS(622), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(622), + [sym__indented_chunk_start] = ACTIONS(622), + [sym_atx_h1_marker] = ACTIONS(622), + [sym_atx_h2_marker] = ACTIONS(622), + [sym_atx_h3_marker] = ACTIONS(622), + [sym_atx_h4_marker] = ACTIONS(622), + [sym_atx_h5_marker] = ACTIONS(622), + [sym_atx_h6_marker] = ACTIONS(622), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(622), + [sym__thematic_break] = ACTIONS(622), + [sym__list_marker_minus] = ACTIONS(622), + [sym__list_marker_plus] = ACTIONS(622), + [sym__list_marker_star] = ACTIONS(622), + [sym__list_marker_parenthesis] = ACTIONS(622), + [sym__list_marker_dot] = ACTIONS(622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(622), + [sym__fenced_code_block_start_backtick] = ACTIONS(622), + [sym__fenced_code_block_start_tilde] = ACTIONS(622), + [sym__blank_line_start] = ACTIONS(622), + [sym__code_span_start] = ACTIONS(622), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(622), + [sym__emphasis_open_underscore] = ACTIONS(622), }, [119] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(667), - [anon_sym_BANG] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(667), - [anon_sym_POUND] = ACTIONS(667), - [anon_sym_DOLLAR] = ACTIONS(667), - [anon_sym_PERCENT] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_SQUOTE] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_DOT] = ACTIONS(667), - [anon_sym_SLASH] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_BSLASH] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_CARET] = ACTIONS(667), - [anon_sym__] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_PIPE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_TILDE] = ACTIONS(667), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(669), - [anon_sym_LT_QMARK] = ACTIONS(669), - [aux_sym__html_block_4_token1] = ACTIONS(669), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(667), - [aux_sym__html_block_6_token1] = ACTIONS(669), - [aux_sym__html_block_6_token2] = ACTIONS(667), - [sym__open_tag_html_block] = ACTIONS(667), - [sym__open_tag_html_block_newline] = ACTIONS(667), - [sym__closing_tag_html_block] = ACTIONS(667), - [sym__closing_tag_html_block_newline] = ACTIONS(667), - [sym_backslash_escape] = ACTIONS(667), - [sym_uri_autolink] = ACTIONS(667), - [sym_email_autolink] = ACTIONS(667), - [sym_entity_reference] = ACTIONS(667), - [sym_numeric_character_reference] = ACTIONS(667), - [sym__whitespace_ge_2] = ACTIONS(667), - [aux_sym__whitespace_token1] = ACTIONS(669), - [sym__word_no_digit] = ACTIONS(667), - [sym__digits] = ACTIONS(667), - [aux_sym__newline_token1] = ACTIONS(667), - [sym__block_close] = ACTIONS(667), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(667), - [sym__indented_chunk_start] = ACTIONS(667), - [sym_atx_h1_marker] = ACTIONS(667), - [sym_atx_h2_marker] = ACTIONS(667), - [sym_atx_h3_marker] = ACTIONS(667), - [sym_atx_h4_marker] = ACTIONS(667), - [sym_atx_h5_marker] = ACTIONS(667), - [sym_atx_h6_marker] = ACTIONS(667), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(667), - [sym__thematic_break] = ACTIONS(667), - [sym__list_marker_minus] = ACTIONS(667), - [sym__list_marker_plus] = ACTIONS(667), - [sym__list_marker_star] = ACTIONS(667), - [sym__list_marker_parenthesis] = ACTIONS(667), - [sym__list_marker_dot] = ACTIONS(667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(667), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(667), - [sym__list_marker_star_dont_interrupt] = ACTIONS(667), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(667), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(667), - [sym__fenced_code_block_start_backtick] = ACTIONS(667), - [sym__fenced_code_block_start_tilde] = ACTIONS(667), - [sym__blank_line_start] = ACTIONS(667), - [sym__code_span_start] = ACTIONS(667), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(667), - [sym__emphasis_open_underscore] = ACTIONS(667), + [sym_link_title] = STATE(2226), + [sym__whitespace] = STATE(2051), + [aux_sym__html_block_1_token1] = ACTIONS(662), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(662), + [anon_sym_DOLLAR] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(662), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_COLON] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_BSLASH] = ACTIONS(667), + [anon_sym_RBRACK] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym__] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(667), + [anon_sym_LT_QMARK] = ACTIONS(667), + [aux_sym__html_block_4_token1] = ACTIONS(667), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(662), + [aux_sym__html_block_6_token1] = ACTIONS(667), + [aux_sym__html_block_6_token2] = ACTIONS(662), + [sym__open_tag_html_block] = ACTIONS(662), + [sym__open_tag_html_block_newline] = ACTIONS(662), + [sym__closing_tag_html_block] = ACTIONS(662), + [sym__closing_tag_html_block_newline] = ACTIONS(662), + [sym_backslash_escape] = ACTIONS(662), + [sym_uri_autolink] = ACTIONS(662), + [sym_email_autolink] = ACTIONS(662), + [sym_entity_reference] = ACTIONS(662), + [sym_numeric_character_reference] = ACTIONS(662), + [sym__whitespace_ge_2] = ACTIONS(675), + [aux_sym__whitespace_token1] = ACTIONS(678), + [sym__word_no_digit] = ACTIONS(662), + [sym__digits] = ACTIONS(662), + [aux_sym__newline_token1] = ACTIONS(662), + [sym__block_close] = ACTIONS(662), + [sym__block_quote_start] = ACTIONS(662), + [sym__indented_chunk_start] = ACTIONS(662), + [sym_atx_h1_marker] = ACTIONS(662), + [sym_atx_h2_marker] = ACTIONS(662), + [sym_atx_h3_marker] = ACTIONS(662), + [sym_atx_h4_marker] = ACTIONS(662), + [sym_atx_h5_marker] = ACTIONS(662), + [sym_atx_h6_marker] = ACTIONS(662), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(662), + [sym__thematic_break] = ACTIONS(662), + [sym__list_marker_minus] = ACTIONS(662), + [sym__list_marker_plus] = ACTIONS(662), + [sym__list_marker_star] = ACTIONS(662), + [sym__list_marker_parenthesis] = ACTIONS(662), + [sym__list_marker_dot] = ACTIONS(662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(662), + [sym__fenced_code_block_start_backtick] = ACTIONS(662), + [sym__fenced_code_block_start_tilde] = ACTIONS(662), + [sym__blank_line_start] = ACTIONS(662), + [sym__code_span_start] = ACTIONS(662), + [sym__emphasis_open_star] = ACTIONS(662), + [sym__emphasis_open_underscore] = ACTIONS(662), + [sym__no_indented_chunk] = ACTIONS(681), }, [120] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(667), - [aux_sym__html_block_1_token1] = ACTIONS(667), - [anon_sym_BANG] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(667), - [anon_sym_POUND] = ACTIONS(667), - [anon_sym_DOLLAR] = ACTIONS(667), - [anon_sym_PERCENT] = ACTIONS(667), - [anon_sym_AMP] = ACTIONS(669), - [anon_sym_SQUOTE] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(667), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_DOT] = ACTIONS(667), - [anon_sym_SLASH] = ACTIONS(667), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_GT] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_BSLASH] = ACTIONS(669), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_CARET] = ACTIONS(667), - [anon_sym__] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_PIPE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_TILDE] = ACTIONS(667), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(669), - [anon_sym_LT_QMARK] = ACTIONS(669), - [aux_sym__html_block_4_token1] = ACTIONS(669), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(667), - [aux_sym__html_block_6_token1] = ACTIONS(669), - [aux_sym__html_block_6_token2] = ACTIONS(667), - [sym__open_tag_html_block] = ACTIONS(667), - [sym__open_tag_html_block_newline] = ACTIONS(667), - [sym__closing_tag_html_block] = ACTIONS(667), - [sym__closing_tag_html_block_newline] = ACTIONS(667), - [sym_backslash_escape] = ACTIONS(667), - [sym_uri_autolink] = ACTIONS(667), - [sym_email_autolink] = ACTIONS(667), - [sym_entity_reference] = ACTIONS(667), - [sym_numeric_character_reference] = ACTIONS(667), - [sym__whitespace_ge_2] = ACTIONS(667), - [aux_sym__whitespace_token1] = ACTIONS(669), - [sym__word_no_digit] = ACTIONS(667), - [sym__digits] = ACTIONS(667), - [aux_sym__newline_token1] = ACTIONS(667), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(667), - [sym__indented_chunk_start] = ACTIONS(667), - [sym_atx_h1_marker] = ACTIONS(667), - [sym_atx_h2_marker] = ACTIONS(667), - [sym_atx_h3_marker] = ACTIONS(667), - [sym_atx_h4_marker] = ACTIONS(667), - [sym_atx_h5_marker] = ACTIONS(667), - [sym_atx_h6_marker] = ACTIONS(667), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(667), - [sym__thematic_break] = ACTIONS(667), - [sym__list_marker_minus] = ACTIONS(667), - [sym__list_marker_plus] = ACTIONS(667), - [sym__list_marker_star] = ACTIONS(667), - [sym__list_marker_parenthesis] = ACTIONS(667), - [sym__list_marker_dot] = ACTIONS(667), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(667), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(667), - [sym__list_marker_star_dont_interrupt] = ACTIONS(667), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(667), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(667), - [sym__fenced_code_block_start_backtick] = ACTIONS(667), - [sym__fenced_code_block_start_tilde] = ACTIONS(667), - [sym__blank_line_start] = ACTIONS(667), - [sym__code_span_start] = ACTIONS(667), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(667), - [sym__emphasis_open_underscore] = ACTIONS(667), + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(683), + [anon_sym_POUND] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PERCENT] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(683), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(683), + [anon_sym__] = ACTIONS(683), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(685), + [anon_sym_LT_QMARK] = ACTIONS(685), + [aux_sym__html_block_4_token1] = ACTIONS(685), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(683), + [aux_sym__html_block_6_token1] = ACTIONS(685), + [aux_sym__html_block_6_token2] = ACTIONS(683), + [sym__open_tag_html_block] = ACTIONS(683), + [sym__open_tag_html_block_newline] = ACTIONS(683), + [sym__closing_tag_html_block] = ACTIONS(683), + [sym__closing_tag_html_block_newline] = ACTIONS(683), + [sym_backslash_escape] = ACTIONS(683), + [sym_uri_autolink] = ACTIONS(683), + [sym_email_autolink] = ACTIONS(683), + [sym_entity_reference] = ACTIONS(683), + [sym_numeric_character_reference] = ACTIONS(683), + [sym__whitespace_ge_2] = ACTIONS(683), + [aux_sym__whitespace_token1] = ACTIONS(685), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [aux_sym__newline_token1] = ACTIONS(683), + [sym__block_close] = ACTIONS(683), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(683), + [sym__indented_chunk_start] = ACTIONS(683), + [sym_atx_h1_marker] = ACTIONS(683), + [sym_atx_h2_marker] = ACTIONS(683), + [sym_atx_h3_marker] = ACTIONS(683), + [sym_atx_h4_marker] = ACTIONS(683), + [sym_atx_h5_marker] = ACTIONS(683), + [sym_atx_h6_marker] = ACTIONS(683), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(683), + [sym__thematic_break] = ACTIONS(683), + [sym__list_marker_minus] = ACTIONS(683), + [sym__list_marker_plus] = ACTIONS(683), + [sym__list_marker_star] = ACTIONS(683), + [sym__list_marker_parenthesis] = ACTIONS(683), + [sym__list_marker_dot] = ACTIONS(683), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_star_dont_interrupt] = ACTIONS(683), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(683), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(683), + [sym__fenced_code_block_start_backtick] = ACTIONS(683), + [sym__fenced_code_block_start_tilde] = ACTIONS(683), + [sym__blank_line_start] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(683), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(683), + [sym__emphasis_open_underscore] = ACTIONS(683), }, [121] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(671), - [aux_sym__html_block_1_token1] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [anon_sym_POUND] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PERCENT] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_SQUOTE] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_COMMA] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_DOT] = ACTIONS(671), - [anon_sym_SLASH] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(671), - [anon_sym_SEMI] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(671), - [anon_sym_QMARK] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(671), - [anon_sym_BSLASH] = ACTIONS(673), - [anon_sym_RBRACK] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(671), - [anon_sym__] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), - [anon_sym_LT_QMARK] = ACTIONS(673), - [aux_sym__html_block_4_token1] = ACTIONS(673), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(671), - [aux_sym__html_block_6_token1] = ACTIONS(673), - [aux_sym__html_block_6_token2] = ACTIONS(671), - [sym__open_tag_html_block] = ACTIONS(671), - [sym__open_tag_html_block_newline] = ACTIONS(671), - [sym__closing_tag_html_block] = ACTIONS(671), - [sym__closing_tag_html_block_newline] = ACTIONS(671), - [sym_backslash_escape] = ACTIONS(671), - [sym_uri_autolink] = ACTIONS(671), - [sym_email_autolink] = ACTIONS(671), - [sym_entity_reference] = ACTIONS(671), - [sym_numeric_character_reference] = ACTIONS(671), - [sym__whitespace_ge_2] = ACTIONS(671), - [aux_sym__whitespace_token1] = ACTIONS(673), - [sym__word_no_digit] = ACTIONS(671), - [sym__digits] = ACTIONS(671), - [aux_sym__newline_token1] = ACTIONS(671), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(671), - [sym__indented_chunk_start] = ACTIONS(671), - [sym_atx_h1_marker] = ACTIONS(671), - [sym_atx_h2_marker] = ACTIONS(671), - [sym_atx_h3_marker] = ACTIONS(671), - [sym_atx_h4_marker] = ACTIONS(671), - [sym_atx_h5_marker] = ACTIONS(671), - [sym_atx_h6_marker] = ACTIONS(671), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(671), - [sym__thematic_break] = ACTIONS(671), - [sym__list_marker_minus] = ACTIONS(671), - [sym__list_marker_plus] = ACTIONS(671), - [sym__list_marker_star] = ACTIONS(671), - [sym__list_marker_parenthesis] = ACTIONS(671), - [sym__list_marker_dot] = ACTIONS(671), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(671), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(671), - [sym__list_marker_star_dont_interrupt] = ACTIONS(671), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(671), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(671), - [sym__fenced_code_block_start_backtick] = ACTIONS(671), - [sym__fenced_code_block_start_tilde] = ACTIONS(671), - [sym__blank_line_start] = ACTIONS(671), - [sym__code_span_start] = ACTIONS(671), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(671), - [sym__emphasis_open_underscore] = ACTIONS(671), + [aux_sym__ignore_matching_tokens] = STATE(227), + [aux_sym__html_block_1_token1] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(683), + [anon_sym_POUND] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PERCENT] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(683), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(683), + [anon_sym__] = ACTIONS(683), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(685), + [anon_sym_LT_QMARK] = ACTIONS(685), + [aux_sym__html_block_4_token1] = ACTIONS(685), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(683), + [aux_sym__html_block_6_token1] = ACTIONS(685), + [aux_sym__html_block_6_token2] = ACTIONS(683), + [sym__open_tag_html_block] = ACTIONS(683), + [sym__open_tag_html_block_newline] = ACTIONS(683), + [sym__closing_tag_html_block] = ACTIONS(683), + [sym__closing_tag_html_block_newline] = ACTIONS(683), + [sym_backslash_escape] = ACTIONS(683), + [sym_uri_autolink] = ACTIONS(683), + [sym_email_autolink] = ACTIONS(683), + [sym_entity_reference] = ACTIONS(683), + [sym_numeric_character_reference] = ACTIONS(683), + [sym__whitespace_ge_2] = ACTIONS(683), + [aux_sym__whitespace_token1] = ACTIONS(685), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [aux_sym__newline_token1] = ACTIONS(683), + [sym__block_close] = ACTIONS(683), + [sym__block_continuation] = ACTIONS(687), + [sym__block_quote_start] = ACTIONS(683), + [sym__indented_chunk_start] = ACTIONS(683), + [sym_atx_h1_marker] = ACTIONS(683), + [sym_atx_h2_marker] = ACTIONS(683), + [sym_atx_h3_marker] = ACTIONS(683), + [sym_atx_h4_marker] = ACTIONS(683), + [sym_atx_h5_marker] = ACTIONS(683), + [sym_atx_h6_marker] = ACTIONS(683), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(683), + [sym__thematic_break] = ACTIONS(683), + [sym__list_marker_minus] = ACTIONS(683), + [sym__list_marker_plus] = ACTIONS(683), + [sym__list_marker_star] = ACTIONS(683), + [sym__list_marker_parenthesis] = ACTIONS(683), + [sym__list_marker_dot] = ACTIONS(683), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_star_dont_interrupt] = ACTIONS(683), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(683), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(683), + [sym__fenced_code_block_start_backtick] = ACTIONS(683), + [sym__fenced_code_block_start_tilde] = ACTIONS(683), + [sym__blank_line_start] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(683), + [sym__last_token_whitespace] = ACTIONS(687), + [sym__emphasis_open_star] = ACTIONS(683), + [sym__emphasis_open_underscore] = ACTIONS(683), }, [122] = { - [sym_link_title] = STATE(2142), - [sym__whitespace] = STATE(2050), - [aux_sym__html_block_1_token1] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PERCENT] = ACTIONS(675), - [anon_sym_AMP] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_COMMA] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DOT] = ACTIONS(675), - [anon_sym_SLASH] = ACTIONS(675), - [anon_sym_COLON] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_QMARK] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(675), - [anon_sym_CARET] = ACTIONS(675), - [anon_sym__] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(680), - [anon_sym_LT_QMARK] = ACTIONS(680), - [aux_sym__html_block_4_token1] = ACTIONS(680), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(675), - [aux_sym__html_block_6_token1] = ACTIONS(680), - [aux_sym__html_block_6_token2] = ACTIONS(675), - [sym__open_tag_html_block] = ACTIONS(675), - [sym__open_tag_html_block_newline] = ACTIONS(675), - [sym__closing_tag_html_block] = ACTIONS(675), - [sym__closing_tag_html_block_newline] = ACTIONS(675), - [sym_backslash_escape] = ACTIONS(675), - [sym_uri_autolink] = ACTIONS(675), - [sym_email_autolink] = ACTIONS(675), - [sym_entity_reference] = ACTIONS(675), - [sym_numeric_character_reference] = ACTIONS(675), - [sym__whitespace_ge_2] = ACTIONS(688), + [aux_sym__ignore_matching_tokens] = STATE(301), + [ts_builtin_sym_end] = ACTIONS(689), + [aux_sym__html_block_1_token1] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_BSLASH] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(689), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(691), + [anon_sym_LT_QMARK] = ACTIONS(691), + [aux_sym__html_block_4_token1] = ACTIONS(691), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(689), + [aux_sym__html_block_6_token1] = ACTIONS(691), + [aux_sym__html_block_6_token2] = ACTIONS(689), + [sym__open_tag_html_block] = ACTIONS(689), + [sym__open_tag_html_block_newline] = ACTIONS(689), + [sym__closing_tag_html_block] = ACTIONS(689), + [sym__closing_tag_html_block_newline] = ACTIONS(689), + [sym_backslash_escape] = ACTIONS(689), + [sym_uri_autolink] = ACTIONS(689), + [sym_email_autolink] = ACTIONS(689), + [sym_entity_reference] = ACTIONS(689), + [sym_numeric_character_reference] = ACTIONS(689), + [sym__whitespace_ge_2] = ACTIONS(689), [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(675), - [sym__digits] = ACTIONS(675), - [aux_sym__newline_token1] = ACTIONS(675), - [sym__block_close] = ACTIONS(675), - [sym__block_quote_start] = ACTIONS(675), - [sym__indented_chunk_start] = ACTIONS(675), - [sym_atx_h1_marker] = ACTIONS(675), - [sym_atx_h2_marker] = ACTIONS(675), - [sym_atx_h3_marker] = ACTIONS(675), - [sym_atx_h4_marker] = ACTIONS(675), - [sym_atx_h5_marker] = ACTIONS(675), - [sym_atx_h6_marker] = ACTIONS(675), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(675), - [sym__thematic_break] = ACTIONS(675), - [sym__list_marker_minus] = ACTIONS(675), - [sym__list_marker_plus] = ACTIONS(675), - [sym__list_marker_star] = ACTIONS(675), - [sym__list_marker_parenthesis] = ACTIONS(675), - [sym__list_marker_dot] = ACTIONS(675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(675), - [sym__fenced_code_block_start_backtick] = ACTIONS(675), - [sym__fenced_code_block_start_tilde] = ACTIONS(675), - [sym__blank_line_start] = ACTIONS(675), - [sym__code_span_start] = ACTIONS(675), - [sym__emphasis_open_star] = ACTIONS(675), - [sym__emphasis_open_underscore] = ACTIONS(675), - [sym__no_indented_chunk] = ACTIONS(694), + [sym__word_no_digit] = ACTIONS(689), + [sym__digits] = ACTIONS(689), + [aux_sym__newline_token1] = ACTIONS(689), + [sym__block_continuation] = ACTIONS(693), + [sym__block_quote_start] = ACTIONS(689), + [sym__indented_chunk_start] = ACTIONS(689), + [sym_atx_h1_marker] = ACTIONS(689), + [sym_atx_h2_marker] = ACTIONS(689), + [sym_atx_h3_marker] = ACTIONS(689), + [sym_atx_h4_marker] = ACTIONS(689), + [sym_atx_h5_marker] = ACTIONS(689), + [sym_atx_h6_marker] = ACTIONS(689), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(689), + [sym__thematic_break] = ACTIONS(689), + [sym__list_marker_minus] = ACTIONS(689), + [sym__list_marker_plus] = ACTIONS(689), + [sym__list_marker_star] = ACTIONS(689), + [sym__list_marker_parenthesis] = ACTIONS(689), + [sym__list_marker_dot] = ACTIONS(689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(689), + [sym__fenced_code_block_start_backtick] = ACTIONS(689), + [sym__fenced_code_block_start_tilde] = ACTIONS(689), + [sym__blank_line_start] = ACTIONS(689), + [sym__code_span_start] = ACTIONS(689), + [sym__last_token_whitespace] = ACTIONS(693), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(689), }, [123] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(527), - [aux_sym__html_block_1_token1] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(527), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), - [anon_sym_BQUOTE] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_QMARK] = ACTIONS(529), - [aux_sym__html_block_4_token1] = ACTIONS(529), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(527), - [aux_sym__html_block_6_token1] = ACTIONS(529), - [aux_sym__html_block_6_token2] = ACTIONS(527), - [sym__open_tag_html_block] = ACTIONS(527), - [sym__open_tag_html_block_newline] = ACTIONS(527), - [sym__closing_tag_html_block] = ACTIONS(527), - [sym__closing_tag_html_block_newline] = ACTIONS(527), - [sym_backslash_escape] = ACTIONS(527), - [sym_uri_autolink] = ACTIONS(527), - [sym_email_autolink] = ACTIONS(527), - [sym_entity_reference] = ACTIONS(527), - [sym_numeric_character_reference] = ACTIONS(527), - [sym__whitespace_ge_2] = ACTIONS(527), - [aux_sym__whitespace_token1] = ACTIONS(529), - [sym__word_no_digit] = ACTIONS(527), - [sym__digits] = ACTIONS(527), - [aux_sym__newline_token1] = ACTIONS(527), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(527), - [sym__indented_chunk_start] = ACTIONS(527), - [sym_atx_h1_marker] = ACTIONS(527), - [sym_atx_h2_marker] = ACTIONS(527), - [sym_atx_h3_marker] = ACTIONS(527), - [sym_atx_h4_marker] = ACTIONS(527), - [sym_atx_h5_marker] = ACTIONS(527), - [sym_atx_h6_marker] = ACTIONS(527), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(527), - [sym__thematic_break] = ACTIONS(527), - [sym__list_marker_minus] = ACTIONS(527), - [sym__list_marker_plus] = ACTIONS(527), - [sym__list_marker_star] = ACTIONS(527), - [sym__list_marker_parenthesis] = ACTIONS(527), - [sym__list_marker_dot] = ACTIONS(527), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_star_dont_interrupt] = ACTIONS(527), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(527), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(527), - [sym__fenced_code_block_start_backtick] = ACTIONS(527), - [sym__fenced_code_block_start_tilde] = ACTIONS(527), - [sym__blank_line_start] = ACTIONS(527), - [sym__code_span_start] = ACTIONS(527), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(527), - [sym__emphasis_open_underscore] = ACTIONS(527), + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + [anon_sym_SQUOTE] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_AT] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_RBRACK] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym__] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(695), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(697), + [anon_sym_LT_QMARK] = ACTIONS(697), + [aux_sym__html_block_4_token1] = ACTIONS(697), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(695), + [aux_sym__html_block_6_token1] = ACTIONS(697), + [aux_sym__html_block_6_token2] = ACTIONS(695), + [sym__open_tag_html_block] = ACTIONS(695), + [sym__open_tag_html_block_newline] = ACTIONS(695), + [sym__closing_tag_html_block] = ACTIONS(695), + [sym__closing_tag_html_block_newline] = ACTIONS(695), + [sym_backslash_escape] = ACTIONS(695), + [sym_uri_autolink] = ACTIONS(695), + [sym_email_autolink] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(695), + [sym_numeric_character_reference] = ACTIONS(695), + [sym__whitespace_ge_2] = ACTIONS(695), + [aux_sym__whitespace_token1] = ACTIONS(697), + [sym__word_no_digit] = ACTIONS(695), + [sym__digits] = ACTIONS(695), + [aux_sym__newline_token1] = ACTIONS(695), + [sym__block_close] = ACTIONS(695), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(695), + [sym__indented_chunk_start] = ACTIONS(695), + [sym_atx_h1_marker] = ACTIONS(695), + [sym_atx_h2_marker] = ACTIONS(695), + [sym_atx_h3_marker] = ACTIONS(695), + [sym_atx_h4_marker] = ACTIONS(695), + [sym_atx_h5_marker] = ACTIONS(695), + [sym_atx_h6_marker] = ACTIONS(695), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(695), + [sym__thematic_break] = ACTIONS(695), + [sym__list_marker_minus] = ACTIONS(695), + [sym__list_marker_plus] = ACTIONS(695), + [sym__list_marker_star] = ACTIONS(695), + [sym__list_marker_parenthesis] = ACTIONS(695), + [sym__list_marker_dot] = ACTIONS(695), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_star_dont_interrupt] = ACTIONS(695), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(695), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(695), + [sym__fenced_code_block_start_backtick] = ACTIONS(695), + [sym__fenced_code_block_start_tilde] = ACTIONS(695), + [sym__blank_line_start] = ACTIONS(695), + [sym__code_span_start] = ACTIONS(695), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(695), + [sym__emphasis_open_underscore] = ACTIONS(695), }, [124] = { - [aux_sym__ignore_matching_tokens] = STATE(308), - [aux_sym__html_block_1_token1] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym__] = ACTIONS(696), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(698), - [anon_sym_LT_QMARK] = ACTIONS(698), - [aux_sym__html_block_4_token1] = ACTIONS(698), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(696), - [aux_sym__html_block_6_token1] = ACTIONS(698), - [aux_sym__html_block_6_token2] = ACTIONS(696), - [sym__open_tag_html_block] = ACTIONS(696), - [sym__open_tag_html_block_newline] = ACTIONS(696), - [sym__closing_tag_html_block] = ACTIONS(696), - [sym__closing_tag_html_block_newline] = ACTIONS(696), - [sym_backslash_escape] = ACTIONS(696), - [sym_uri_autolink] = ACTIONS(696), - [sym_email_autolink] = ACTIONS(696), - [sym_entity_reference] = ACTIONS(696), - [sym_numeric_character_reference] = ACTIONS(696), - [sym__whitespace_ge_2] = ACTIONS(696), - [aux_sym__whitespace_token1] = ACTIONS(698), - [sym__word_no_digit] = ACTIONS(696), - [sym__digits] = ACTIONS(696), - [aux_sym__newline_token1] = ACTIONS(696), - [sym__block_close] = ACTIONS(696), - [sym__block_continuation] = ACTIONS(700), - [sym__block_quote_start] = ACTIONS(696), - [sym__indented_chunk_start] = ACTIONS(696), - [sym_atx_h1_marker] = ACTIONS(696), - [sym_atx_h2_marker] = ACTIONS(696), - [sym_atx_h3_marker] = ACTIONS(696), - [sym_atx_h4_marker] = ACTIONS(696), - [sym_atx_h5_marker] = ACTIONS(696), - [sym_atx_h6_marker] = ACTIONS(696), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(696), - [sym__thematic_break] = ACTIONS(696), - [sym__list_marker_minus] = ACTIONS(696), - [sym__list_marker_plus] = ACTIONS(696), - [sym__list_marker_star] = ACTIONS(696), - [sym__list_marker_parenthesis] = ACTIONS(696), - [sym__list_marker_dot] = ACTIONS(696), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_star_dont_interrupt] = ACTIONS(696), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(696), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(696), - [sym__fenced_code_block_start_backtick] = ACTIONS(696), - [sym__fenced_code_block_start_tilde] = ACTIONS(696), - [sym__blank_line_start] = ACTIONS(696), - [sym__code_span_start] = ACTIONS(696), - [sym__last_token_whitespace] = ACTIONS(700), - [sym__emphasis_open_star] = ACTIONS(696), - [sym__emphasis_open_underscore] = ACTIONS(696), + [aux_sym__ignore_matching_tokens] = STATE(118), + [aux_sym__html_block_1_token1] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + [anon_sym_SQUOTE] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_AT] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_RBRACK] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym__] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(695), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(697), + [anon_sym_LT_QMARK] = ACTIONS(697), + [aux_sym__html_block_4_token1] = ACTIONS(697), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(695), + [aux_sym__html_block_6_token1] = ACTIONS(697), + [aux_sym__html_block_6_token2] = ACTIONS(695), + [sym__open_tag_html_block] = ACTIONS(695), + [sym__open_tag_html_block_newline] = ACTIONS(695), + [sym__closing_tag_html_block] = ACTIONS(695), + [sym__closing_tag_html_block_newline] = ACTIONS(695), + [sym_backslash_escape] = ACTIONS(695), + [sym_uri_autolink] = ACTIONS(695), + [sym_email_autolink] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(695), + [sym_numeric_character_reference] = ACTIONS(695), + [sym__whitespace_ge_2] = ACTIONS(695), + [aux_sym__whitespace_token1] = ACTIONS(697), + [sym__word_no_digit] = ACTIONS(695), + [sym__digits] = ACTIONS(695), + [aux_sym__newline_token1] = ACTIONS(695), + [sym__block_close] = ACTIONS(695), + [sym__block_continuation] = ACTIONS(699), + [sym__block_quote_start] = ACTIONS(695), + [sym__indented_chunk_start] = ACTIONS(695), + [sym_atx_h1_marker] = ACTIONS(695), + [sym_atx_h2_marker] = ACTIONS(695), + [sym_atx_h3_marker] = ACTIONS(695), + [sym_atx_h4_marker] = ACTIONS(695), + [sym_atx_h5_marker] = ACTIONS(695), + [sym_atx_h6_marker] = ACTIONS(695), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(695), + [sym__thematic_break] = ACTIONS(695), + [sym__list_marker_minus] = ACTIONS(695), + [sym__list_marker_plus] = ACTIONS(695), + [sym__list_marker_star] = ACTIONS(695), + [sym__list_marker_parenthesis] = ACTIONS(695), + [sym__list_marker_dot] = ACTIONS(695), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_star_dont_interrupt] = ACTIONS(695), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(695), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(695), + [sym__fenced_code_block_start_backtick] = ACTIONS(695), + [sym__fenced_code_block_start_tilde] = ACTIONS(695), + [sym__blank_line_start] = ACTIONS(695), + [sym__code_span_start] = ACTIONS(695), + [sym__last_token_whitespace] = ACTIONS(699), + [sym__emphasis_open_star] = ACTIONS(695), + [sym__emphasis_open_underscore] = ACTIONS(695), }, [125] = { - [sym_link_title] = STATE(2221), - [sym__whitespace] = STATE(2059), - [ts_builtin_sym_end] = ACTIONS(675), - [aux_sym__html_block_1_token1] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_PERCENT] = ACTIONS(675), - [anon_sym_AMP] = ACTIONS(680), - [anon_sym_SQUOTE] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(675), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_COMMA] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DOT] = ACTIONS(675), - [anon_sym_SLASH] = ACTIONS(675), - [anon_sym_COLON] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(680), - [anon_sym_EQ] = ACTIONS(675), - [anon_sym_GT] = ACTIONS(675), - [anon_sym_QMARK] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_LBRACK] = ACTIONS(675), - [anon_sym_BSLASH] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(675), - [anon_sym_CARET] = ACTIONS(675), - [anon_sym__] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_TILDE] = ACTIONS(675), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(680), - [anon_sym_LT_QMARK] = ACTIONS(680), - [aux_sym__html_block_4_token1] = ACTIONS(680), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(675), - [aux_sym__html_block_6_token1] = ACTIONS(680), - [aux_sym__html_block_6_token2] = ACTIONS(675), - [sym__open_tag_html_block] = ACTIONS(675), - [sym__open_tag_html_block_newline] = ACTIONS(675), - [sym__closing_tag_html_block] = ACTIONS(675), - [sym__closing_tag_html_block_newline] = ACTIONS(675), - [sym_backslash_escape] = ACTIONS(675), - [sym_uri_autolink] = ACTIONS(675), - [sym_email_autolink] = ACTIONS(675), - [sym_entity_reference] = ACTIONS(675), - [sym_numeric_character_reference] = ACTIONS(675), - [sym__whitespace_ge_2] = ACTIONS(688), - [aux_sym__whitespace_token1] = ACTIONS(691), - [sym__word_no_digit] = ACTIONS(675), - [sym__digits] = ACTIONS(675), - [aux_sym__newline_token1] = ACTIONS(675), - [sym__block_quote_start] = ACTIONS(675), - [sym__indented_chunk_start] = ACTIONS(675), - [sym_atx_h1_marker] = ACTIONS(675), - [sym_atx_h2_marker] = ACTIONS(675), - [sym_atx_h3_marker] = ACTIONS(675), - [sym_atx_h4_marker] = ACTIONS(675), - [sym_atx_h5_marker] = ACTIONS(675), - [sym_atx_h6_marker] = ACTIONS(675), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(675), - [sym__thematic_break] = ACTIONS(675), - [sym__list_marker_minus] = ACTIONS(675), - [sym__list_marker_plus] = ACTIONS(675), - [sym__list_marker_star] = ACTIONS(675), - [sym__list_marker_parenthesis] = ACTIONS(675), - [sym__list_marker_dot] = ACTIONS(675), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(675), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(675), - [sym__list_marker_star_dont_interrupt] = ACTIONS(675), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(675), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(675), - [sym__fenced_code_block_start_backtick] = ACTIONS(675), - [sym__fenced_code_block_start_tilde] = ACTIONS(675), - [sym__blank_line_start] = ACTIONS(675), - [sym__code_span_start] = ACTIONS(675), - [sym__emphasis_open_star] = ACTIONS(675), - [sym__emphasis_open_underscore] = ACTIONS(675), - [sym__no_indented_chunk] = ACTIONS(702), + [sym_shortcut_link] = STATE(249), + [sym_full_reference_link] = STATE(249), + [sym_collapsed_reference_link] = STATE(249), + [sym_inline_link] = STATE(249), + [sym_image] = STATE(249), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym__soft_line_break] = STATE(249), + [sym_hard_line_break] = STATE(249), + [sym_html_tag] = STATE(249), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(249), + [sym__word] = STATE(249), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore] = STATE(249), + [aux_sym__inline_no_underscore] = STATE(249), + [sym__text_inline_no_underscore] = STATE(249), + [sym__emphasis_star] = STATE(744), + [sym__strong_emphasis_star] = STATE(249), + [sym__emphasis_underscore] = STATE(744), + [sym__strong_emphasis_underscore] = STATE(249), + [sym__code_span] = STATE(249), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_BSLASH] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(640), + [anon_sym_LT_QMARK] = ACTIONS(642), + [aux_sym__html_block_4_token1] = ACTIONS(644), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(646), + [sym_backslash_escape] = ACTIONS(648), + [sym_uri_autolink] = ACTIONS(648), + [sym_email_autolink] = ACTIONS(648), + [sym_entity_reference] = ACTIONS(648), + [sym_numeric_character_reference] = ACTIONS(648), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(648), + [sym__digits] = ACTIONS(648), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(654), + [sym__emphasis_open_star] = ACTIONS(656), + [sym__emphasis_open_underscore] = ACTIONS(658), + [sym__emphasis_close_underscore] = ACTIONS(701), }, [126] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(704), - [aux_sym__html_block_1_token1] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_SQUOTE] = ACTIONS(704), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(706), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_BSLASH] = ACTIONS(706), - [anon_sym_RBRACK] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym__] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_TILDE] = ACTIONS(704), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(706), - [anon_sym_LT_QMARK] = ACTIONS(706), - [aux_sym__html_block_4_token1] = ACTIONS(706), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(704), - [aux_sym__html_block_6_token1] = ACTIONS(706), - [aux_sym__html_block_6_token2] = ACTIONS(704), - [sym__open_tag_html_block] = ACTIONS(704), - [sym__open_tag_html_block_newline] = ACTIONS(704), - [sym__closing_tag_html_block] = ACTIONS(704), - [sym__closing_tag_html_block_newline] = ACTIONS(704), - [sym_backslash_escape] = ACTIONS(704), - [sym_uri_autolink] = ACTIONS(704), - [sym_email_autolink] = ACTIONS(704), - [sym_entity_reference] = ACTIONS(704), - [sym_numeric_character_reference] = ACTIONS(704), - [sym__whitespace_ge_2] = ACTIONS(704), - [aux_sym__whitespace_token1] = ACTIONS(706), - [sym__word_no_digit] = ACTIONS(704), - [sym__digits] = ACTIONS(704), - [aux_sym__newline_token1] = ACTIONS(704), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(704), - [sym__indented_chunk_start] = ACTIONS(704), - [sym_atx_h1_marker] = ACTIONS(704), - [sym_atx_h2_marker] = ACTIONS(704), - [sym_atx_h3_marker] = ACTIONS(704), - [sym_atx_h4_marker] = ACTIONS(704), - [sym_atx_h5_marker] = ACTIONS(704), - [sym_atx_h6_marker] = ACTIONS(704), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(704), - [sym__thematic_break] = ACTIONS(704), - [sym__list_marker_minus] = ACTIONS(704), - [sym__list_marker_plus] = ACTIONS(704), - [sym__list_marker_star] = ACTIONS(704), - [sym__list_marker_parenthesis] = ACTIONS(704), - [sym__list_marker_dot] = ACTIONS(704), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(704), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(704), - [sym__list_marker_star_dont_interrupt] = ACTIONS(704), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(704), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(704), - [sym__fenced_code_block_start_backtick] = ACTIONS(704), - [sym__fenced_code_block_start_tilde] = ACTIONS(704), - [sym__blank_line_start] = ACTIONS(704), - [sym__code_span_start] = ACTIONS(704), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(704), - [sym__emphasis_open_underscore] = ACTIONS(704), + [sym_link_title] = STATE(2225), + [sym__whitespace] = STATE(2067), + [aux_sym__html_block_1_token1] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PERCENT] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(708), + [anon_sym_SQUOTE] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(703), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_BSLASH] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(703), + [anon_sym_CARET] = ACTIONS(703), + [anon_sym__] = ACTIONS(703), + [anon_sym_BQUOTE] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(708), + [anon_sym_LT_QMARK] = ACTIONS(708), + [aux_sym__html_block_4_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(703), + [aux_sym__html_block_6_token1] = ACTIONS(708), + [aux_sym__html_block_6_token2] = ACTIONS(703), + [sym__open_tag_html_block] = ACTIONS(703), + [sym__open_tag_html_block_newline] = ACTIONS(703), + [sym__closing_tag_html_block] = ACTIONS(703), + [sym__closing_tag_html_block_newline] = ACTIONS(703), + [sym_backslash_escape] = ACTIONS(703), + [sym_uri_autolink] = ACTIONS(703), + [sym_email_autolink] = ACTIONS(703), + [sym_entity_reference] = ACTIONS(703), + [sym_numeric_character_reference] = ACTIONS(703), + [sym__whitespace_ge_2] = ACTIONS(716), + [aux_sym__whitespace_token1] = ACTIONS(719), + [sym__word_no_digit] = ACTIONS(703), + [sym__digits] = ACTIONS(703), + [aux_sym__newline_token1] = ACTIONS(703), + [sym__block_close] = ACTIONS(703), + [sym__block_quote_start] = ACTIONS(703), + [sym__indented_chunk_start] = ACTIONS(703), + [sym_atx_h1_marker] = ACTIONS(703), + [sym_atx_h2_marker] = ACTIONS(703), + [sym_atx_h3_marker] = ACTIONS(703), + [sym_atx_h4_marker] = ACTIONS(703), + [sym_atx_h5_marker] = ACTIONS(703), + [sym_atx_h6_marker] = ACTIONS(703), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(703), + [sym__thematic_break] = ACTIONS(703), + [sym__list_marker_minus] = ACTIONS(703), + [sym__list_marker_plus] = ACTIONS(703), + [sym__list_marker_star] = ACTIONS(703), + [sym__list_marker_parenthesis] = ACTIONS(703), + [sym__list_marker_dot] = ACTIONS(703), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(703), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(703), + [sym__list_marker_star_dont_interrupt] = ACTIONS(703), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(703), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(703), + [sym__fenced_code_block_start_backtick] = ACTIONS(703), + [sym__fenced_code_block_start_tilde] = ACTIONS(703), + [sym__blank_line_start] = ACTIONS(703), + [sym__code_span_start] = ACTIONS(703), + [sym__emphasis_open_star] = ACTIONS(703), + [sym__emphasis_open_underscore] = ACTIONS(703), + [sym__no_indented_chunk] = ACTIONS(722), }, [127] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(708), - [aux_sym__html_block_1_token1] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(708), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_SQUOTE] = ACTIONS(708), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_RPAREN] = ACTIONS(708), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_DOT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(710), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_GT] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(708), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_BSLASH] = ACTIONS(710), - [anon_sym_RBRACK] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(708), - [anon_sym__] = ACTIONS(708), - [anon_sym_BQUOTE] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(710), - [anon_sym_LT_QMARK] = ACTIONS(710), - [aux_sym__html_block_4_token1] = ACTIONS(710), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(708), - [aux_sym__html_block_6_token1] = ACTIONS(710), - [aux_sym__html_block_6_token2] = ACTIONS(708), - [sym__open_tag_html_block] = ACTIONS(708), - [sym__open_tag_html_block_newline] = ACTIONS(708), - [sym__closing_tag_html_block] = ACTIONS(708), - [sym__closing_tag_html_block_newline] = ACTIONS(708), - [sym_backslash_escape] = ACTIONS(708), - [sym_uri_autolink] = ACTIONS(708), - [sym_email_autolink] = ACTIONS(708), - [sym_entity_reference] = ACTIONS(708), - [sym_numeric_character_reference] = ACTIONS(708), - [sym__whitespace_ge_2] = ACTIONS(708), - [aux_sym__whitespace_token1] = ACTIONS(710), - [sym__word_no_digit] = ACTIONS(708), - [sym__digits] = ACTIONS(708), - [aux_sym__newline_token1] = ACTIONS(708), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(708), - [sym__indented_chunk_start] = ACTIONS(708), - [sym_atx_h1_marker] = ACTIONS(708), - [sym_atx_h2_marker] = ACTIONS(708), - [sym_atx_h3_marker] = ACTIONS(708), - [sym_atx_h4_marker] = ACTIONS(708), - [sym_atx_h5_marker] = ACTIONS(708), - [sym_atx_h6_marker] = ACTIONS(708), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(708), - [sym__thematic_break] = ACTIONS(708), - [sym__list_marker_minus] = ACTIONS(708), - [sym__list_marker_plus] = ACTIONS(708), - [sym__list_marker_star] = ACTIONS(708), - [sym__list_marker_parenthesis] = ACTIONS(708), - [sym__list_marker_dot] = ACTIONS(708), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(708), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(708), - [sym__list_marker_star_dont_interrupt] = ACTIONS(708), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(708), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(708), - [sym__fenced_code_block_start_backtick] = ACTIONS(708), - [sym__fenced_code_block_start_tilde] = ACTIONS(708), - [sym__blank_line_start] = ACTIONS(708), - [sym__code_span_start] = ACTIONS(708), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(708), - [sym__emphasis_open_underscore] = ACTIONS(708), - }, - [128] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym__] = ACTIONS(696), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(698), - [anon_sym_LT_QMARK] = ACTIONS(698), - [aux_sym__html_block_4_token1] = ACTIONS(698), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(696), - [aux_sym__html_block_6_token1] = ACTIONS(698), - [aux_sym__html_block_6_token2] = ACTIONS(696), - [sym__open_tag_html_block] = ACTIONS(696), - [sym__open_tag_html_block_newline] = ACTIONS(696), - [sym__closing_tag_html_block] = ACTIONS(696), - [sym__closing_tag_html_block_newline] = ACTIONS(696), - [sym_backslash_escape] = ACTIONS(696), - [sym_uri_autolink] = ACTIONS(696), - [sym_email_autolink] = ACTIONS(696), - [sym_entity_reference] = ACTIONS(696), - [sym_numeric_character_reference] = ACTIONS(696), - [sym__whitespace_ge_2] = ACTIONS(696), - [aux_sym__whitespace_token1] = ACTIONS(698), - [sym__word_no_digit] = ACTIONS(696), - [sym__digits] = ACTIONS(696), - [aux_sym__newline_token1] = ACTIONS(696), - [sym__block_close] = ACTIONS(696), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(696), - [sym__indented_chunk_start] = ACTIONS(696), - [sym_atx_h1_marker] = ACTIONS(696), - [sym_atx_h2_marker] = ACTIONS(696), - [sym_atx_h3_marker] = ACTIONS(696), - [sym_atx_h4_marker] = ACTIONS(696), - [sym_atx_h5_marker] = ACTIONS(696), - [sym_atx_h6_marker] = ACTIONS(696), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(696), - [sym__thematic_break] = ACTIONS(696), - [sym__list_marker_minus] = ACTIONS(696), - [sym__list_marker_plus] = ACTIONS(696), - [sym__list_marker_star] = ACTIONS(696), - [sym__list_marker_parenthesis] = ACTIONS(696), - [sym__list_marker_dot] = ACTIONS(696), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_star_dont_interrupt] = ACTIONS(696), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(696), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(696), - [sym__fenced_code_block_start_backtick] = ACTIONS(696), - [sym__fenced_code_block_start_tilde] = ACTIONS(696), - [sym__blank_line_start] = ACTIONS(696), - [sym__code_span_start] = ACTIONS(696), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(696), - [sym__emphasis_open_underscore] = ACTIONS(696), - }, - [129] = { - [aux_sym__ignore_matching_tokens] = STATE(307), - [aux_sym__html_block_1_token1] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_SQUOTE] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(714), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym__] = ACTIONS(712), - [anon_sym_BQUOTE] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(714), - [anon_sym_LT_QMARK] = ACTIONS(714), - [aux_sym__html_block_4_token1] = ACTIONS(714), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(712), - [aux_sym__html_block_6_token1] = ACTIONS(714), - [aux_sym__html_block_6_token2] = ACTIONS(712), - [sym__open_tag_html_block] = ACTIONS(712), - [sym__open_tag_html_block_newline] = ACTIONS(712), - [sym__closing_tag_html_block] = ACTIONS(712), - [sym__closing_tag_html_block_newline] = ACTIONS(712), - [sym_backslash_escape] = ACTIONS(712), - [sym_uri_autolink] = ACTIONS(712), - [sym_email_autolink] = ACTIONS(712), - [sym_entity_reference] = ACTIONS(712), - [sym_numeric_character_reference] = ACTIONS(712), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(712), - [sym__digits] = ACTIONS(712), - [aux_sym__newline_token1] = ACTIONS(712), - [sym__block_close] = ACTIONS(712), - [sym__block_continuation] = ACTIONS(716), - [sym__block_quote_start] = ACTIONS(712), - [sym__indented_chunk_start] = ACTIONS(712), - [sym_atx_h1_marker] = ACTIONS(712), - [sym_atx_h2_marker] = ACTIONS(712), - [sym_atx_h3_marker] = ACTIONS(712), - [sym_atx_h4_marker] = ACTIONS(712), - [sym_atx_h5_marker] = ACTIONS(712), - [sym_atx_h6_marker] = ACTIONS(712), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(712), - [sym__thematic_break] = ACTIONS(712), - [sym__list_marker_minus] = ACTIONS(712), - [sym__list_marker_plus] = ACTIONS(712), - [sym__list_marker_star] = ACTIONS(712), - [sym__list_marker_parenthesis] = ACTIONS(712), - [sym__list_marker_dot] = ACTIONS(712), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_star_dont_interrupt] = ACTIONS(712), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(712), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(712), - [sym__fenced_code_block_start_backtick] = ACTIONS(712), - [sym__fenced_code_block_start_tilde] = ACTIONS(712), - [sym__blank_line_start] = ACTIONS(712), - [sym__code_span_start] = ACTIONS(712), - [sym__last_token_whitespace] = ACTIONS(716), - [sym__emphasis_open_star] = ACTIONS(712), - [sym__emphasis_open_underscore] = ACTIONS(712), - }, - [130] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_SQUOTE] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(714), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym__] = ACTIONS(712), - [anon_sym_BQUOTE] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(714), - [anon_sym_LT_QMARK] = ACTIONS(714), - [aux_sym__html_block_4_token1] = ACTIONS(714), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(712), - [aux_sym__html_block_6_token1] = ACTIONS(714), - [aux_sym__html_block_6_token2] = ACTIONS(712), - [sym__open_tag_html_block] = ACTIONS(712), - [sym__open_tag_html_block_newline] = ACTIONS(712), - [sym__closing_tag_html_block] = ACTIONS(712), - [sym__closing_tag_html_block_newline] = ACTIONS(712), - [sym_backslash_escape] = ACTIONS(712), - [sym_uri_autolink] = ACTIONS(712), - [sym_email_autolink] = ACTIONS(712), - [sym_entity_reference] = ACTIONS(712), - [sym_numeric_character_reference] = ACTIONS(712), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(712), - [sym__digits] = ACTIONS(712), - [aux_sym__newline_token1] = ACTIONS(712), - [sym__block_close] = ACTIONS(712), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(712), - [sym__indented_chunk_start] = ACTIONS(712), - [sym_atx_h1_marker] = ACTIONS(712), - [sym_atx_h2_marker] = ACTIONS(712), - [sym_atx_h3_marker] = ACTIONS(712), - [sym_atx_h4_marker] = ACTIONS(712), - [sym_atx_h5_marker] = ACTIONS(712), - [sym_atx_h6_marker] = ACTIONS(712), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(712), - [sym__thematic_break] = ACTIONS(712), - [sym__list_marker_minus] = ACTIONS(712), - [sym__list_marker_plus] = ACTIONS(712), - [sym__list_marker_star] = ACTIONS(712), - [sym__list_marker_parenthesis] = ACTIONS(712), - [sym__list_marker_dot] = ACTIONS(712), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_star_dont_interrupt] = ACTIONS(712), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(712), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(712), - [sym__fenced_code_block_start_backtick] = ACTIONS(712), - [sym__fenced_code_block_start_tilde] = ACTIONS(712), - [sym__blank_line_start] = ACTIONS(712), - [sym__code_span_start] = ACTIONS(712), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(712), - [sym__emphasis_open_underscore] = ACTIONS(712), - }, - [131] = { - [aux_sym__ignore_matching_tokens] = STATE(305), - [aux_sym__html_block_1_token1] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_DOT] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_BSLASH] = ACTIONS(720), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym__] = ACTIONS(718), - [anon_sym_BQUOTE] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(720), - [anon_sym_LT_QMARK] = ACTIONS(720), - [aux_sym__html_block_4_token1] = ACTIONS(720), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(718), - [aux_sym__html_block_6_token1] = ACTIONS(720), - [aux_sym__html_block_6_token2] = ACTIONS(718), - [sym__open_tag_html_block] = ACTIONS(718), - [sym__open_tag_html_block_newline] = ACTIONS(718), - [sym__closing_tag_html_block] = ACTIONS(718), - [sym__closing_tag_html_block_newline] = ACTIONS(718), - [sym_backslash_escape] = ACTIONS(718), - [sym_uri_autolink] = ACTIONS(718), - [sym_email_autolink] = ACTIONS(718), - [sym_entity_reference] = ACTIONS(718), - [sym_numeric_character_reference] = ACTIONS(718), - [sym__whitespace_ge_2] = ACTIONS(718), - [aux_sym__whitespace_token1] = ACTIONS(720), - [sym__word_no_digit] = ACTIONS(718), - [sym__digits] = ACTIONS(718), - [aux_sym__newline_token1] = ACTIONS(718), - [sym__block_close] = ACTIONS(718), - [sym__block_continuation] = ACTIONS(722), - [sym__block_quote_start] = ACTIONS(718), - [sym__indented_chunk_start] = ACTIONS(718), - [sym_atx_h1_marker] = ACTIONS(718), - [sym_atx_h2_marker] = ACTIONS(718), - [sym_atx_h3_marker] = ACTIONS(718), - [sym_atx_h4_marker] = ACTIONS(718), - [sym_atx_h5_marker] = ACTIONS(718), - [sym_atx_h6_marker] = ACTIONS(718), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(718), - [sym__thematic_break] = ACTIONS(718), - [sym__list_marker_minus] = ACTIONS(718), - [sym__list_marker_plus] = ACTIONS(718), - [sym__list_marker_star] = ACTIONS(718), - [sym__list_marker_parenthesis] = ACTIONS(718), - [sym__list_marker_dot] = ACTIONS(718), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_star_dont_interrupt] = ACTIONS(718), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(718), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(718), - [sym__fenced_code_block_start_backtick] = ACTIONS(718), - [sym__fenced_code_block_start_tilde] = ACTIONS(718), - [sym__blank_line_start] = ACTIONS(718), - [sym__code_span_start] = ACTIONS(718), - [sym__last_token_whitespace] = ACTIONS(722), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(718), - }, - [132] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_DOT] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_BSLASH] = ACTIONS(720), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym__] = ACTIONS(718), - [anon_sym_BQUOTE] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(720), - [anon_sym_LT_QMARK] = ACTIONS(720), - [aux_sym__html_block_4_token1] = ACTIONS(720), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(718), - [aux_sym__html_block_6_token1] = ACTIONS(720), - [aux_sym__html_block_6_token2] = ACTIONS(718), - [sym__open_tag_html_block] = ACTIONS(718), - [sym__open_tag_html_block_newline] = ACTIONS(718), - [sym__closing_tag_html_block] = ACTIONS(718), - [sym__closing_tag_html_block_newline] = ACTIONS(718), - [sym_backslash_escape] = ACTIONS(718), - [sym_uri_autolink] = ACTIONS(718), - [sym_email_autolink] = ACTIONS(718), - [sym_entity_reference] = ACTIONS(718), - [sym_numeric_character_reference] = ACTIONS(718), - [sym__whitespace_ge_2] = ACTIONS(718), - [aux_sym__whitespace_token1] = ACTIONS(720), - [sym__word_no_digit] = ACTIONS(718), - [sym__digits] = ACTIONS(718), - [aux_sym__newline_token1] = ACTIONS(718), - [sym__block_close] = ACTIONS(718), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(718), - [sym__indented_chunk_start] = ACTIONS(718), - [sym_atx_h1_marker] = ACTIONS(718), - [sym_atx_h2_marker] = ACTIONS(718), - [sym_atx_h3_marker] = ACTIONS(718), - [sym_atx_h4_marker] = ACTIONS(718), - [sym_atx_h5_marker] = ACTIONS(718), - [sym_atx_h6_marker] = ACTIONS(718), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(718), - [sym__thematic_break] = ACTIONS(718), - [sym__list_marker_minus] = ACTIONS(718), - [sym__list_marker_plus] = ACTIONS(718), - [sym__list_marker_star] = ACTIONS(718), - [sym__list_marker_parenthesis] = ACTIONS(718), - [sym__list_marker_dot] = ACTIONS(718), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_star_dont_interrupt] = ACTIONS(718), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(718), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(718), - [sym__fenced_code_block_start_backtick] = ACTIONS(718), - [sym__fenced_code_block_start_tilde] = ACTIONS(718), - [sym__blank_line_start] = ACTIONS(718), - [sym__code_span_start] = ACTIONS(718), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(718), - }, - [133] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(724), + [aux_sym__ignore_matching_tokens] = STATE(225), [aux_sym__html_block_1_token1] = ACTIONS(724), [anon_sym_BANG] = ACTIONS(724), [anon_sym_DQUOTE] = ACTIONS(724), @@ -44076,7 +43581,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(724), [sym__digits] = ACTIONS(724), [aux_sym__newline_token1] = ACTIONS(724), - [sym__block_continuation] = ACTIONS(177), + [sym__block_close] = ACTIONS(724), + [sym__block_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(724), [sym__indented_chunk_start] = ACTIONS(724), [sym_atx_h1_marker] = ACTIONS(724), @@ -44101,13 +43607,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(724), [sym__blank_line_start] = ACTIONS(724), [sym__code_span_start] = ACTIONS(724), - [sym__last_token_whitespace] = ACTIONS(177), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(724), [sym__emphasis_open_underscore] = ACTIONS(724), }, - [134] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(728), + [128] = { + [aux_sym__ignore_matching_tokens] = STATE(225), [aux_sym__html_block_1_token1] = ACTIONS(728), [anon_sym_BANG] = ACTIONS(728), [anon_sym_DQUOTE] = ACTIONS(728), @@ -44161,7 +43666,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(728), [sym__digits] = ACTIONS(728), [aux_sym__newline_token1] = ACTIONS(728), - [sym__block_continuation] = ACTIONS(177), + [sym__block_close] = ACTIONS(728), + [sym__block_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(728), [sym__indented_chunk_start] = ACTIONS(728), [sym_atx_h1_marker] = ACTIONS(728), @@ -44186,12 +43692,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(728), [sym__blank_line_start] = ACTIONS(728), [sym__code_span_start] = ACTIONS(728), - [sym__last_token_whitespace] = ACTIONS(177), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(728), [sym__emphasis_open_underscore] = ACTIONS(728), }, - [135] = { - [aux_sym__ignore_matching_tokens] = STATE(299), + [129] = { + [aux_sym__ignore_matching_tokens] = STATE(225), [aux_sym__html_block_1_token1] = ACTIONS(732), [anon_sym_BANG] = ACTIONS(732), [anon_sym_DQUOTE] = ACTIONS(732), @@ -44246,7 +43752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(732), [aux_sym__newline_token1] = ACTIONS(732), [sym__block_close] = ACTIONS(732), - [sym__block_continuation] = ACTIONS(736), + [sym__block_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(732), [sym__indented_chunk_start] = ACTIONS(732), [sym_atx_h1_marker] = ACTIONS(732), @@ -44271,182 +43777,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(732), [sym__blank_line_start] = ACTIONS(732), [sym__code_span_start] = ACTIONS(732), - [sym__last_token_whitespace] = ACTIONS(736), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(732), [sym__emphasis_open_underscore] = ACTIONS(732), }, - [136] = { - [aux_sym__ignore_matching_tokens] = STATE(198), - [ts_builtin_sym_end] = ACTIONS(728), - [aux_sym__html_block_1_token1] = ACTIONS(728), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_PERCENT] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_COLON] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(730), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(728), - [anon_sym_AT] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_BSLASH] = ACTIONS(730), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym__] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(730), - [anon_sym_LT_QMARK] = ACTIONS(730), - [aux_sym__html_block_4_token1] = ACTIONS(730), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(728), - [aux_sym__html_block_6_token1] = ACTIONS(730), - [aux_sym__html_block_6_token2] = ACTIONS(728), - [sym__open_tag_html_block] = ACTIONS(728), - [sym__open_tag_html_block_newline] = ACTIONS(728), - [sym__closing_tag_html_block] = ACTIONS(728), - [sym__closing_tag_html_block_newline] = ACTIONS(728), - [sym_backslash_escape] = ACTIONS(728), - [sym_uri_autolink] = ACTIONS(728), - [sym_email_autolink] = ACTIONS(728), - [sym_entity_reference] = ACTIONS(728), - [sym_numeric_character_reference] = ACTIONS(728), - [sym__whitespace_ge_2] = ACTIONS(728), - [aux_sym__whitespace_token1] = ACTIONS(730), - [sym__word_no_digit] = ACTIONS(728), - [sym__digits] = ACTIONS(728), - [aux_sym__newline_token1] = ACTIONS(728), - [sym__block_continuation] = ACTIONS(738), - [sym__block_quote_start] = ACTIONS(728), - [sym__indented_chunk_start] = ACTIONS(728), - [sym_atx_h1_marker] = ACTIONS(728), - [sym_atx_h2_marker] = ACTIONS(728), - [sym_atx_h3_marker] = ACTIONS(728), - [sym_atx_h4_marker] = ACTIONS(728), - [sym_atx_h5_marker] = ACTIONS(728), - [sym_atx_h6_marker] = ACTIONS(728), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(728), - [sym__thematic_break] = ACTIONS(728), - [sym__list_marker_minus] = ACTIONS(728), - [sym__list_marker_plus] = ACTIONS(728), - [sym__list_marker_star] = ACTIONS(728), - [sym__list_marker_parenthesis] = ACTIONS(728), - [sym__list_marker_dot] = ACTIONS(728), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(728), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(728), - [sym__list_marker_star_dont_interrupt] = ACTIONS(728), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(728), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(728), - [sym__fenced_code_block_start_backtick] = ACTIONS(728), - [sym__fenced_code_block_start_tilde] = ACTIONS(728), - [sym__blank_line_start] = ACTIONS(728), - [sym__code_span_start] = ACTIONS(728), - [sym__last_token_whitespace] = ACTIONS(738), - [sym__emphasis_open_star] = ACTIONS(728), - [sym__emphasis_open_underscore] = ACTIONS(728), - }, - [137] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_PERCENT] = ACTIONS(732), - [anon_sym_AMP] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_COMMA] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_COLON] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_EQ] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_BSLASH] = ACTIONS(734), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [anon_sym__] = ACTIONS(732), - [anon_sym_BQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(734), - [anon_sym_LT_QMARK] = ACTIONS(734), - [aux_sym__html_block_4_token1] = ACTIONS(734), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(732), - [aux_sym__html_block_6_token1] = ACTIONS(734), - [aux_sym__html_block_6_token2] = ACTIONS(732), - [sym__open_tag_html_block] = ACTIONS(732), - [sym__open_tag_html_block_newline] = ACTIONS(732), - [sym__closing_tag_html_block] = ACTIONS(732), - [sym__closing_tag_html_block_newline] = ACTIONS(732), - [sym_backslash_escape] = ACTIONS(732), - [sym_uri_autolink] = ACTIONS(732), - [sym_email_autolink] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(732), - [sym_numeric_character_reference] = ACTIONS(732), - [sym__whitespace_ge_2] = ACTIONS(732), - [aux_sym__whitespace_token1] = ACTIONS(734), - [sym__word_no_digit] = ACTIONS(732), - [sym__digits] = ACTIONS(732), - [aux_sym__newline_token1] = ACTIONS(732), - [sym__block_close] = ACTIONS(732), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(732), - [sym__indented_chunk_start] = ACTIONS(732), - [sym_atx_h1_marker] = ACTIONS(732), - [sym_atx_h2_marker] = ACTIONS(732), - [sym_atx_h3_marker] = ACTIONS(732), - [sym_atx_h4_marker] = ACTIONS(732), - [sym_atx_h5_marker] = ACTIONS(732), - [sym_atx_h6_marker] = ACTIONS(732), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(732), - [sym__thematic_break] = ACTIONS(732), - [sym__list_marker_minus] = ACTIONS(732), - [sym__list_marker_plus] = ACTIONS(732), - [sym__list_marker_star] = ACTIONS(732), - [sym__list_marker_parenthesis] = ACTIONS(732), - [sym__list_marker_dot] = ACTIONS(732), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(732), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(732), - [sym__list_marker_star_dont_interrupt] = ACTIONS(732), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(732), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(732), - [sym__fenced_code_block_start_backtick] = ACTIONS(732), - [sym__fenced_code_block_start_tilde] = ACTIONS(732), - [sym__blank_line_start] = ACTIONS(732), - [sym__code_span_start] = ACTIONS(732), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(732), - [sym__emphasis_open_underscore] = ACTIONS(732), + [130] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_POUND] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_PERCENT] = ACTIONS(736), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_COMMA] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_COLON] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_QMARK] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_BSLASH] = ACTIONS(738), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym__] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_TILDE] = ACTIONS(736), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(738), + [anon_sym_LT_QMARK] = ACTIONS(738), + [aux_sym__html_block_4_token1] = ACTIONS(738), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(736), + [aux_sym__html_block_6_token1] = ACTIONS(738), + [aux_sym__html_block_6_token2] = ACTIONS(736), + [sym__open_tag_html_block] = ACTIONS(736), + [sym__open_tag_html_block_newline] = ACTIONS(736), + [sym__closing_tag_html_block] = ACTIONS(736), + [sym__closing_tag_html_block_newline] = ACTIONS(736), + [sym_backslash_escape] = ACTIONS(736), + [sym_uri_autolink] = ACTIONS(736), + [sym_email_autolink] = ACTIONS(736), + [sym_entity_reference] = ACTIONS(736), + [sym_numeric_character_reference] = ACTIONS(736), + [sym__whitespace_ge_2] = ACTIONS(736), + [aux_sym__whitespace_token1] = ACTIONS(738), + [sym__word_no_digit] = ACTIONS(736), + [sym__digits] = ACTIONS(736), + [aux_sym__newline_token1] = ACTIONS(736), + [sym__block_close] = ACTIONS(736), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(736), + [sym__indented_chunk_start] = ACTIONS(736), + [sym_atx_h1_marker] = ACTIONS(736), + [sym_atx_h2_marker] = ACTIONS(736), + [sym_atx_h3_marker] = ACTIONS(736), + [sym_atx_h4_marker] = ACTIONS(736), + [sym_atx_h5_marker] = ACTIONS(736), + [sym_atx_h6_marker] = ACTIONS(736), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(736), + [sym__thematic_break] = ACTIONS(736), + [sym__list_marker_minus] = ACTIONS(736), + [sym__list_marker_plus] = ACTIONS(736), + [sym__list_marker_star] = ACTIONS(736), + [sym__list_marker_parenthesis] = ACTIONS(736), + [sym__list_marker_dot] = ACTIONS(736), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(736), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(736), + [sym__list_marker_star_dont_interrupt] = ACTIONS(736), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(736), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(736), + [sym__fenced_code_block_start_backtick] = ACTIONS(736), + [sym__fenced_code_block_start_tilde] = ACTIONS(736), + [sym__blank_line_start] = ACTIONS(736), + [sym__code_span_start] = ACTIONS(736), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(736), + [sym__emphasis_open_underscore] = ACTIONS(736), }, - [138] = { - [aux_sym__ignore_matching_tokens] = STATE(274), + [131] = { + [aux_sym__ignore_matching_tokens] = STATE(225), [aux_sym__html_block_1_token1] = ACTIONS(740), [anon_sym_BANG] = ACTIONS(740), [anon_sym_DQUOTE] = ACTIONS(740), @@ -44501,7 +43922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(740), [aux_sym__newline_token1] = ACTIONS(740), [sym__block_close] = ACTIONS(740), - [sym__block_continuation] = ACTIONS(744), + [sym__block_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(740), [sym__indented_chunk_start] = ACTIONS(740), [sym_atx_h1_marker] = ACTIONS(740), @@ -44526,182 +43947,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(740), [sym__blank_line_start] = ACTIONS(740), [sym__code_span_start] = ACTIONS(740), - [sym__last_token_whitespace] = ACTIONS(744), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(740), [sym__emphasis_open_underscore] = ACTIONS(740), }, - [139] = { - [sym__blank_line] = STATE(168), - [sym__indented_chunk] = STATE(168), - [aux_sym_indented_code_block_repeat1] = STATE(168), - [ts_builtin_sym_end] = ACTIONS(746), - [aux_sym__html_block_1_token1] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(746), - [anon_sym_POUND] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(746), - [anon_sym_PERCENT] = ACTIONS(746), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_COLON] = ACTIONS(746), - [anon_sym_SEMI] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_QMARK] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(746), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_RBRACK] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(746), - [anon_sym__] = ACTIONS(746), - [anon_sym_BQUOTE] = ACTIONS(746), - [anon_sym_LBRACE] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(746), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), - [anon_sym_LT_QMARK] = ACTIONS(748), - [aux_sym__html_block_4_token1] = ACTIONS(748), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(746), - [aux_sym__html_block_6_token1] = ACTIONS(748), - [aux_sym__html_block_6_token2] = ACTIONS(746), - [sym__open_tag_html_block] = ACTIONS(746), - [sym__open_tag_html_block_newline] = ACTIONS(746), - [sym__closing_tag_html_block] = ACTIONS(746), - [sym__closing_tag_html_block_newline] = ACTIONS(746), - [sym_backslash_escape] = ACTIONS(746), - [sym_uri_autolink] = ACTIONS(746), - [sym_email_autolink] = ACTIONS(746), - [sym_entity_reference] = ACTIONS(746), - [sym_numeric_character_reference] = ACTIONS(746), - [sym__whitespace_ge_2] = ACTIONS(746), - [aux_sym__whitespace_token1] = ACTIONS(748), - [sym__word_no_digit] = ACTIONS(746), - [sym__digits] = ACTIONS(746), - [aux_sym__newline_token1] = ACTIONS(746), - [sym__block_quote_start] = ACTIONS(746), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(746), - [sym_atx_h2_marker] = ACTIONS(746), - [sym_atx_h3_marker] = ACTIONS(746), - [sym_atx_h4_marker] = ACTIONS(746), - [sym_atx_h5_marker] = ACTIONS(746), - [sym_atx_h6_marker] = ACTIONS(746), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(746), - [sym__thematic_break] = ACTIONS(746), - [sym__list_marker_minus] = ACTIONS(746), - [sym__list_marker_plus] = ACTIONS(746), - [sym__list_marker_star] = ACTIONS(746), - [sym__list_marker_parenthesis] = ACTIONS(746), - [sym__list_marker_dot] = ACTIONS(746), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(746), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(746), - [sym__list_marker_star_dont_interrupt] = ACTIONS(746), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(746), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(746), - [sym__fenced_code_block_start_backtick] = ACTIONS(746), - [sym__fenced_code_block_start_tilde] = ACTIONS(746), - [sym__blank_line_start] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(746), - [sym__emphasis_open_star] = ACTIONS(746), - [sym__emphasis_open_underscore] = ACTIONS(746), + [132] = { + [aux_sym__ignore_matching_tokens] = STATE(120), + [aux_sym__html_block_1_token1] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_BSLASH] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym__] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(746), + [anon_sym_LT_QMARK] = ACTIONS(746), + [aux_sym__html_block_4_token1] = ACTIONS(746), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(744), + [aux_sym__html_block_6_token1] = ACTIONS(746), + [aux_sym__html_block_6_token2] = ACTIONS(744), + [sym__open_tag_html_block] = ACTIONS(744), + [sym__open_tag_html_block_newline] = ACTIONS(744), + [sym__closing_tag_html_block] = ACTIONS(744), + [sym__closing_tag_html_block_newline] = ACTIONS(744), + [sym_backslash_escape] = ACTIONS(744), + [sym_uri_autolink] = ACTIONS(744), + [sym_email_autolink] = ACTIONS(744), + [sym_entity_reference] = ACTIONS(744), + [sym_numeric_character_reference] = ACTIONS(744), + [sym__whitespace_ge_2] = ACTIONS(744), + [aux_sym__whitespace_token1] = ACTIONS(746), + [sym__word_no_digit] = ACTIONS(744), + [sym__digits] = ACTIONS(744), + [aux_sym__newline_token1] = ACTIONS(744), + [sym__block_close] = ACTIONS(744), + [sym__block_continuation] = ACTIONS(748), + [sym__block_quote_start] = ACTIONS(744), + [sym__indented_chunk_start] = ACTIONS(744), + [sym_atx_h1_marker] = ACTIONS(744), + [sym_atx_h2_marker] = ACTIONS(744), + [sym_atx_h3_marker] = ACTIONS(744), + [sym_atx_h4_marker] = ACTIONS(744), + [sym_atx_h5_marker] = ACTIONS(744), + [sym_atx_h6_marker] = ACTIONS(744), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(744), + [sym__thematic_break] = ACTIONS(744), + [sym__list_marker_minus] = ACTIONS(744), + [sym__list_marker_plus] = ACTIONS(744), + [sym__list_marker_star] = ACTIONS(744), + [sym__list_marker_parenthesis] = ACTIONS(744), + [sym__list_marker_dot] = ACTIONS(744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(744), + [sym__fenced_code_block_start_backtick] = ACTIONS(744), + [sym__fenced_code_block_start_tilde] = ACTIONS(744), + [sym__blank_line_start] = ACTIONS(744), + [sym__code_span_start] = ACTIONS(744), + [sym__last_token_whitespace] = ACTIONS(748), + [sym__emphasis_open_star] = ACTIONS(744), + [sym__emphasis_open_underscore] = ACTIONS(744), }, - [140] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(740), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_POUND] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_COMMA] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(740), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_AT] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_BSLASH] = ACTIONS(742), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_CARET] = ACTIONS(740), - [anon_sym__] = ACTIONS(740), - [anon_sym_BQUOTE] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(742), - [anon_sym_LT_QMARK] = ACTIONS(742), - [aux_sym__html_block_4_token1] = ACTIONS(742), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(740), - [aux_sym__html_block_6_token1] = ACTIONS(742), - [aux_sym__html_block_6_token2] = ACTIONS(740), - [sym__open_tag_html_block] = ACTIONS(740), - [sym__open_tag_html_block_newline] = ACTIONS(740), - [sym__closing_tag_html_block] = ACTIONS(740), - [sym__closing_tag_html_block_newline] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [sym_uri_autolink] = ACTIONS(740), - [sym_email_autolink] = ACTIONS(740), - [sym_entity_reference] = ACTIONS(740), - [sym_numeric_character_reference] = ACTIONS(740), - [sym__whitespace_ge_2] = ACTIONS(740), - [aux_sym__whitespace_token1] = ACTIONS(742), - [sym__word_no_digit] = ACTIONS(740), - [sym__digits] = ACTIONS(740), - [aux_sym__newline_token1] = ACTIONS(740), - [sym__block_close] = ACTIONS(740), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(740), - [sym__indented_chunk_start] = ACTIONS(740), - [sym_atx_h1_marker] = ACTIONS(740), - [sym_atx_h2_marker] = ACTIONS(740), - [sym_atx_h3_marker] = ACTIONS(740), - [sym_atx_h4_marker] = ACTIONS(740), - [sym_atx_h5_marker] = ACTIONS(740), - [sym_atx_h6_marker] = ACTIONS(740), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(740), - [sym__thematic_break] = ACTIONS(740), - [sym__list_marker_minus] = ACTIONS(740), - [sym__list_marker_plus] = ACTIONS(740), - [sym__list_marker_star] = ACTIONS(740), - [sym__list_marker_parenthesis] = ACTIONS(740), - [sym__list_marker_dot] = ACTIONS(740), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(740), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(740), - [sym__list_marker_star_dont_interrupt] = ACTIONS(740), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(740), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(740), - [sym__fenced_code_block_start_backtick] = ACTIONS(740), - [sym__fenced_code_block_start_tilde] = ACTIONS(740), - [sym__blank_line_start] = ACTIONS(740), - [sym__code_span_start] = ACTIONS(740), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(740), - [sym__emphasis_open_underscore] = ACTIONS(740), + [133] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_BSLASH] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym__] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(746), + [anon_sym_LT_QMARK] = ACTIONS(746), + [aux_sym__html_block_4_token1] = ACTIONS(746), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(744), + [aux_sym__html_block_6_token1] = ACTIONS(746), + [aux_sym__html_block_6_token2] = ACTIONS(744), + [sym__open_tag_html_block] = ACTIONS(744), + [sym__open_tag_html_block_newline] = ACTIONS(744), + [sym__closing_tag_html_block] = ACTIONS(744), + [sym__closing_tag_html_block_newline] = ACTIONS(744), + [sym_backslash_escape] = ACTIONS(744), + [sym_uri_autolink] = ACTIONS(744), + [sym_email_autolink] = ACTIONS(744), + [sym_entity_reference] = ACTIONS(744), + [sym_numeric_character_reference] = ACTIONS(744), + [sym__whitespace_ge_2] = ACTIONS(744), + [aux_sym__whitespace_token1] = ACTIONS(746), + [sym__word_no_digit] = ACTIONS(744), + [sym__digits] = ACTIONS(744), + [aux_sym__newline_token1] = ACTIONS(744), + [sym__block_close] = ACTIONS(744), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(744), + [sym__indented_chunk_start] = ACTIONS(744), + [sym_atx_h1_marker] = ACTIONS(744), + [sym_atx_h2_marker] = ACTIONS(744), + [sym_atx_h3_marker] = ACTIONS(744), + [sym_atx_h4_marker] = ACTIONS(744), + [sym_atx_h5_marker] = ACTIONS(744), + [sym_atx_h6_marker] = ACTIONS(744), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(744), + [sym__thematic_break] = ACTIONS(744), + [sym__list_marker_minus] = ACTIONS(744), + [sym__list_marker_plus] = ACTIONS(744), + [sym__list_marker_star] = ACTIONS(744), + [sym__list_marker_parenthesis] = ACTIONS(744), + [sym__list_marker_dot] = ACTIONS(744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(744), + [sym__fenced_code_block_start_backtick] = ACTIONS(744), + [sym__fenced_code_block_start_tilde] = ACTIONS(744), + [sym__blank_line_start] = ACTIONS(744), + [sym__code_span_start] = ACTIONS(744), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(744), + [sym__emphasis_open_underscore] = ACTIONS(744), }, - [141] = { - [aux_sym__ignore_matching_tokens] = STATE(246), + [134] = { + [aux_sym__ignore_matching_tokens] = STATE(123), [aux_sym__html_block_1_token1] = ACTIONS(750), [anon_sym_BANG] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(750), @@ -44785,8 +44206,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(750), [sym__emphasis_open_underscore] = ACTIONS(750), }, - [142] = { - [aux_sym__ignore_matching_tokens] = STATE(236), + [135] = { + [aux_sym__ignore_matching_tokens] = STATE(225), [aux_sym__html_block_1_token1] = ACTIONS(750), [anon_sym_BANG] = ACTIONS(750), [anon_sym_DQUOTE] = ACTIONS(750), @@ -44841,7 +44262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(750), [aux_sym__newline_token1] = ACTIONS(750), [sym__block_close] = ACTIONS(750), - [sym__block_continuation] = ACTIONS(97), + [sym__block_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(750), [sym__indented_chunk_start] = ACTIONS(750), [sym_atx_h1_marker] = ACTIONS(750), @@ -44866,97 +44287,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(750), [sym__blank_line_start] = ACTIONS(750), [sym__code_span_start] = ACTIONS(750), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(750), [sym__emphasis_open_underscore] = ACTIONS(750), }, - [143] = { - [aux_sym__ignore_matching_tokens] = STATE(244), - [aux_sym__html_block_1_token1] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(758), - [anon_sym_SQUOTE] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(758), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_BSLASH] = ACTIONS(758), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_CARET] = ACTIONS(756), - [anon_sym__] = ACTIONS(756), - [anon_sym_BQUOTE] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_TILDE] = ACTIONS(756), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(758), - [anon_sym_LT_QMARK] = ACTIONS(758), - [aux_sym__html_block_4_token1] = ACTIONS(758), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(756), - [aux_sym__html_block_6_token1] = ACTIONS(758), - [aux_sym__html_block_6_token2] = ACTIONS(756), - [sym__open_tag_html_block] = ACTIONS(756), - [sym__open_tag_html_block_newline] = ACTIONS(756), - [sym__closing_tag_html_block] = ACTIONS(756), - [sym__closing_tag_html_block_newline] = ACTIONS(756), - [sym_backslash_escape] = ACTIONS(756), - [sym_uri_autolink] = ACTIONS(756), - [sym_email_autolink] = ACTIONS(756), - [sym_entity_reference] = ACTIONS(756), - [sym_numeric_character_reference] = ACTIONS(756), - [sym__whitespace_ge_2] = ACTIONS(756), - [aux_sym__whitespace_token1] = ACTIONS(758), - [sym__word_no_digit] = ACTIONS(756), - [sym__digits] = ACTIONS(756), - [aux_sym__newline_token1] = ACTIONS(756), - [sym__block_close] = ACTIONS(756), - [sym__block_continuation] = ACTIONS(760), - [sym__block_quote_start] = ACTIONS(756), - [sym__indented_chunk_start] = ACTIONS(756), - [sym_atx_h1_marker] = ACTIONS(756), - [sym_atx_h2_marker] = ACTIONS(756), - [sym_atx_h3_marker] = ACTIONS(756), - [sym_atx_h4_marker] = ACTIONS(756), - [sym_atx_h5_marker] = ACTIONS(756), - [sym_atx_h6_marker] = ACTIONS(756), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(756), - [sym__thematic_break] = ACTIONS(756), - [sym__list_marker_minus] = ACTIONS(756), - [sym__list_marker_plus] = ACTIONS(756), - [sym__list_marker_star] = ACTIONS(756), - [sym__list_marker_parenthesis] = ACTIONS(756), - [sym__list_marker_dot] = ACTIONS(756), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(756), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(756), - [sym__list_marker_star_dont_interrupt] = ACTIONS(756), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(756), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(756), - [sym__fenced_code_block_start_backtick] = ACTIONS(756), - [sym__fenced_code_block_start_tilde] = ACTIONS(756), - [sym__blank_line_start] = ACTIONS(756), - [sym__code_span_start] = ACTIONS(756), - [sym__last_token_whitespace] = ACTIONS(760), - [sym__emphasis_open_star] = ACTIONS(756), - [sym__emphasis_open_underscore] = ACTIONS(756), - }, - [144] = { - [aux_sym__ignore_matching_tokens] = STATE(236), + [136] = { + [aux_sym__ignore_matching_tokens] = STATE(225), [aux_sym__html_block_1_token1] = ACTIONS(756), [anon_sym_BANG] = ACTIONS(756), [anon_sym_DQUOTE] = ACTIONS(756), @@ -45011,7 +44347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(756), [aux_sym__newline_token1] = ACTIONS(756), [sym__block_close] = ACTIONS(756), - [sym__block_continuation] = ACTIONS(97), + [sym__block_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(756), [sym__indented_chunk_start] = ACTIONS(756), [sym_atx_h1_marker] = ACTIONS(756), @@ -45036,352 +44372,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(756), [sym__blank_line_start] = ACTIONS(756), [sym__code_span_start] = ACTIONS(756), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(756), [sym__emphasis_open_underscore] = ACTIONS(756), }, - [145] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(762), - [aux_sym__html_block_1_token1] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_POUND] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_PERCENT] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(762), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_BSLASH] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym__] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(764), - [anon_sym_LT_QMARK] = ACTIONS(764), - [aux_sym__html_block_4_token1] = ACTIONS(764), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(762), - [aux_sym__html_block_6_token1] = ACTIONS(764), - [aux_sym__html_block_6_token2] = ACTIONS(762), - [sym__open_tag_html_block] = ACTIONS(762), - [sym__open_tag_html_block_newline] = ACTIONS(762), - [sym__closing_tag_html_block] = ACTIONS(762), - [sym__closing_tag_html_block_newline] = ACTIONS(762), - [sym_backslash_escape] = ACTIONS(762), - [sym_uri_autolink] = ACTIONS(762), - [sym_email_autolink] = ACTIONS(762), - [sym_entity_reference] = ACTIONS(762), - [sym_numeric_character_reference] = ACTIONS(762), - [sym__whitespace_ge_2] = ACTIONS(762), - [aux_sym__whitespace_token1] = ACTIONS(764), - [sym__word_no_digit] = ACTIONS(762), - [sym__digits] = ACTIONS(762), - [aux_sym__newline_token1] = ACTIONS(762), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(762), - [sym__indented_chunk_start] = ACTIONS(762), - [sym_atx_h1_marker] = ACTIONS(762), - [sym_atx_h2_marker] = ACTIONS(762), - [sym_atx_h3_marker] = ACTIONS(762), - [sym_atx_h4_marker] = ACTIONS(762), - [sym_atx_h5_marker] = ACTIONS(762), - [sym_atx_h6_marker] = ACTIONS(762), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(762), - [sym__thematic_break] = ACTIONS(762), - [sym__list_marker_minus] = ACTIONS(762), - [sym__list_marker_plus] = ACTIONS(762), - [sym__list_marker_star] = ACTIONS(762), - [sym__list_marker_parenthesis] = ACTIONS(762), - [sym__list_marker_dot] = ACTIONS(762), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_star_dont_interrupt] = ACTIONS(762), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(762), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(762), - [sym__fenced_code_block_start_backtick] = ACTIONS(762), - [sym__fenced_code_block_start_tilde] = ACTIONS(762), - [sym__blank_line_start] = ACTIONS(762), - [sym__code_span_start] = ACTIONS(762), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(762), - [sym__emphasis_open_underscore] = ACTIONS(762), - }, - [146] = { - [aux_sym__ignore_matching_tokens] = STATE(242), - [aux_sym__html_block_1_token1] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_POUND] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_BSLASH] = ACTIONS(768), - [anon_sym_RBRACK] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [anon_sym__] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(768), - [anon_sym_LT_QMARK] = ACTIONS(768), - [aux_sym__html_block_4_token1] = ACTIONS(768), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(766), - [aux_sym__html_block_6_token1] = ACTIONS(768), - [aux_sym__html_block_6_token2] = ACTIONS(766), - [sym__open_tag_html_block] = ACTIONS(766), - [sym__open_tag_html_block_newline] = ACTIONS(766), - [sym__closing_tag_html_block] = ACTIONS(766), - [sym__closing_tag_html_block_newline] = ACTIONS(766), - [sym_backslash_escape] = ACTIONS(766), - [sym_uri_autolink] = ACTIONS(766), - [sym_email_autolink] = ACTIONS(766), - [sym_entity_reference] = ACTIONS(766), - [sym_numeric_character_reference] = ACTIONS(766), - [sym__whitespace_ge_2] = ACTIONS(766), - [aux_sym__whitespace_token1] = ACTIONS(768), - [sym__word_no_digit] = ACTIONS(766), - [sym__digits] = ACTIONS(766), - [aux_sym__newline_token1] = ACTIONS(766), - [sym__block_close] = ACTIONS(766), - [sym__block_continuation] = ACTIONS(770), - [sym__block_quote_start] = ACTIONS(766), - [sym__indented_chunk_start] = ACTIONS(766), - [sym_atx_h1_marker] = ACTIONS(766), - [sym_atx_h2_marker] = ACTIONS(766), - [sym_atx_h3_marker] = ACTIONS(766), - [sym_atx_h4_marker] = ACTIONS(766), - [sym_atx_h5_marker] = ACTIONS(766), - [sym_atx_h6_marker] = ACTIONS(766), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(766), - [sym__thematic_break] = ACTIONS(766), - [sym__list_marker_minus] = ACTIONS(766), - [sym__list_marker_plus] = ACTIONS(766), - [sym__list_marker_star] = ACTIONS(766), - [sym__list_marker_parenthesis] = ACTIONS(766), - [sym__list_marker_dot] = ACTIONS(766), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_star_dont_interrupt] = ACTIONS(766), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(766), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(766), - [sym__fenced_code_block_start_backtick] = ACTIONS(766), - [sym__fenced_code_block_start_tilde] = ACTIONS(766), - [sym__blank_line_start] = ACTIONS(766), - [sym__code_span_start] = ACTIONS(766), - [sym__last_token_whitespace] = ACTIONS(770), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(766), + [137] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PERCENT] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_BSLASH] = ACTIONS(762), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym__] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(762), + [anon_sym_LT_QMARK] = ACTIONS(762), + [aux_sym__html_block_4_token1] = ACTIONS(762), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(760), + [aux_sym__html_block_6_token1] = ACTIONS(762), + [aux_sym__html_block_6_token2] = ACTIONS(760), + [sym__open_tag_html_block] = ACTIONS(760), + [sym__open_tag_html_block_newline] = ACTIONS(760), + [sym__closing_tag_html_block] = ACTIONS(760), + [sym__closing_tag_html_block_newline] = ACTIONS(760), + [sym_backslash_escape] = ACTIONS(760), + [sym_uri_autolink] = ACTIONS(760), + [sym_email_autolink] = ACTIONS(760), + [sym_entity_reference] = ACTIONS(760), + [sym_numeric_character_reference] = ACTIONS(760), + [sym__whitespace_ge_2] = ACTIONS(760), + [aux_sym__whitespace_token1] = ACTIONS(762), + [sym__word_no_digit] = ACTIONS(760), + [sym__digits] = ACTIONS(760), + [aux_sym__newline_token1] = ACTIONS(760), + [sym__block_close] = ACTIONS(760), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(760), + [sym__indented_chunk_start] = ACTIONS(760), + [sym_atx_h1_marker] = ACTIONS(760), + [sym_atx_h2_marker] = ACTIONS(760), + [sym_atx_h3_marker] = ACTIONS(760), + [sym_atx_h4_marker] = ACTIONS(760), + [sym_atx_h5_marker] = ACTIONS(760), + [sym_atx_h6_marker] = ACTIONS(760), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(760), + [sym__thematic_break] = ACTIONS(760), + [sym__list_marker_minus] = ACTIONS(760), + [sym__list_marker_plus] = ACTIONS(760), + [sym__list_marker_star] = ACTIONS(760), + [sym__list_marker_parenthesis] = ACTIONS(760), + [sym__list_marker_dot] = ACTIONS(760), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(760), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(760), + [sym__list_marker_star_dont_interrupt] = ACTIONS(760), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(760), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(760), + [sym__fenced_code_block_start_backtick] = ACTIONS(760), + [sym__fenced_code_block_start_tilde] = ACTIONS(760), + [sym__blank_line_start] = ACTIONS(760), + [sym__code_span_start] = ACTIONS(760), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(760), + [sym__emphasis_open_underscore] = ACTIONS(760), }, - [147] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_POUND] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_BSLASH] = ACTIONS(768), - [anon_sym_RBRACK] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [anon_sym__] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(768), - [anon_sym_LT_QMARK] = ACTIONS(768), - [aux_sym__html_block_4_token1] = ACTIONS(768), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(766), - [aux_sym__html_block_6_token1] = ACTIONS(768), - [aux_sym__html_block_6_token2] = ACTIONS(766), - [sym__open_tag_html_block] = ACTIONS(766), - [sym__open_tag_html_block_newline] = ACTIONS(766), - [sym__closing_tag_html_block] = ACTIONS(766), - [sym__closing_tag_html_block_newline] = ACTIONS(766), - [sym_backslash_escape] = ACTIONS(766), - [sym_uri_autolink] = ACTIONS(766), - [sym_email_autolink] = ACTIONS(766), - [sym_entity_reference] = ACTIONS(766), - [sym_numeric_character_reference] = ACTIONS(766), - [sym__whitespace_ge_2] = ACTIONS(766), - [aux_sym__whitespace_token1] = ACTIONS(768), - [sym__word_no_digit] = ACTIONS(766), - [sym__digits] = ACTIONS(766), - [aux_sym__newline_token1] = ACTIONS(766), - [sym__block_close] = ACTIONS(766), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(766), - [sym__indented_chunk_start] = ACTIONS(766), - [sym_atx_h1_marker] = ACTIONS(766), - [sym_atx_h2_marker] = ACTIONS(766), - [sym_atx_h3_marker] = ACTIONS(766), - [sym_atx_h4_marker] = ACTIONS(766), - [sym_atx_h5_marker] = ACTIONS(766), - [sym_atx_h6_marker] = ACTIONS(766), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(766), - [sym__thematic_break] = ACTIONS(766), - [sym__list_marker_minus] = ACTIONS(766), - [sym__list_marker_plus] = ACTIONS(766), - [sym__list_marker_star] = ACTIONS(766), - [sym__list_marker_parenthesis] = ACTIONS(766), - [sym__list_marker_dot] = ACTIONS(766), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_star_dont_interrupt] = ACTIONS(766), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(766), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(766), - [sym__fenced_code_block_start_backtick] = ACTIONS(766), - [sym__fenced_code_block_start_tilde] = ACTIONS(766), - [sym__blank_line_start] = ACTIONS(766), - [sym__code_span_start] = ACTIONS(766), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(766), + [138] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BSLASH] = ACTIONS(766), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym__] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(766), + [anon_sym_LT_QMARK] = ACTIONS(766), + [aux_sym__html_block_4_token1] = ACTIONS(766), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(764), + [aux_sym__html_block_6_token1] = ACTIONS(766), + [aux_sym__html_block_6_token2] = ACTIONS(764), + [sym__open_tag_html_block] = ACTIONS(764), + [sym__open_tag_html_block_newline] = ACTIONS(764), + [sym__closing_tag_html_block] = ACTIONS(764), + [sym__closing_tag_html_block_newline] = ACTIONS(764), + [sym_backslash_escape] = ACTIONS(764), + [sym_uri_autolink] = ACTIONS(764), + [sym_email_autolink] = ACTIONS(764), + [sym_entity_reference] = ACTIONS(764), + [sym_numeric_character_reference] = ACTIONS(764), + [sym__whitespace_ge_2] = ACTIONS(764), + [aux_sym__whitespace_token1] = ACTIONS(766), + [sym__word_no_digit] = ACTIONS(764), + [sym__digits] = ACTIONS(764), + [aux_sym__newline_token1] = ACTIONS(764), + [sym__block_close] = ACTIONS(764), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(764), + [sym__indented_chunk_start] = ACTIONS(764), + [sym_atx_h1_marker] = ACTIONS(764), + [sym_atx_h2_marker] = ACTIONS(764), + [sym_atx_h3_marker] = ACTIONS(764), + [sym_atx_h4_marker] = ACTIONS(764), + [sym_atx_h5_marker] = ACTIONS(764), + [sym_atx_h6_marker] = ACTIONS(764), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(764), + [sym__thematic_break] = ACTIONS(764), + [sym__list_marker_minus] = ACTIONS(764), + [sym__list_marker_plus] = ACTIONS(764), + [sym__list_marker_star] = ACTIONS(764), + [sym__list_marker_parenthesis] = ACTIONS(764), + [sym__list_marker_dot] = ACTIONS(764), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(764), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(764), + [sym__list_marker_star_dont_interrupt] = ACTIONS(764), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(764), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(764), + [sym__fenced_code_block_start_backtick] = ACTIONS(764), + [sym__fenced_code_block_start_tilde] = ACTIONS(764), + [sym__blank_line_start] = ACTIONS(764), + [sym__code_span_start] = ACTIONS(764), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(764), + [sym__emphasis_open_underscore] = ACTIONS(764), }, - [148] = { - [aux_sym__ignore_matching_tokens] = STATE(241), - [aux_sym__html_block_1_token1] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(772), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_DOT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_BSLASH] = ACTIONS(774), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym__] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(774), - [anon_sym_LT_QMARK] = ACTIONS(774), - [aux_sym__html_block_4_token1] = ACTIONS(774), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(772), - [aux_sym__html_block_6_token1] = ACTIONS(774), - [aux_sym__html_block_6_token2] = ACTIONS(772), - [sym__open_tag_html_block] = ACTIONS(772), - [sym__open_tag_html_block_newline] = ACTIONS(772), - [sym__closing_tag_html_block] = ACTIONS(772), - [sym__closing_tag_html_block_newline] = ACTIONS(772), - [sym_backslash_escape] = ACTIONS(772), - [sym_uri_autolink] = ACTIONS(772), - [sym_email_autolink] = ACTIONS(772), - [sym_entity_reference] = ACTIONS(772), - [sym_numeric_character_reference] = ACTIONS(772), - [sym__whitespace_ge_2] = ACTIONS(772), - [aux_sym__whitespace_token1] = ACTIONS(774), - [sym__word_no_digit] = ACTIONS(772), - [sym__digits] = ACTIONS(772), - [aux_sym__newline_token1] = ACTIONS(772), - [sym__block_close] = ACTIONS(772), - [sym__block_continuation] = ACTIONS(776), - [sym__block_quote_start] = ACTIONS(772), - [sym__indented_chunk_start] = ACTIONS(772), - [sym_atx_h1_marker] = ACTIONS(772), - [sym_atx_h2_marker] = ACTIONS(772), - [sym_atx_h3_marker] = ACTIONS(772), - [sym_atx_h4_marker] = ACTIONS(772), - [sym_atx_h5_marker] = ACTIONS(772), - [sym_atx_h6_marker] = ACTIONS(772), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(772), - [sym__thematic_break] = ACTIONS(772), - [sym__list_marker_minus] = ACTIONS(772), - [sym__list_marker_plus] = ACTIONS(772), - [sym__list_marker_star] = ACTIONS(772), - [sym__list_marker_parenthesis] = ACTIONS(772), - [sym__list_marker_dot] = ACTIONS(772), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(772), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(772), - [sym__list_marker_star_dont_interrupt] = ACTIONS(772), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(772), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(772), - [sym__fenced_code_block_start_backtick] = ACTIONS(772), - [sym__fenced_code_block_start_tilde] = ACTIONS(772), - [sym__blank_line_start] = ACTIONS(772), - [sym__code_span_start] = ACTIONS(772), - [sym__last_token_whitespace] = ACTIONS(776), - [sym__emphasis_open_star] = ACTIONS(772), - [sym__emphasis_open_underscore] = ACTIONS(772), + [139] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_BSLASH] = ACTIONS(770), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym__] = ACTIONS(768), + [anon_sym_BQUOTE] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(770), + [aux_sym__html_block_4_token1] = ACTIONS(770), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(768), + [aux_sym__html_block_6_token1] = ACTIONS(770), + [aux_sym__html_block_6_token2] = ACTIONS(768), + [sym__open_tag_html_block] = ACTIONS(768), + [sym__open_tag_html_block_newline] = ACTIONS(768), + [sym__closing_tag_html_block] = ACTIONS(768), + [sym__closing_tag_html_block_newline] = ACTIONS(768), + [sym_backslash_escape] = ACTIONS(768), + [sym_uri_autolink] = ACTIONS(768), + [sym_email_autolink] = ACTIONS(768), + [sym_entity_reference] = ACTIONS(768), + [sym_numeric_character_reference] = ACTIONS(768), + [sym__whitespace_ge_2] = ACTIONS(768), + [aux_sym__whitespace_token1] = ACTIONS(770), + [sym__word_no_digit] = ACTIONS(768), + [sym__digits] = ACTIONS(768), + [aux_sym__newline_token1] = ACTIONS(768), + [sym__block_close] = ACTIONS(768), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(768), + [sym__indented_chunk_start] = ACTIONS(768), + [sym_atx_h1_marker] = ACTIONS(768), + [sym_atx_h2_marker] = ACTIONS(768), + [sym_atx_h3_marker] = ACTIONS(768), + [sym_atx_h4_marker] = ACTIONS(768), + [sym_atx_h5_marker] = ACTIONS(768), + [sym_atx_h6_marker] = ACTIONS(768), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(768), + [sym__thematic_break] = ACTIONS(768), + [sym__list_marker_minus] = ACTIONS(768), + [sym__list_marker_plus] = ACTIONS(768), + [sym__list_marker_star] = ACTIONS(768), + [sym__list_marker_parenthesis] = ACTIONS(768), + [sym__list_marker_dot] = ACTIONS(768), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(768), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(768), + [sym__list_marker_star_dont_interrupt] = ACTIONS(768), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(768), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(768), + [sym__fenced_code_block_start_backtick] = ACTIONS(768), + [sym__fenced_code_block_start_tilde] = ACTIONS(768), + [sym__blank_line_start] = ACTIONS(768), + [sym__code_span_start] = ACTIONS(768), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(768), + [sym__emphasis_open_underscore] = ACTIONS(768), }, - [149] = { - [aux_sym__ignore_matching_tokens] = STATE(236), + [140] = { + [aux_sym__ignore_matching_tokens] = STATE(225), [aux_sym__html_block_1_token1] = ACTIONS(772), [anon_sym_BANG] = ACTIONS(772), [anon_sym_DQUOTE] = ACTIONS(772), @@ -45436,7 +44687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(772), [aux_sym__newline_token1] = ACTIONS(772), [sym__block_close] = ACTIONS(772), - [sym__block_continuation] = ACTIONS(97), + [sym__block_continuation] = ACTIONS(111), [sym__block_quote_start] = ACTIONS(772), [sym__indented_chunk_start] = ACTIONS(772), [sym_atx_h1_marker] = ACTIONS(772), @@ -45461,97 +44712,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(772), [sym__blank_line_start] = ACTIONS(772), [sym__code_span_start] = ACTIONS(772), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(111), [sym__emphasis_open_star] = ACTIONS(772), [sym__emphasis_open_underscore] = ACTIONS(772), }, - [150] = { - [aux_sym__ignore_matching_tokens] = STATE(202), - [ts_builtin_sym_end] = ACTIONS(762), - [aux_sym__html_block_1_token1] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_POUND] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_PERCENT] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(762), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_BSLASH] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym__] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(764), - [anon_sym_LT_QMARK] = ACTIONS(764), - [aux_sym__html_block_4_token1] = ACTIONS(764), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(762), - [aux_sym__html_block_6_token1] = ACTIONS(764), - [aux_sym__html_block_6_token2] = ACTIONS(762), - [sym__open_tag_html_block] = ACTIONS(762), - [sym__open_tag_html_block_newline] = ACTIONS(762), - [sym__closing_tag_html_block] = ACTIONS(762), - [sym__closing_tag_html_block_newline] = ACTIONS(762), - [sym_backslash_escape] = ACTIONS(762), - [sym_uri_autolink] = ACTIONS(762), - [sym_email_autolink] = ACTIONS(762), - [sym_entity_reference] = ACTIONS(762), - [sym_numeric_character_reference] = ACTIONS(762), - [sym__whitespace_ge_2] = ACTIONS(762), - [aux_sym__whitespace_token1] = ACTIONS(764), - [sym__word_no_digit] = ACTIONS(762), - [sym__digits] = ACTIONS(762), - [aux_sym__newline_token1] = ACTIONS(762), - [sym__block_continuation] = ACTIONS(778), - [sym__block_quote_start] = ACTIONS(762), - [sym__indented_chunk_start] = ACTIONS(762), - [sym_atx_h1_marker] = ACTIONS(762), - [sym_atx_h2_marker] = ACTIONS(762), - [sym_atx_h3_marker] = ACTIONS(762), - [sym_atx_h4_marker] = ACTIONS(762), - [sym_atx_h5_marker] = ACTIONS(762), - [sym_atx_h6_marker] = ACTIONS(762), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(762), - [sym__thematic_break] = ACTIONS(762), - [sym__list_marker_minus] = ACTIONS(762), - [sym__list_marker_plus] = ACTIONS(762), - [sym__list_marker_star] = ACTIONS(762), - [sym__list_marker_parenthesis] = ACTIONS(762), - [sym__list_marker_dot] = ACTIONS(762), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_star_dont_interrupt] = ACTIONS(762), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(762), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(762), - [sym__fenced_code_block_start_backtick] = ACTIONS(762), - [sym__fenced_code_block_start_tilde] = ACTIONS(762), - [sym__blank_line_start] = ACTIONS(762), - [sym__code_span_start] = ACTIONS(762), - [sym__last_token_whitespace] = ACTIONS(778), - [sym__emphasis_open_star] = ACTIONS(762), - [sym__emphasis_open_underscore] = ACTIONS(762), + [141] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_POUND] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(776), + [anon_sym_PERCENT] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SQUOTE] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_DOT] = ACTIONS(776), + [anon_sym_SLASH] = ACTIONS(776), + [anon_sym_COLON] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(776), + [anon_sym_GT] = ACTIONS(776), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_BSLASH] = ACTIONS(778), + [anon_sym_RBRACK] = ACTIONS(776), + [anon_sym_CARET] = ACTIONS(776), + [anon_sym__] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(778), + [anon_sym_LT_QMARK] = ACTIONS(778), + [aux_sym__html_block_4_token1] = ACTIONS(778), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [aux_sym__html_block_6_token1] = ACTIONS(778), + [aux_sym__html_block_6_token2] = ACTIONS(776), + [sym__open_tag_html_block] = ACTIONS(776), + [sym__open_tag_html_block_newline] = ACTIONS(776), + [sym__closing_tag_html_block] = ACTIONS(776), + [sym__closing_tag_html_block_newline] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(776), + [sym_uri_autolink] = ACTIONS(776), + [sym_email_autolink] = ACTIONS(776), + [sym_entity_reference] = ACTIONS(776), + [sym_numeric_character_reference] = ACTIONS(776), + [sym__whitespace_ge_2] = ACTIONS(776), + [aux_sym__whitespace_token1] = ACTIONS(778), + [sym__word_no_digit] = ACTIONS(776), + [sym__digits] = ACTIONS(776), + [aux_sym__newline_token1] = ACTIONS(776), + [sym__block_close] = ACTIONS(776), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(776), + [sym__indented_chunk_start] = ACTIONS(776), + [sym_atx_h1_marker] = ACTIONS(776), + [sym_atx_h2_marker] = ACTIONS(776), + [sym_atx_h3_marker] = ACTIONS(776), + [sym_atx_h4_marker] = ACTIONS(776), + [sym_atx_h5_marker] = ACTIONS(776), + [sym_atx_h6_marker] = ACTIONS(776), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(776), + [sym__thematic_break] = ACTIONS(776), + [sym__list_marker_minus] = ACTIONS(776), + [sym__list_marker_plus] = ACTIONS(776), + [sym__list_marker_star] = ACTIONS(776), + [sym__list_marker_parenthesis] = ACTIONS(776), + [sym__list_marker_dot] = ACTIONS(776), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(776), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), + [sym__list_marker_star_dont_interrupt] = ACTIONS(776), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(776), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(776), + [sym__fenced_code_block_start_backtick] = ACTIONS(776), + [sym__fenced_code_block_start_tilde] = ACTIONS(776), + [sym__blank_line_start] = ACTIONS(776), + [sym__code_span_start] = ACTIONS(776), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(776), + [sym__emphasis_open_underscore] = ACTIONS(776), }, - [151] = { - [aux_sym__ignore_matching_tokens] = STATE(240), + [142] = { + [aux_sym__ignore_matching_tokens] = STATE(303), + [ts_builtin_sym_end] = ACTIONS(780), [aux_sym__html_block_1_token1] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(780), [anon_sym_DQUOTE] = ACTIONS(780), @@ -45605,7 +44857,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(780), [sym__digits] = ACTIONS(780), [aux_sym__newline_token1] = ACTIONS(780), - [sym__block_close] = ACTIONS(780), [sym__block_continuation] = ACTIONS(784), [sym__block_quote_start] = ACTIONS(780), [sym__indented_chunk_start] = ACTIONS(780), @@ -45635,8 +44886,3408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_star] = ACTIONS(780), [sym__emphasis_open_underscore] = ACTIONS(780), }, + [143] = { + [sym_link_title] = STATE(2224), + [sym__whitespace] = STATE(2057), + [aux_sym__html_block_1_token1] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_BSLASH] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym__] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(791), + [anon_sym_LT_QMARK] = ACTIONS(791), + [aux_sym__html_block_4_token1] = ACTIONS(791), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(786), + [aux_sym__html_block_6_token1] = ACTIONS(791), + [aux_sym__html_block_6_token2] = ACTIONS(786), + [sym__open_tag_html_block] = ACTIONS(786), + [sym__open_tag_html_block_newline] = ACTIONS(786), + [sym__closing_tag_html_block] = ACTIONS(786), + [sym__closing_tag_html_block_newline] = ACTIONS(786), + [sym_backslash_escape] = ACTIONS(786), + [sym_uri_autolink] = ACTIONS(786), + [sym_email_autolink] = ACTIONS(786), + [sym_entity_reference] = ACTIONS(786), + [sym_numeric_character_reference] = ACTIONS(786), + [sym__whitespace_ge_2] = ACTIONS(799), + [aux_sym__whitespace_token1] = ACTIONS(802), + [sym__word_no_digit] = ACTIONS(786), + [sym__digits] = ACTIONS(786), + [aux_sym__newline_token1] = ACTIONS(786), + [sym__block_close] = ACTIONS(786), + [sym__block_quote_start] = ACTIONS(786), + [sym__indented_chunk_start] = ACTIONS(786), + [sym_atx_h1_marker] = ACTIONS(786), + [sym_atx_h2_marker] = ACTIONS(786), + [sym_atx_h3_marker] = ACTIONS(786), + [sym_atx_h4_marker] = ACTIONS(786), + [sym_atx_h5_marker] = ACTIONS(786), + [sym_atx_h6_marker] = ACTIONS(786), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(786), + [sym__thematic_break] = ACTIONS(786), + [sym__list_marker_minus] = ACTIONS(786), + [sym__list_marker_plus] = ACTIONS(786), + [sym__list_marker_star] = ACTIONS(786), + [sym__list_marker_parenthesis] = ACTIONS(786), + [sym__list_marker_dot] = ACTIONS(786), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(786), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(786), + [sym__list_marker_star_dont_interrupt] = ACTIONS(786), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(786), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(786), + [sym__fenced_code_block_start_backtick] = ACTIONS(786), + [sym__fenced_code_block_start_tilde] = ACTIONS(786), + [sym__blank_line_start] = ACTIONS(786), + [sym__code_span_start] = ACTIONS(786), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(786), + [sym__no_indented_chunk] = ACTIONS(805), + }, + [144] = { + [aux_sym__ignore_matching_tokens] = STATE(127), + [aux_sym__html_block_1_token1] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_PERCENT] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [anon_sym__] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(807), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(809), + [anon_sym_LT_QMARK] = ACTIONS(809), + [aux_sym__html_block_4_token1] = ACTIONS(809), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(807), + [aux_sym__html_block_6_token1] = ACTIONS(809), + [aux_sym__html_block_6_token2] = ACTIONS(807), + [sym__open_tag_html_block] = ACTIONS(807), + [sym__open_tag_html_block_newline] = ACTIONS(807), + [sym__closing_tag_html_block] = ACTIONS(807), + [sym__closing_tag_html_block_newline] = ACTIONS(807), + [sym_backslash_escape] = ACTIONS(807), + [sym_uri_autolink] = ACTIONS(807), + [sym_email_autolink] = ACTIONS(807), + [sym_entity_reference] = ACTIONS(807), + [sym_numeric_character_reference] = ACTIONS(807), + [sym__whitespace_ge_2] = ACTIONS(807), + [aux_sym__whitespace_token1] = ACTIONS(809), + [sym__word_no_digit] = ACTIONS(807), + [sym__digits] = ACTIONS(807), + [aux_sym__newline_token1] = ACTIONS(807), + [sym__block_close] = ACTIONS(807), + [sym__block_continuation] = ACTIONS(811), + [sym__block_quote_start] = ACTIONS(807), + [sym__indented_chunk_start] = ACTIONS(807), + [sym_atx_h1_marker] = ACTIONS(807), + [sym_atx_h2_marker] = ACTIONS(807), + [sym_atx_h3_marker] = ACTIONS(807), + [sym_atx_h4_marker] = ACTIONS(807), + [sym_atx_h5_marker] = ACTIONS(807), + [sym_atx_h6_marker] = ACTIONS(807), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(807), + [sym__thematic_break] = ACTIONS(807), + [sym__list_marker_minus] = ACTIONS(807), + [sym__list_marker_plus] = ACTIONS(807), + [sym__list_marker_star] = ACTIONS(807), + [sym__list_marker_parenthesis] = ACTIONS(807), + [sym__list_marker_dot] = ACTIONS(807), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_star_dont_interrupt] = ACTIONS(807), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(807), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(807), + [sym__fenced_code_block_start_backtick] = ACTIONS(807), + [sym__fenced_code_block_start_tilde] = ACTIONS(807), + [sym__blank_line_start] = ACTIONS(807), + [sym__code_span_start] = ACTIONS(807), + [sym__last_token_whitespace] = ACTIONS(811), + [sym__emphasis_open_star] = ACTIONS(807), + [sym__emphasis_open_underscore] = ACTIONS(807), + }, + [145] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_PERCENT] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [anon_sym__] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(807), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(809), + [anon_sym_LT_QMARK] = ACTIONS(809), + [aux_sym__html_block_4_token1] = ACTIONS(809), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(807), + [aux_sym__html_block_6_token1] = ACTIONS(809), + [aux_sym__html_block_6_token2] = ACTIONS(807), + [sym__open_tag_html_block] = ACTIONS(807), + [sym__open_tag_html_block_newline] = ACTIONS(807), + [sym__closing_tag_html_block] = ACTIONS(807), + [sym__closing_tag_html_block_newline] = ACTIONS(807), + [sym_backslash_escape] = ACTIONS(807), + [sym_uri_autolink] = ACTIONS(807), + [sym_email_autolink] = ACTIONS(807), + [sym_entity_reference] = ACTIONS(807), + [sym_numeric_character_reference] = ACTIONS(807), + [sym__whitespace_ge_2] = ACTIONS(807), + [aux_sym__whitespace_token1] = ACTIONS(809), + [sym__word_no_digit] = ACTIONS(807), + [sym__digits] = ACTIONS(807), + [aux_sym__newline_token1] = ACTIONS(807), + [sym__block_close] = ACTIONS(807), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(807), + [sym__indented_chunk_start] = ACTIONS(807), + [sym_atx_h1_marker] = ACTIONS(807), + [sym_atx_h2_marker] = ACTIONS(807), + [sym_atx_h3_marker] = ACTIONS(807), + [sym_atx_h4_marker] = ACTIONS(807), + [sym_atx_h5_marker] = ACTIONS(807), + [sym_atx_h6_marker] = ACTIONS(807), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(807), + [sym__thematic_break] = ACTIONS(807), + [sym__list_marker_minus] = ACTIONS(807), + [sym__list_marker_plus] = ACTIONS(807), + [sym__list_marker_star] = ACTIONS(807), + [sym__list_marker_parenthesis] = ACTIONS(807), + [sym__list_marker_dot] = ACTIONS(807), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_star_dont_interrupt] = ACTIONS(807), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(807), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(807), + [sym__fenced_code_block_start_backtick] = ACTIONS(807), + [sym__fenced_code_block_start_tilde] = ACTIONS(807), + [sym__blank_line_start] = ACTIONS(807), + [sym__code_span_start] = ACTIONS(807), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(807), + [sym__emphasis_open_underscore] = ACTIONS(807), + }, + [146] = { + [aux_sym__ignore_matching_tokens] = STATE(128), + [aux_sym__html_block_1_token1] = ACTIONS(813), + [anon_sym_BANG] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_POUND] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_QMARK] = ACTIONS(813), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(813), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym__] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(815), + [anon_sym_LT_QMARK] = ACTIONS(815), + [aux_sym__html_block_4_token1] = ACTIONS(815), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(813), + [aux_sym__html_block_6_token1] = ACTIONS(815), + [aux_sym__html_block_6_token2] = ACTIONS(813), + [sym__open_tag_html_block] = ACTIONS(813), + [sym__open_tag_html_block_newline] = ACTIONS(813), + [sym__closing_tag_html_block] = ACTIONS(813), + [sym__closing_tag_html_block_newline] = ACTIONS(813), + [sym_backslash_escape] = ACTIONS(813), + [sym_uri_autolink] = ACTIONS(813), + [sym_email_autolink] = ACTIONS(813), + [sym_entity_reference] = ACTIONS(813), + [sym_numeric_character_reference] = ACTIONS(813), + [sym__whitespace_ge_2] = ACTIONS(813), + [aux_sym__whitespace_token1] = ACTIONS(815), + [sym__word_no_digit] = ACTIONS(813), + [sym__digits] = ACTIONS(813), + [aux_sym__newline_token1] = ACTIONS(813), + [sym__block_close] = ACTIONS(813), + [sym__block_continuation] = ACTIONS(817), + [sym__block_quote_start] = ACTIONS(813), + [sym__indented_chunk_start] = ACTIONS(813), + [sym_atx_h1_marker] = ACTIONS(813), + [sym_atx_h2_marker] = ACTIONS(813), + [sym_atx_h3_marker] = ACTIONS(813), + [sym_atx_h4_marker] = ACTIONS(813), + [sym_atx_h5_marker] = ACTIONS(813), + [sym_atx_h6_marker] = ACTIONS(813), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(813), + [sym__thematic_break] = ACTIONS(813), + [sym__list_marker_minus] = ACTIONS(813), + [sym__list_marker_plus] = ACTIONS(813), + [sym__list_marker_star] = ACTIONS(813), + [sym__list_marker_parenthesis] = ACTIONS(813), + [sym__list_marker_dot] = ACTIONS(813), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_star_dont_interrupt] = ACTIONS(813), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(813), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(813), + [sym__fenced_code_block_start_backtick] = ACTIONS(813), + [sym__fenced_code_block_start_tilde] = ACTIONS(813), + [sym__blank_line_start] = ACTIONS(813), + [sym__code_span_start] = ACTIONS(813), + [sym__last_token_whitespace] = ACTIONS(817), + [sym__emphasis_open_star] = ACTIONS(813), + [sym__emphasis_open_underscore] = ACTIONS(813), + }, + [147] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(813), + [anon_sym_BANG] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_POUND] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_QMARK] = ACTIONS(813), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(813), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym__] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(815), + [anon_sym_LT_QMARK] = ACTIONS(815), + [aux_sym__html_block_4_token1] = ACTIONS(815), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(813), + [aux_sym__html_block_6_token1] = ACTIONS(815), + [aux_sym__html_block_6_token2] = ACTIONS(813), + [sym__open_tag_html_block] = ACTIONS(813), + [sym__open_tag_html_block_newline] = ACTIONS(813), + [sym__closing_tag_html_block] = ACTIONS(813), + [sym__closing_tag_html_block_newline] = ACTIONS(813), + [sym_backslash_escape] = ACTIONS(813), + [sym_uri_autolink] = ACTIONS(813), + [sym_email_autolink] = ACTIONS(813), + [sym_entity_reference] = ACTIONS(813), + [sym_numeric_character_reference] = ACTIONS(813), + [sym__whitespace_ge_2] = ACTIONS(813), + [aux_sym__whitespace_token1] = ACTIONS(815), + [sym__word_no_digit] = ACTIONS(813), + [sym__digits] = ACTIONS(813), + [aux_sym__newline_token1] = ACTIONS(813), + [sym__block_close] = ACTIONS(813), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(813), + [sym__indented_chunk_start] = ACTIONS(813), + [sym_atx_h1_marker] = ACTIONS(813), + [sym_atx_h2_marker] = ACTIONS(813), + [sym_atx_h3_marker] = ACTIONS(813), + [sym_atx_h4_marker] = ACTIONS(813), + [sym_atx_h5_marker] = ACTIONS(813), + [sym_atx_h6_marker] = ACTIONS(813), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(813), + [sym__thematic_break] = ACTIONS(813), + [sym__list_marker_minus] = ACTIONS(813), + [sym__list_marker_plus] = ACTIONS(813), + [sym__list_marker_star] = ACTIONS(813), + [sym__list_marker_parenthesis] = ACTIONS(813), + [sym__list_marker_dot] = ACTIONS(813), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_star_dont_interrupt] = ACTIONS(813), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(813), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(813), + [sym__fenced_code_block_start_backtick] = ACTIONS(813), + [sym__fenced_code_block_start_tilde] = ACTIONS(813), + [sym__blank_line_start] = ACTIONS(813), + [sym__code_span_start] = ACTIONS(813), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(813), + [sym__emphasis_open_underscore] = ACTIONS(813), + }, + [148] = { + [aux_sym__ignore_matching_tokens] = STATE(129), + [aux_sym__html_block_1_token1] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(819), + [anon_sym_POUND] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_COMMA] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_AT] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_BSLASH] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym__] = ACTIONS(819), + [anon_sym_BQUOTE] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(821), + [anon_sym_LT_QMARK] = ACTIONS(821), + [aux_sym__html_block_4_token1] = ACTIONS(821), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(819), + [aux_sym__html_block_6_token1] = ACTIONS(821), + [aux_sym__html_block_6_token2] = ACTIONS(819), + [sym__open_tag_html_block] = ACTIONS(819), + [sym__open_tag_html_block_newline] = ACTIONS(819), + [sym__closing_tag_html_block] = ACTIONS(819), + [sym__closing_tag_html_block_newline] = ACTIONS(819), + [sym_backslash_escape] = ACTIONS(819), + [sym_uri_autolink] = ACTIONS(819), + [sym_email_autolink] = ACTIONS(819), + [sym_entity_reference] = ACTIONS(819), + [sym_numeric_character_reference] = ACTIONS(819), + [sym__whitespace_ge_2] = ACTIONS(819), + [aux_sym__whitespace_token1] = ACTIONS(821), + [sym__word_no_digit] = ACTIONS(819), + [sym__digits] = ACTIONS(819), + [aux_sym__newline_token1] = ACTIONS(819), + [sym__block_close] = ACTIONS(819), + [sym__block_continuation] = ACTIONS(823), + [sym__block_quote_start] = ACTIONS(819), + [sym__indented_chunk_start] = ACTIONS(819), + [sym_atx_h1_marker] = ACTIONS(819), + [sym_atx_h2_marker] = ACTIONS(819), + [sym_atx_h3_marker] = ACTIONS(819), + [sym_atx_h4_marker] = ACTIONS(819), + [sym_atx_h5_marker] = ACTIONS(819), + [sym_atx_h6_marker] = ACTIONS(819), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(819), + [sym__thematic_break] = ACTIONS(819), + [sym__list_marker_minus] = ACTIONS(819), + [sym__list_marker_plus] = ACTIONS(819), + [sym__list_marker_star] = ACTIONS(819), + [sym__list_marker_parenthesis] = ACTIONS(819), + [sym__list_marker_dot] = ACTIONS(819), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_star_dont_interrupt] = ACTIONS(819), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(819), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(819), + [sym__fenced_code_block_start_backtick] = ACTIONS(819), + [sym__fenced_code_block_start_tilde] = ACTIONS(819), + [sym__blank_line_start] = ACTIONS(819), + [sym__code_span_start] = ACTIONS(819), + [sym__last_token_whitespace] = ACTIONS(823), + [sym__emphasis_open_star] = ACTIONS(819), + [sym__emphasis_open_underscore] = ACTIONS(819), + }, + [149] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(819), + [anon_sym_POUND] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_COMMA] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_AT] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_BSLASH] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym__] = ACTIONS(819), + [anon_sym_BQUOTE] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(821), + [anon_sym_LT_QMARK] = ACTIONS(821), + [aux_sym__html_block_4_token1] = ACTIONS(821), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(819), + [aux_sym__html_block_6_token1] = ACTIONS(821), + [aux_sym__html_block_6_token2] = ACTIONS(819), + [sym__open_tag_html_block] = ACTIONS(819), + [sym__open_tag_html_block_newline] = ACTIONS(819), + [sym__closing_tag_html_block] = ACTIONS(819), + [sym__closing_tag_html_block_newline] = ACTIONS(819), + [sym_backslash_escape] = ACTIONS(819), + [sym_uri_autolink] = ACTIONS(819), + [sym_email_autolink] = ACTIONS(819), + [sym_entity_reference] = ACTIONS(819), + [sym_numeric_character_reference] = ACTIONS(819), + [sym__whitespace_ge_2] = ACTIONS(819), + [aux_sym__whitespace_token1] = ACTIONS(821), + [sym__word_no_digit] = ACTIONS(819), + [sym__digits] = ACTIONS(819), + [aux_sym__newline_token1] = ACTIONS(819), + [sym__block_close] = ACTIONS(819), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(819), + [sym__indented_chunk_start] = ACTIONS(819), + [sym_atx_h1_marker] = ACTIONS(819), + [sym_atx_h2_marker] = ACTIONS(819), + [sym_atx_h3_marker] = ACTIONS(819), + [sym_atx_h4_marker] = ACTIONS(819), + [sym_atx_h5_marker] = ACTIONS(819), + [sym_atx_h6_marker] = ACTIONS(819), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(819), + [sym__thematic_break] = ACTIONS(819), + [sym__list_marker_minus] = ACTIONS(819), + [sym__list_marker_plus] = ACTIONS(819), + [sym__list_marker_star] = ACTIONS(819), + [sym__list_marker_parenthesis] = ACTIONS(819), + [sym__list_marker_dot] = ACTIONS(819), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_star_dont_interrupt] = ACTIONS(819), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(819), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(819), + [sym__fenced_code_block_start_backtick] = ACTIONS(819), + [sym__fenced_code_block_start_tilde] = ACTIONS(819), + [sym__blank_line_start] = ACTIONS(819), + [sym__code_span_start] = ACTIONS(819), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(819), + [sym__emphasis_open_underscore] = ACTIONS(819), + }, + [150] = { + [aux_sym__ignore_matching_tokens] = STATE(130), + [aux_sym__html_block_1_token1] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(825), + [anon_sym_PERCENT] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), + [anon_sym_SQUOTE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_DASH] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_SLASH] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_GT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(825), + [anon_sym_BSLASH] = ACTIONS(827), + [anon_sym_RBRACK] = ACTIONS(825), + [anon_sym_CARET] = ACTIONS(825), + [anon_sym__] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_PIPE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(827), + [anon_sym_LT_QMARK] = ACTIONS(827), + [aux_sym__html_block_4_token1] = ACTIONS(827), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(825), + [aux_sym__html_block_6_token1] = ACTIONS(827), + [aux_sym__html_block_6_token2] = ACTIONS(825), + [sym__open_tag_html_block] = ACTIONS(825), + [sym__open_tag_html_block_newline] = ACTIONS(825), + [sym__closing_tag_html_block] = ACTIONS(825), + [sym__closing_tag_html_block_newline] = ACTIONS(825), + [sym_backslash_escape] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(825), + [sym_email_autolink] = ACTIONS(825), + [sym_entity_reference] = ACTIONS(825), + [sym_numeric_character_reference] = ACTIONS(825), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(825), + [sym__digits] = ACTIONS(825), + [aux_sym__newline_token1] = ACTIONS(825), + [sym__block_close] = ACTIONS(825), + [sym__block_continuation] = ACTIONS(829), + [sym__block_quote_start] = ACTIONS(825), + [sym__indented_chunk_start] = ACTIONS(825), + [sym_atx_h1_marker] = ACTIONS(825), + [sym_atx_h2_marker] = ACTIONS(825), + [sym_atx_h3_marker] = ACTIONS(825), + [sym_atx_h4_marker] = ACTIONS(825), + [sym_atx_h5_marker] = ACTIONS(825), + [sym_atx_h6_marker] = ACTIONS(825), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(825), + [sym__thematic_break] = ACTIONS(825), + [sym__list_marker_minus] = ACTIONS(825), + [sym__list_marker_plus] = ACTIONS(825), + [sym__list_marker_star] = ACTIONS(825), + [sym__list_marker_parenthesis] = ACTIONS(825), + [sym__list_marker_dot] = ACTIONS(825), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_star_dont_interrupt] = ACTIONS(825), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(825), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(825), + [sym__fenced_code_block_start_backtick] = ACTIONS(825), + [sym__fenced_code_block_start_tilde] = ACTIONS(825), + [sym__blank_line_start] = ACTIONS(825), + [sym__code_span_start] = ACTIONS(825), + [sym__last_token_whitespace] = ACTIONS(829), + [sym__emphasis_open_star] = ACTIONS(825), + [sym__emphasis_open_underscore] = ACTIONS(825), + }, + [151] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(825), + [anon_sym_PERCENT] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), + [anon_sym_SQUOTE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_DASH] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_SLASH] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_GT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(825), + [anon_sym_BSLASH] = ACTIONS(827), + [anon_sym_RBRACK] = ACTIONS(825), + [anon_sym_CARET] = ACTIONS(825), + [anon_sym__] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_PIPE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(827), + [anon_sym_LT_QMARK] = ACTIONS(827), + [aux_sym__html_block_4_token1] = ACTIONS(827), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(825), + [aux_sym__html_block_6_token1] = ACTIONS(827), + [aux_sym__html_block_6_token2] = ACTIONS(825), + [sym__open_tag_html_block] = ACTIONS(825), + [sym__open_tag_html_block_newline] = ACTIONS(825), + [sym__closing_tag_html_block] = ACTIONS(825), + [sym__closing_tag_html_block_newline] = ACTIONS(825), + [sym_backslash_escape] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(825), + [sym_email_autolink] = ACTIONS(825), + [sym_entity_reference] = ACTIONS(825), + [sym_numeric_character_reference] = ACTIONS(825), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(825), + [sym__digits] = ACTIONS(825), + [aux_sym__newline_token1] = ACTIONS(825), + [sym__block_close] = ACTIONS(825), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(825), + [sym__indented_chunk_start] = ACTIONS(825), + [sym_atx_h1_marker] = ACTIONS(825), + [sym_atx_h2_marker] = ACTIONS(825), + [sym_atx_h3_marker] = ACTIONS(825), + [sym_atx_h4_marker] = ACTIONS(825), + [sym_atx_h5_marker] = ACTIONS(825), + [sym_atx_h6_marker] = ACTIONS(825), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(825), + [sym__thematic_break] = ACTIONS(825), + [sym__list_marker_minus] = ACTIONS(825), + [sym__list_marker_plus] = ACTIONS(825), + [sym__list_marker_star] = ACTIONS(825), + [sym__list_marker_parenthesis] = ACTIONS(825), + [sym__list_marker_dot] = ACTIONS(825), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_star_dont_interrupt] = ACTIONS(825), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(825), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(825), + [sym__fenced_code_block_start_backtick] = ACTIONS(825), + [sym__fenced_code_block_start_tilde] = ACTIONS(825), + [sym__blank_line_start] = ACTIONS(825), + [sym__code_span_start] = ACTIONS(825), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(825), + [sym__emphasis_open_underscore] = ACTIONS(825), + }, [152] = { - [aux_sym__ignore_matching_tokens] = STATE(236), + [aux_sym__ignore_matching_tokens] = STATE(131), + [aux_sym__html_block_1_token1] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_SQUOTE] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_DOT] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(833), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_BSLASH] = ACTIONS(833), + [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym__] = ACTIONS(831), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(833), + [anon_sym_LT_QMARK] = ACTIONS(833), + [aux_sym__html_block_4_token1] = ACTIONS(833), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(831), + [aux_sym__html_block_6_token1] = ACTIONS(833), + [aux_sym__html_block_6_token2] = ACTIONS(831), + [sym__open_tag_html_block] = ACTIONS(831), + [sym__open_tag_html_block_newline] = ACTIONS(831), + [sym__closing_tag_html_block] = ACTIONS(831), + [sym__closing_tag_html_block_newline] = ACTIONS(831), + [sym_backslash_escape] = ACTIONS(831), + [sym_uri_autolink] = ACTIONS(831), + [sym_email_autolink] = ACTIONS(831), + [sym_entity_reference] = ACTIONS(831), + [sym_numeric_character_reference] = ACTIONS(831), + [sym__whitespace_ge_2] = ACTIONS(831), + [aux_sym__whitespace_token1] = ACTIONS(833), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [aux_sym__newline_token1] = ACTIONS(831), + [sym__block_close] = ACTIONS(831), + [sym__block_continuation] = ACTIONS(835), + [sym__block_quote_start] = ACTIONS(831), + [sym__indented_chunk_start] = ACTIONS(831), + [sym_atx_h1_marker] = ACTIONS(831), + [sym_atx_h2_marker] = ACTIONS(831), + [sym_atx_h3_marker] = ACTIONS(831), + [sym_atx_h4_marker] = ACTIONS(831), + [sym_atx_h5_marker] = ACTIONS(831), + [sym_atx_h6_marker] = ACTIONS(831), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(831), + [sym__thematic_break] = ACTIONS(831), + [sym__list_marker_minus] = ACTIONS(831), + [sym__list_marker_plus] = ACTIONS(831), + [sym__list_marker_star] = ACTIONS(831), + [sym__list_marker_parenthesis] = ACTIONS(831), + [sym__list_marker_dot] = ACTIONS(831), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_star_dont_interrupt] = ACTIONS(831), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(831), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(831), + [sym__fenced_code_block_start_backtick] = ACTIONS(831), + [sym__fenced_code_block_start_tilde] = ACTIONS(831), + [sym__blank_line_start] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(831), + [sym__last_token_whitespace] = ACTIONS(835), + [sym__emphasis_open_star] = ACTIONS(831), + [sym__emphasis_open_underscore] = ACTIONS(831), + }, + [153] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_SQUOTE] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_DOT] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(833), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_BSLASH] = ACTIONS(833), + [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym__] = ACTIONS(831), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(833), + [anon_sym_LT_QMARK] = ACTIONS(833), + [aux_sym__html_block_4_token1] = ACTIONS(833), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(831), + [aux_sym__html_block_6_token1] = ACTIONS(833), + [aux_sym__html_block_6_token2] = ACTIONS(831), + [sym__open_tag_html_block] = ACTIONS(831), + [sym__open_tag_html_block_newline] = ACTIONS(831), + [sym__closing_tag_html_block] = ACTIONS(831), + [sym__closing_tag_html_block_newline] = ACTIONS(831), + [sym_backslash_escape] = ACTIONS(831), + [sym_uri_autolink] = ACTIONS(831), + [sym_email_autolink] = ACTIONS(831), + [sym_entity_reference] = ACTIONS(831), + [sym_numeric_character_reference] = ACTIONS(831), + [sym__whitespace_ge_2] = ACTIONS(831), + [aux_sym__whitespace_token1] = ACTIONS(833), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [aux_sym__newline_token1] = ACTIONS(831), + [sym__block_close] = ACTIONS(831), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(831), + [sym__indented_chunk_start] = ACTIONS(831), + [sym_atx_h1_marker] = ACTIONS(831), + [sym_atx_h2_marker] = ACTIONS(831), + [sym_atx_h3_marker] = ACTIONS(831), + [sym_atx_h4_marker] = ACTIONS(831), + [sym_atx_h5_marker] = ACTIONS(831), + [sym_atx_h6_marker] = ACTIONS(831), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(831), + [sym__thematic_break] = ACTIONS(831), + [sym__list_marker_minus] = ACTIONS(831), + [sym__list_marker_plus] = ACTIONS(831), + [sym__list_marker_star] = ACTIONS(831), + [sym__list_marker_parenthesis] = ACTIONS(831), + [sym__list_marker_dot] = ACTIONS(831), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_star_dont_interrupt] = ACTIONS(831), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(831), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(831), + [sym__fenced_code_block_start_backtick] = ACTIONS(831), + [sym__fenced_code_block_start_tilde] = ACTIONS(831), + [sym__blank_line_start] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(831), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(831), + [sym__emphasis_open_underscore] = ACTIONS(831), + }, + [154] = { + [aux_sym__ignore_matching_tokens] = STATE(133), + [aux_sym__html_block_1_token1] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_PERCENT] = ACTIONS(837), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(837), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(837), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_BSLASH] = ACTIONS(839), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(837), + [anon_sym__] = ACTIONS(837), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(839), + [anon_sym_LT_QMARK] = ACTIONS(839), + [aux_sym__html_block_4_token1] = ACTIONS(839), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(837), + [aux_sym__html_block_6_token1] = ACTIONS(839), + [aux_sym__html_block_6_token2] = ACTIONS(837), + [sym__open_tag_html_block] = ACTIONS(837), + [sym__open_tag_html_block_newline] = ACTIONS(837), + [sym__closing_tag_html_block] = ACTIONS(837), + [sym__closing_tag_html_block_newline] = ACTIONS(837), + [sym_backslash_escape] = ACTIONS(837), + [sym_uri_autolink] = ACTIONS(837), + [sym_email_autolink] = ACTIONS(837), + [sym_entity_reference] = ACTIONS(837), + [sym_numeric_character_reference] = ACTIONS(837), + [sym__whitespace_ge_2] = ACTIONS(837), + [aux_sym__whitespace_token1] = ACTIONS(839), + [sym__word_no_digit] = ACTIONS(837), + [sym__digits] = ACTIONS(837), + [aux_sym__newline_token1] = ACTIONS(837), + [sym__block_close] = ACTIONS(837), + [sym__block_continuation] = ACTIONS(841), + [sym__block_quote_start] = ACTIONS(837), + [sym__indented_chunk_start] = ACTIONS(837), + [sym_atx_h1_marker] = ACTIONS(837), + [sym_atx_h2_marker] = ACTIONS(837), + [sym_atx_h3_marker] = ACTIONS(837), + [sym_atx_h4_marker] = ACTIONS(837), + [sym_atx_h5_marker] = ACTIONS(837), + [sym_atx_h6_marker] = ACTIONS(837), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(837), + [sym__thematic_break] = ACTIONS(837), + [sym__list_marker_minus] = ACTIONS(837), + [sym__list_marker_plus] = ACTIONS(837), + [sym__list_marker_star] = ACTIONS(837), + [sym__list_marker_parenthesis] = ACTIONS(837), + [sym__list_marker_dot] = ACTIONS(837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(837), + [sym__fenced_code_block_start_backtick] = ACTIONS(837), + [sym__fenced_code_block_start_tilde] = ACTIONS(837), + [sym__blank_line_start] = ACTIONS(837), + [sym__code_span_start] = ACTIONS(837), + [sym__last_token_whitespace] = ACTIONS(841), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(837), + }, + [155] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_PERCENT] = ACTIONS(837), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(837), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(837), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_BSLASH] = ACTIONS(839), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(837), + [anon_sym__] = ACTIONS(837), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(839), + [anon_sym_LT_QMARK] = ACTIONS(839), + [aux_sym__html_block_4_token1] = ACTIONS(839), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(837), + [aux_sym__html_block_6_token1] = ACTIONS(839), + [aux_sym__html_block_6_token2] = ACTIONS(837), + [sym__open_tag_html_block] = ACTIONS(837), + [sym__open_tag_html_block_newline] = ACTIONS(837), + [sym__closing_tag_html_block] = ACTIONS(837), + [sym__closing_tag_html_block_newline] = ACTIONS(837), + [sym_backslash_escape] = ACTIONS(837), + [sym_uri_autolink] = ACTIONS(837), + [sym_email_autolink] = ACTIONS(837), + [sym_entity_reference] = ACTIONS(837), + [sym_numeric_character_reference] = ACTIONS(837), + [sym__whitespace_ge_2] = ACTIONS(837), + [aux_sym__whitespace_token1] = ACTIONS(839), + [sym__word_no_digit] = ACTIONS(837), + [sym__digits] = ACTIONS(837), + [aux_sym__newline_token1] = ACTIONS(837), + [sym__block_close] = ACTIONS(837), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(837), + [sym__indented_chunk_start] = ACTIONS(837), + [sym_atx_h1_marker] = ACTIONS(837), + [sym_atx_h2_marker] = ACTIONS(837), + [sym_atx_h3_marker] = ACTIONS(837), + [sym_atx_h4_marker] = ACTIONS(837), + [sym_atx_h5_marker] = ACTIONS(837), + [sym_atx_h6_marker] = ACTIONS(837), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(837), + [sym__thematic_break] = ACTIONS(837), + [sym__list_marker_minus] = ACTIONS(837), + [sym__list_marker_plus] = ACTIONS(837), + [sym__list_marker_star] = ACTIONS(837), + [sym__list_marker_parenthesis] = ACTIONS(837), + [sym__list_marker_dot] = ACTIONS(837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(837), + [sym__fenced_code_block_start_backtick] = ACTIONS(837), + [sym__fenced_code_block_start_tilde] = ACTIONS(837), + [sym__blank_line_start] = ACTIONS(837), + [sym__code_span_start] = ACTIONS(837), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(837), + }, + [156] = { + [aux_sym__ignore_matching_tokens] = STATE(135), + [aux_sym__html_block_1_token1] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DOT] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BSLASH] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym__] = ACTIONS(843), + [anon_sym_BQUOTE] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), + [anon_sym_LT_QMARK] = ACTIONS(845), + [aux_sym__html_block_4_token1] = ACTIONS(845), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), + [aux_sym__html_block_6_token1] = ACTIONS(845), + [aux_sym__html_block_6_token2] = ACTIONS(843), + [sym__open_tag_html_block] = ACTIONS(843), + [sym__open_tag_html_block_newline] = ACTIONS(843), + [sym__closing_tag_html_block] = ACTIONS(843), + [sym__closing_tag_html_block_newline] = ACTIONS(843), + [sym_backslash_escape] = ACTIONS(843), + [sym_uri_autolink] = ACTIONS(843), + [sym_email_autolink] = ACTIONS(843), + [sym_entity_reference] = ACTIONS(843), + [sym_numeric_character_reference] = ACTIONS(843), + [sym__whitespace_ge_2] = ACTIONS(843), + [aux_sym__whitespace_token1] = ACTIONS(845), + [sym__word_no_digit] = ACTIONS(843), + [sym__digits] = ACTIONS(843), + [aux_sym__newline_token1] = ACTIONS(843), + [sym__block_close] = ACTIONS(843), + [sym__block_continuation] = ACTIONS(847), + [sym__block_quote_start] = ACTIONS(843), + [sym__indented_chunk_start] = ACTIONS(843), + [sym_atx_h1_marker] = ACTIONS(843), + [sym_atx_h2_marker] = ACTIONS(843), + [sym_atx_h3_marker] = ACTIONS(843), + [sym_atx_h4_marker] = ACTIONS(843), + [sym_atx_h5_marker] = ACTIONS(843), + [sym_atx_h6_marker] = ACTIONS(843), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(843), + [sym__thematic_break] = ACTIONS(843), + [sym__list_marker_minus] = ACTIONS(843), + [sym__list_marker_plus] = ACTIONS(843), + [sym__list_marker_star] = ACTIONS(843), + [sym__list_marker_parenthesis] = ACTIONS(843), + [sym__list_marker_dot] = ACTIONS(843), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_star_dont_interrupt] = ACTIONS(843), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), + [sym__fenced_code_block_start_backtick] = ACTIONS(843), + [sym__fenced_code_block_start_tilde] = ACTIONS(843), + [sym__blank_line_start] = ACTIONS(843), + [sym__code_span_start] = ACTIONS(843), + [sym__last_token_whitespace] = ACTIONS(847), + [sym__emphasis_open_star] = ACTIONS(843), + [sym__emphasis_open_underscore] = ACTIONS(843), + }, + [157] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DOT] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BSLASH] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym__] = ACTIONS(843), + [anon_sym_BQUOTE] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), + [anon_sym_LT_QMARK] = ACTIONS(845), + [aux_sym__html_block_4_token1] = ACTIONS(845), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), + [aux_sym__html_block_6_token1] = ACTIONS(845), + [aux_sym__html_block_6_token2] = ACTIONS(843), + [sym__open_tag_html_block] = ACTIONS(843), + [sym__open_tag_html_block_newline] = ACTIONS(843), + [sym__closing_tag_html_block] = ACTIONS(843), + [sym__closing_tag_html_block_newline] = ACTIONS(843), + [sym_backslash_escape] = ACTIONS(843), + [sym_uri_autolink] = ACTIONS(843), + [sym_email_autolink] = ACTIONS(843), + [sym_entity_reference] = ACTIONS(843), + [sym_numeric_character_reference] = ACTIONS(843), + [sym__whitespace_ge_2] = ACTIONS(843), + [aux_sym__whitespace_token1] = ACTIONS(845), + [sym__word_no_digit] = ACTIONS(843), + [sym__digits] = ACTIONS(843), + [aux_sym__newline_token1] = ACTIONS(843), + [sym__block_close] = ACTIONS(843), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(843), + [sym__indented_chunk_start] = ACTIONS(843), + [sym_atx_h1_marker] = ACTIONS(843), + [sym_atx_h2_marker] = ACTIONS(843), + [sym_atx_h3_marker] = ACTIONS(843), + [sym_atx_h4_marker] = ACTIONS(843), + [sym_atx_h5_marker] = ACTIONS(843), + [sym_atx_h6_marker] = ACTIONS(843), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(843), + [sym__thematic_break] = ACTIONS(843), + [sym__list_marker_minus] = ACTIONS(843), + [sym__list_marker_plus] = ACTIONS(843), + [sym__list_marker_star] = ACTIONS(843), + [sym__list_marker_parenthesis] = ACTIONS(843), + [sym__list_marker_dot] = ACTIONS(843), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_star_dont_interrupt] = ACTIONS(843), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), + [sym__fenced_code_block_start_backtick] = ACTIONS(843), + [sym__fenced_code_block_start_tilde] = ACTIONS(843), + [sym__blank_line_start] = ACTIONS(843), + [sym__code_span_start] = ACTIONS(843), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(843), + [sym__emphasis_open_underscore] = ACTIONS(843), + }, + [158] = { + [aux_sym__ignore_matching_tokens] = STATE(136), + [aux_sym__html_block_1_token1] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_POUND] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_SQUOTE] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_BSLASH] = ACTIONS(851), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym__] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), + [anon_sym_LT_QMARK] = ACTIONS(851), + [aux_sym__html_block_4_token1] = ACTIONS(851), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), + [aux_sym__html_block_6_token1] = ACTIONS(851), + [aux_sym__html_block_6_token2] = ACTIONS(849), + [sym__open_tag_html_block] = ACTIONS(849), + [sym__open_tag_html_block_newline] = ACTIONS(849), + [sym__closing_tag_html_block] = ACTIONS(849), + [sym__closing_tag_html_block_newline] = ACTIONS(849), + [sym_backslash_escape] = ACTIONS(849), + [sym_uri_autolink] = ACTIONS(849), + [sym_email_autolink] = ACTIONS(849), + [sym_entity_reference] = ACTIONS(849), + [sym_numeric_character_reference] = ACTIONS(849), + [sym__whitespace_ge_2] = ACTIONS(849), + [aux_sym__whitespace_token1] = ACTIONS(851), + [sym__word_no_digit] = ACTIONS(849), + [sym__digits] = ACTIONS(849), + [aux_sym__newline_token1] = ACTIONS(849), + [sym__block_close] = ACTIONS(849), + [sym__block_continuation] = ACTIONS(853), + [sym__block_quote_start] = ACTIONS(849), + [sym__indented_chunk_start] = ACTIONS(849), + [sym_atx_h1_marker] = ACTIONS(849), + [sym_atx_h2_marker] = ACTIONS(849), + [sym_atx_h3_marker] = ACTIONS(849), + [sym_atx_h4_marker] = ACTIONS(849), + [sym_atx_h5_marker] = ACTIONS(849), + [sym_atx_h6_marker] = ACTIONS(849), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(849), + [sym__thematic_break] = ACTIONS(849), + [sym__list_marker_minus] = ACTIONS(849), + [sym__list_marker_plus] = ACTIONS(849), + [sym__list_marker_star] = ACTIONS(849), + [sym__list_marker_parenthesis] = ACTIONS(849), + [sym__list_marker_dot] = ACTIONS(849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), + [sym__fenced_code_block_start_backtick] = ACTIONS(849), + [sym__fenced_code_block_start_tilde] = ACTIONS(849), + [sym__blank_line_start] = ACTIONS(849), + [sym__code_span_start] = ACTIONS(849), + [sym__last_token_whitespace] = ACTIONS(853), + [sym__emphasis_open_star] = ACTIONS(849), + [sym__emphasis_open_underscore] = ACTIONS(849), + }, + [159] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_POUND] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_SQUOTE] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_BSLASH] = ACTIONS(851), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym__] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), + [anon_sym_LT_QMARK] = ACTIONS(851), + [aux_sym__html_block_4_token1] = ACTIONS(851), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), + [aux_sym__html_block_6_token1] = ACTIONS(851), + [aux_sym__html_block_6_token2] = ACTIONS(849), + [sym__open_tag_html_block] = ACTIONS(849), + [sym__open_tag_html_block_newline] = ACTIONS(849), + [sym__closing_tag_html_block] = ACTIONS(849), + [sym__closing_tag_html_block_newline] = ACTIONS(849), + [sym_backslash_escape] = ACTIONS(849), + [sym_uri_autolink] = ACTIONS(849), + [sym_email_autolink] = ACTIONS(849), + [sym_entity_reference] = ACTIONS(849), + [sym_numeric_character_reference] = ACTIONS(849), + [sym__whitespace_ge_2] = ACTIONS(849), + [aux_sym__whitespace_token1] = ACTIONS(851), + [sym__word_no_digit] = ACTIONS(849), + [sym__digits] = ACTIONS(849), + [aux_sym__newline_token1] = ACTIONS(849), + [sym__block_close] = ACTIONS(849), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(849), + [sym__indented_chunk_start] = ACTIONS(849), + [sym_atx_h1_marker] = ACTIONS(849), + [sym_atx_h2_marker] = ACTIONS(849), + [sym_atx_h3_marker] = ACTIONS(849), + [sym_atx_h4_marker] = ACTIONS(849), + [sym_atx_h5_marker] = ACTIONS(849), + [sym_atx_h6_marker] = ACTIONS(849), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(849), + [sym__thematic_break] = ACTIONS(849), + [sym__list_marker_minus] = ACTIONS(849), + [sym__list_marker_plus] = ACTIONS(849), + [sym__list_marker_star] = ACTIONS(849), + [sym__list_marker_parenthesis] = ACTIONS(849), + [sym__list_marker_dot] = ACTIONS(849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), + [sym__fenced_code_block_start_backtick] = ACTIONS(849), + [sym__fenced_code_block_start_tilde] = ACTIONS(849), + [sym__blank_line_start] = ACTIONS(849), + [sym__code_span_start] = ACTIONS(849), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(849), + [sym__emphasis_open_underscore] = ACTIONS(849), + }, + [160] = { + [aux_sym__ignore_matching_tokens] = STATE(137), + [aux_sym__html_block_1_token1] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_BSLASH] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym__] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), + [anon_sym_LT_QMARK] = ACTIONS(857), + [aux_sym__html_block_4_token1] = ACTIONS(857), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), + [aux_sym__html_block_6_token1] = ACTIONS(857), + [aux_sym__html_block_6_token2] = ACTIONS(855), + [sym__open_tag_html_block] = ACTIONS(855), + [sym__open_tag_html_block_newline] = ACTIONS(855), + [sym__closing_tag_html_block] = ACTIONS(855), + [sym__closing_tag_html_block_newline] = ACTIONS(855), + [sym_backslash_escape] = ACTIONS(855), + [sym_uri_autolink] = ACTIONS(855), + [sym_email_autolink] = ACTIONS(855), + [sym_entity_reference] = ACTIONS(855), + [sym_numeric_character_reference] = ACTIONS(855), + [sym__whitespace_ge_2] = ACTIONS(855), + [aux_sym__whitespace_token1] = ACTIONS(857), + [sym__word_no_digit] = ACTIONS(855), + [sym__digits] = ACTIONS(855), + [aux_sym__newline_token1] = ACTIONS(855), + [sym__block_close] = ACTIONS(855), + [sym__block_continuation] = ACTIONS(859), + [sym__block_quote_start] = ACTIONS(855), + [sym__indented_chunk_start] = ACTIONS(855), + [sym_atx_h1_marker] = ACTIONS(855), + [sym_atx_h2_marker] = ACTIONS(855), + [sym_atx_h3_marker] = ACTIONS(855), + [sym_atx_h4_marker] = ACTIONS(855), + [sym_atx_h5_marker] = ACTIONS(855), + [sym_atx_h6_marker] = ACTIONS(855), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(855), + [sym__thematic_break] = ACTIONS(855), + [sym__list_marker_minus] = ACTIONS(855), + [sym__list_marker_plus] = ACTIONS(855), + [sym__list_marker_star] = ACTIONS(855), + [sym__list_marker_parenthesis] = ACTIONS(855), + [sym__list_marker_dot] = ACTIONS(855), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_star_dont_interrupt] = ACTIONS(855), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), + [sym__fenced_code_block_start_backtick] = ACTIONS(855), + [sym__fenced_code_block_start_tilde] = ACTIONS(855), + [sym__blank_line_start] = ACTIONS(855), + [sym__code_span_start] = ACTIONS(855), + [sym__last_token_whitespace] = ACTIONS(859), + [sym__emphasis_open_star] = ACTIONS(855), + [sym__emphasis_open_underscore] = ACTIONS(855), + }, + [161] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_BSLASH] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym__] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), + [anon_sym_LT_QMARK] = ACTIONS(857), + [aux_sym__html_block_4_token1] = ACTIONS(857), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), + [aux_sym__html_block_6_token1] = ACTIONS(857), + [aux_sym__html_block_6_token2] = ACTIONS(855), + [sym__open_tag_html_block] = ACTIONS(855), + [sym__open_tag_html_block_newline] = ACTIONS(855), + [sym__closing_tag_html_block] = ACTIONS(855), + [sym__closing_tag_html_block_newline] = ACTIONS(855), + [sym_backslash_escape] = ACTIONS(855), + [sym_uri_autolink] = ACTIONS(855), + [sym_email_autolink] = ACTIONS(855), + [sym_entity_reference] = ACTIONS(855), + [sym_numeric_character_reference] = ACTIONS(855), + [sym__whitespace_ge_2] = ACTIONS(855), + [aux_sym__whitespace_token1] = ACTIONS(857), + [sym__word_no_digit] = ACTIONS(855), + [sym__digits] = ACTIONS(855), + [aux_sym__newline_token1] = ACTIONS(855), + [sym__block_close] = ACTIONS(855), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(855), + [sym__indented_chunk_start] = ACTIONS(855), + [sym_atx_h1_marker] = ACTIONS(855), + [sym_atx_h2_marker] = ACTIONS(855), + [sym_atx_h3_marker] = ACTIONS(855), + [sym_atx_h4_marker] = ACTIONS(855), + [sym_atx_h5_marker] = ACTIONS(855), + [sym_atx_h6_marker] = ACTIONS(855), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(855), + [sym__thematic_break] = ACTIONS(855), + [sym__list_marker_minus] = ACTIONS(855), + [sym__list_marker_plus] = ACTIONS(855), + [sym__list_marker_star] = ACTIONS(855), + [sym__list_marker_parenthesis] = ACTIONS(855), + [sym__list_marker_dot] = ACTIONS(855), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_star_dont_interrupt] = ACTIONS(855), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), + [sym__fenced_code_block_start_backtick] = ACTIONS(855), + [sym__fenced_code_block_start_tilde] = ACTIONS(855), + [sym__blank_line_start] = ACTIONS(855), + [sym__code_span_start] = ACTIONS(855), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(855), + [sym__emphasis_open_underscore] = ACTIONS(855), + }, + [162] = { + [aux_sym__ignore_matching_tokens] = STATE(138), + [aux_sym__html_block_1_token1] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_BSLASH] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym__] = ACTIONS(861), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), + [anon_sym_LT_QMARK] = ACTIONS(863), + [aux_sym__html_block_4_token1] = ACTIONS(863), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), + [aux_sym__html_block_6_token1] = ACTIONS(863), + [aux_sym__html_block_6_token2] = ACTIONS(861), + [sym__open_tag_html_block] = ACTIONS(861), + [sym__open_tag_html_block_newline] = ACTIONS(861), + [sym__closing_tag_html_block] = ACTIONS(861), + [sym__closing_tag_html_block_newline] = ACTIONS(861), + [sym_backslash_escape] = ACTIONS(861), + [sym_uri_autolink] = ACTIONS(861), + [sym_email_autolink] = ACTIONS(861), + [sym_entity_reference] = ACTIONS(861), + [sym_numeric_character_reference] = ACTIONS(861), + [sym__whitespace_ge_2] = ACTIONS(861), + [aux_sym__whitespace_token1] = ACTIONS(863), + [sym__word_no_digit] = ACTIONS(861), + [sym__digits] = ACTIONS(861), + [aux_sym__newline_token1] = ACTIONS(861), + [sym__block_close] = ACTIONS(861), + [sym__block_continuation] = ACTIONS(865), + [sym__block_quote_start] = ACTIONS(861), + [sym__indented_chunk_start] = ACTIONS(861), + [sym_atx_h1_marker] = ACTIONS(861), + [sym_atx_h2_marker] = ACTIONS(861), + [sym_atx_h3_marker] = ACTIONS(861), + [sym_atx_h4_marker] = ACTIONS(861), + [sym_atx_h5_marker] = ACTIONS(861), + [sym_atx_h6_marker] = ACTIONS(861), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(861), + [sym__thematic_break] = ACTIONS(861), + [sym__list_marker_minus] = ACTIONS(861), + [sym__list_marker_plus] = ACTIONS(861), + [sym__list_marker_star] = ACTIONS(861), + [sym__list_marker_parenthesis] = ACTIONS(861), + [sym__list_marker_dot] = ACTIONS(861), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_star_dont_interrupt] = ACTIONS(861), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), + [sym__fenced_code_block_start_backtick] = ACTIONS(861), + [sym__fenced_code_block_start_tilde] = ACTIONS(861), + [sym__blank_line_start] = ACTIONS(861), + [sym__code_span_start] = ACTIONS(861), + [sym__last_token_whitespace] = ACTIONS(865), + [sym__emphasis_open_star] = ACTIONS(861), + [sym__emphasis_open_underscore] = ACTIONS(861), + }, + [163] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_BSLASH] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym__] = ACTIONS(861), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), + [anon_sym_LT_QMARK] = ACTIONS(863), + [aux_sym__html_block_4_token1] = ACTIONS(863), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), + [aux_sym__html_block_6_token1] = ACTIONS(863), + [aux_sym__html_block_6_token2] = ACTIONS(861), + [sym__open_tag_html_block] = ACTIONS(861), + [sym__open_tag_html_block_newline] = ACTIONS(861), + [sym__closing_tag_html_block] = ACTIONS(861), + [sym__closing_tag_html_block_newline] = ACTIONS(861), + [sym_backslash_escape] = ACTIONS(861), + [sym_uri_autolink] = ACTIONS(861), + [sym_email_autolink] = ACTIONS(861), + [sym_entity_reference] = ACTIONS(861), + [sym_numeric_character_reference] = ACTIONS(861), + [sym__whitespace_ge_2] = ACTIONS(861), + [aux_sym__whitespace_token1] = ACTIONS(863), + [sym__word_no_digit] = ACTIONS(861), + [sym__digits] = ACTIONS(861), + [aux_sym__newline_token1] = ACTIONS(861), + [sym__block_close] = ACTIONS(861), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(861), + [sym__indented_chunk_start] = ACTIONS(861), + [sym_atx_h1_marker] = ACTIONS(861), + [sym_atx_h2_marker] = ACTIONS(861), + [sym_atx_h3_marker] = ACTIONS(861), + [sym_atx_h4_marker] = ACTIONS(861), + [sym_atx_h5_marker] = ACTIONS(861), + [sym_atx_h6_marker] = ACTIONS(861), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(861), + [sym__thematic_break] = ACTIONS(861), + [sym__list_marker_minus] = ACTIONS(861), + [sym__list_marker_plus] = ACTIONS(861), + [sym__list_marker_star] = ACTIONS(861), + [sym__list_marker_parenthesis] = ACTIONS(861), + [sym__list_marker_dot] = ACTIONS(861), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_star_dont_interrupt] = ACTIONS(861), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), + [sym__fenced_code_block_start_backtick] = ACTIONS(861), + [sym__fenced_code_block_start_tilde] = ACTIONS(861), + [sym__blank_line_start] = ACTIONS(861), + [sym__code_span_start] = ACTIONS(861), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(861), + [sym__emphasis_open_underscore] = ACTIONS(861), + }, + [164] = { + [aux_sym__ignore_matching_tokens] = STATE(139), + [aux_sym__html_block_1_token1] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_RPAREN] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_COLON] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_BSLASH] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym__] = ACTIONS(867), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), + [anon_sym_LT_QMARK] = ACTIONS(869), + [aux_sym__html_block_4_token1] = ACTIONS(869), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), + [aux_sym__html_block_6_token1] = ACTIONS(869), + [aux_sym__html_block_6_token2] = ACTIONS(867), + [sym__open_tag_html_block] = ACTIONS(867), + [sym__open_tag_html_block_newline] = ACTIONS(867), + [sym__closing_tag_html_block] = ACTIONS(867), + [sym__closing_tag_html_block_newline] = ACTIONS(867), + [sym_backslash_escape] = ACTIONS(867), + [sym_uri_autolink] = ACTIONS(867), + [sym_email_autolink] = ACTIONS(867), + [sym_entity_reference] = ACTIONS(867), + [sym_numeric_character_reference] = ACTIONS(867), + [sym__whitespace_ge_2] = ACTIONS(867), + [aux_sym__whitespace_token1] = ACTIONS(869), + [sym__word_no_digit] = ACTIONS(867), + [sym__digits] = ACTIONS(867), + [aux_sym__newline_token1] = ACTIONS(867), + [sym__block_close] = ACTIONS(867), + [sym__block_continuation] = ACTIONS(871), + [sym__block_quote_start] = ACTIONS(867), + [sym__indented_chunk_start] = ACTIONS(867), + [sym_atx_h1_marker] = ACTIONS(867), + [sym_atx_h2_marker] = ACTIONS(867), + [sym_atx_h3_marker] = ACTIONS(867), + [sym_atx_h4_marker] = ACTIONS(867), + [sym_atx_h5_marker] = ACTIONS(867), + [sym_atx_h6_marker] = ACTIONS(867), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(867), + [sym__thematic_break] = ACTIONS(867), + [sym__list_marker_minus] = ACTIONS(867), + [sym__list_marker_plus] = ACTIONS(867), + [sym__list_marker_star] = ACTIONS(867), + [sym__list_marker_parenthesis] = ACTIONS(867), + [sym__list_marker_dot] = ACTIONS(867), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_star_dont_interrupt] = ACTIONS(867), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), + [sym__fenced_code_block_start_backtick] = ACTIONS(867), + [sym__fenced_code_block_start_tilde] = ACTIONS(867), + [sym__blank_line_start] = ACTIONS(867), + [sym__code_span_start] = ACTIONS(867), + [sym__last_token_whitespace] = ACTIONS(871), + [sym__emphasis_open_star] = ACTIONS(867), + [sym__emphasis_open_underscore] = ACTIONS(867), + }, + [165] = { + [sym_shortcut_link] = STATE(245), + [sym_full_reference_link] = STATE(245), + [sym_collapsed_reference_link] = STATE(245), + [sym_inline_link] = STATE(245), + [sym_image] = STATE(245), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym__soft_line_break] = STATE(245), + [sym_hard_line_break] = STATE(245), + [sym_html_tag] = STATE(245), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(245), + [sym__word] = STATE(245), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star] = STATE(245), + [aux_sym__inline_no_star] = STATE(245), + [sym__text_inline_no_star] = STATE(245), + [sym__emphasis_star] = STATE(747), + [sym__strong_emphasis_star] = STATE(245), + [sym__emphasis_underscore] = STATE(747), + [sym__strong_emphasis_underscore] = STATE(245), + [sym__code_span] = STATE(245), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(885), + [anon_sym_LT_QMARK] = ACTIONS(887), + [aux_sym__html_block_4_token1] = ACTIONS(889), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(893), + [sym_uri_autolink] = ACTIONS(893), + [sym_email_autolink] = ACTIONS(893), + [sym_entity_reference] = ACTIONS(893), + [sym_numeric_character_reference] = ACTIONS(893), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(893), + [sym__digits] = ACTIONS(893), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(899), + [sym__emphasis_open_star] = ACTIONS(901), + [sym__emphasis_open_underscore] = ACTIONS(903), + [sym__emphasis_close_star] = ACTIONS(905), + }, + [166] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_RPAREN] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_COLON] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_BSLASH] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym__] = ACTIONS(867), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), + [anon_sym_LT_QMARK] = ACTIONS(869), + [aux_sym__html_block_4_token1] = ACTIONS(869), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), + [aux_sym__html_block_6_token1] = ACTIONS(869), + [aux_sym__html_block_6_token2] = ACTIONS(867), + [sym__open_tag_html_block] = ACTIONS(867), + [sym__open_tag_html_block_newline] = ACTIONS(867), + [sym__closing_tag_html_block] = ACTIONS(867), + [sym__closing_tag_html_block_newline] = ACTIONS(867), + [sym_backslash_escape] = ACTIONS(867), + [sym_uri_autolink] = ACTIONS(867), + [sym_email_autolink] = ACTIONS(867), + [sym_entity_reference] = ACTIONS(867), + [sym_numeric_character_reference] = ACTIONS(867), + [sym__whitespace_ge_2] = ACTIONS(867), + [aux_sym__whitespace_token1] = ACTIONS(869), + [sym__word_no_digit] = ACTIONS(867), + [sym__digits] = ACTIONS(867), + [aux_sym__newline_token1] = ACTIONS(867), + [sym__block_close] = ACTIONS(867), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(867), + [sym__indented_chunk_start] = ACTIONS(867), + [sym_atx_h1_marker] = ACTIONS(867), + [sym_atx_h2_marker] = ACTIONS(867), + [sym_atx_h3_marker] = ACTIONS(867), + [sym_atx_h4_marker] = ACTIONS(867), + [sym_atx_h5_marker] = ACTIONS(867), + [sym_atx_h6_marker] = ACTIONS(867), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(867), + [sym__thematic_break] = ACTIONS(867), + [sym__list_marker_minus] = ACTIONS(867), + [sym__list_marker_plus] = ACTIONS(867), + [sym__list_marker_star] = ACTIONS(867), + [sym__list_marker_parenthesis] = ACTIONS(867), + [sym__list_marker_dot] = ACTIONS(867), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_star_dont_interrupt] = ACTIONS(867), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), + [sym__fenced_code_block_start_backtick] = ACTIONS(867), + [sym__fenced_code_block_start_tilde] = ACTIONS(867), + [sym__blank_line_start] = ACTIONS(867), + [sym__code_span_start] = ACTIONS(867), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(867), + [sym__emphasis_open_underscore] = ACTIONS(867), + }, + [167] = { + [aux_sym__ignore_matching_tokens] = STATE(140), + [aux_sym__html_block_1_token1] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_BSLASH] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym__] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_TILDE] = ACTIONS(907), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(909), + [anon_sym_LT_QMARK] = ACTIONS(909), + [aux_sym__html_block_4_token1] = ACTIONS(909), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(907), + [aux_sym__html_block_6_token1] = ACTIONS(909), + [aux_sym__html_block_6_token2] = ACTIONS(907), + [sym__open_tag_html_block] = ACTIONS(907), + [sym__open_tag_html_block_newline] = ACTIONS(907), + [sym__closing_tag_html_block] = ACTIONS(907), + [sym__closing_tag_html_block_newline] = ACTIONS(907), + [sym_backslash_escape] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = ACTIONS(907), + [sym_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym__whitespace_ge_2] = ACTIONS(907), + [aux_sym__whitespace_token1] = ACTIONS(909), + [sym__word_no_digit] = ACTIONS(907), + [sym__digits] = ACTIONS(907), + [aux_sym__newline_token1] = ACTIONS(907), + [sym__block_close] = ACTIONS(907), + [sym__block_continuation] = ACTIONS(911), + [sym__block_quote_start] = ACTIONS(907), + [sym__indented_chunk_start] = ACTIONS(907), + [sym_atx_h1_marker] = ACTIONS(907), + [sym_atx_h2_marker] = ACTIONS(907), + [sym_atx_h3_marker] = ACTIONS(907), + [sym_atx_h4_marker] = ACTIONS(907), + [sym_atx_h5_marker] = ACTIONS(907), + [sym_atx_h6_marker] = ACTIONS(907), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(907), + [sym__thematic_break] = ACTIONS(907), + [sym__list_marker_minus] = ACTIONS(907), + [sym__list_marker_plus] = ACTIONS(907), + [sym__list_marker_star] = ACTIONS(907), + [sym__list_marker_parenthesis] = ACTIONS(907), + [sym__list_marker_dot] = ACTIONS(907), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_star_dont_interrupt] = ACTIONS(907), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(907), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(907), + [sym__fenced_code_block_start_backtick] = ACTIONS(907), + [sym__fenced_code_block_start_tilde] = ACTIONS(907), + [sym__blank_line_start] = ACTIONS(907), + [sym__code_span_start] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(911), + [sym__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), + }, + [168] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_BSLASH] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym__] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_TILDE] = ACTIONS(907), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(909), + [anon_sym_LT_QMARK] = ACTIONS(909), + [aux_sym__html_block_4_token1] = ACTIONS(909), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(907), + [aux_sym__html_block_6_token1] = ACTIONS(909), + [aux_sym__html_block_6_token2] = ACTIONS(907), + [sym__open_tag_html_block] = ACTIONS(907), + [sym__open_tag_html_block_newline] = ACTIONS(907), + [sym__closing_tag_html_block] = ACTIONS(907), + [sym__closing_tag_html_block_newline] = ACTIONS(907), + [sym_backslash_escape] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = ACTIONS(907), + [sym_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym__whitespace_ge_2] = ACTIONS(907), + [aux_sym__whitespace_token1] = ACTIONS(909), + [sym__word_no_digit] = ACTIONS(907), + [sym__digits] = ACTIONS(907), + [aux_sym__newline_token1] = ACTIONS(907), + [sym__block_close] = ACTIONS(907), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(907), + [sym__indented_chunk_start] = ACTIONS(907), + [sym_atx_h1_marker] = ACTIONS(907), + [sym_atx_h2_marker] = ACTIONS(907), + [sym_atx_h3_marker] = ACTIONS(907), + [sym_atx_h4_marker] = ACTIONS(907), + [sym_atx_h5_marker] = ACTIONS(907), + [sym_atx_h6_marker] = ACTIONS(907), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(907), + [sym__thematic_break] = ACTIONS(907), + [sym__list_marker_minus] = ACTIONS(907), + [sym__list_marker_plus] = ACTIONS(907), + [sym__list_marker_star] = ACTIONS(907), + [sym__list_marker_parenthesis] = ACTIONS(907), + [sym__list_marker_dot] = ACTIONS(907), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_star_dont_interrupt] = ACTIONS(907), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(907), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(907), + [sym__fenced_code_block_start_backtick] = ACTIONS(907), + [sym__fenced_code_block_start_tilde] = ACTIONS(907), + [sym__blank_line_start] = ACTIONS(907), + [sym__code_span_start] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), + }, + [169] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_BSLASH] = ACTIONS(915), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym__] = ACTIONS(913), + [anon_sym_BQUOTE] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(915), + [anon_sym_LT_QMARK] = ACTIONS(915), + [aux_sym__html_block_4_token1] = ACTIONS(915), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(913), + [aux_sym__html_block_6_token1] = ACTIONS(915), + [aux_sym__html_block_6_token2] = ACTIONS(913), + [sym__open_tag_html_block] = ACTIONS(913), + [sym__open_tag_html_block_newline] = ACTIONS(913), + [sym__closing_tag_html_block] = ACTIONS(913), + [sym__closing_tag_html_block_newline] = ACTIONS(913), + [sym_backslash_escape] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(913), + [sym_email_autolink] = ACTIONS(913), + [sym_entity_reference] = ACTIONS(913), + [sym_numeric_character_reference] = ACTIONS(913), + [sym__whitespace_ge_2] = ACTIONS(913), + [aux_sym__whitespace_token1] = ACTIONS(915), + [sym__word_no_digit] = ACTIONS(913), + [sym__digits] = ACTIONS(913), + [aux_sym__newline_token1] = ACTIONS(913), + [sym__block_close] = ACTIONS(913), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(913), + [sym__indented_chunk_start] = ACTIONS(913), + [sym_atx_h1_marker] = ACTIONS(913), + [sym_atx_h2_marker] = ACTIONS(913), + [sym_atx_h3_marker] = ACTIONS(913), + [sym_atx_h4_marker] = ACTIONS(913), + [sym_atx_h5_marker] = ACTIONS(913), + [sym_atx_h6_marker] = ACTIONS(913), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(913), + [sym__thematic_break] = ACTIONS(913), + [sym__list_marker_minus] = ACTIONS(913), + [sym__list_marker_plus] = ACTIONS(913), + [sym__list_marker_star] = ACTIONS(913), + [sym__list_marker_parenthesis] = ACTIONS(913), + [sym__list_marker_dot] = ACTIONS(913), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(913), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(913), + [sym__list_marker_star_dont_interrupt] = ACTIONS(913), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(913), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(913), + [sym__fenced_code_block_start_backtick] = ACTIONS(913), + [sym__fenced_code_block_start_tilde] = ACTIONS(913), + [sym__blank_line_start] = ACTIONS(913), + [sym__code_span_start] = ACTIONS(913), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(913), + [sym__emphasis_open_underscore] = ACTIONS(913), + }, + [170] = { + [sym__blank_line] = STATE(223), + [sym__indented_chunk] = STATE(223), + [aux_sym_indented_code_block_repeat1] = STATE(223), + [ts_builtin_sym_end] = ACTIONS(917), + [aux_sym__html_block_1_token1] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PERCENT] = ACTIONS(917), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_COLON] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_BSLASH] = ACTIONS(919), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym__] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(919), + [anon_sym_LT_QMARK] = ACTIONS(919), + [aux_sym__html_block_4_token1] = ACTIONS(919), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(917), + [aux_sym__html_block_6_token1] = ACTIONS(919), + [aux_sym__html_block_6_token2] = ACTIONS(917), + [sym__open_tag_html_block] = ACTIONS(917), + [sym__open_tag_html_block_newline] = ACTIONS(917), + [sym__closing_tag_html_block] = ACTIONS(917), + [sym__closing_tag_html_block_newline] = ACTIONS(917), + [sym_backslash_escape] = ACTIONS(917), + [sym_uri_autolink] = ACTIONS(917), + [sym_email_autolink] = ACTIONS(917), + [sym_entity_reference] = ACTIONS(917), + [sym_numeric_character_reference] = ACTIONS(917), + [sym__whitespace_ge_2] = ACTIONS(917), + [aux_sym__whitespace_token1] = ACTIONS(919), + [sym__word_no_digit] = ACTIONS(917), + [sym__digits] = ACTIONS(917), + [aux_sym__newline_token1] = ACTIONS(917), + [sym__block_quote_start] = ACTIONS(917), + [sym__indented_chunk_start] = ACTIONS(47), + [sym_atx_h1_marker] = ACTIONS(917), + [sym_atx_h2_marker] = ACTIONS(917), + [sym_atx_h3_marker] = ACTIONS(917), + [sym_atx_h4_marker] = ACTIONS(917), + [sym_atx_h5_marker] = ACTIONS(917), + [sym_atx_h6_marker] = ACTIONS(917), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(917), + [sym__thematic_break] = ACTIONS(917), + [sym__list_marker_minus] = ACTIONS(917), + [sym__list_marker_plus] = ACTIONS(917), + [sym__list_marker_star] = ACTIONS(917), + [sym__list_marker_parenthesis] = ACTIONS(917), + [sym__list_marker_dot] = ACTIONS(917), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(917), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(917), + [sym__list_marker_star_dont_interrupt] = ACTIONS(917), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(917), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(917), + [sym__fenced_code_block_start_backtick] = ACTIONS(917), + [sym__fenced_code_block_start_tilde] = ACTIONS(917), + [sym__blank_line_start] = ACTIONS(67), + [sym__code_span_start] = ACTIONS(917), + [sym__emphasis_open_star] = ACTIONS(917), + [sym__emphasis_open_underscore] = ACTIONS(917), + }, + [171] = { + [aux_sym__ignore_matching_tokens] = STATE(141), + [aux_sym__html_block_1_token1] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym__] = ACTIONS(921), + [anon_sym_BQUOTE] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(923), + [anon_sym_LT_QMARK] = ACTIONS(923), + [aux_sym__html_block_4_token1] = ACTIONS(923), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(921), + [aux_sym__html_block_6_token1] = ACTIONS(923), + [aux_sym__html_block_6_token2] = ACTIONS(921), + [sym__open_tag_html_block] = ACTIONS(921), + [sym__open_tag_html_block_newline] = ACTIONS(921), + [sym__closing_tag_html_block] = ACTIONS(921), + [sym__closing_tag_html_block_newline] = ACTIONS(921), + [sym_backslash_escape] = ACTIONS(921), + [sym_uri_autolink] = ACTIONS(921), + [sym_email_autolink] = ACTIONS(921), + [sym_entity_reference] = ACTIONS(921), + [sym_numeric_character_reference] = ACTIONS(921), + [sym__whitespace_ge_2] = ACTIONS(921), + [aux_sym__whitespace_token1] = ACTIONS(923), + [sym__word_no_digit] = ACTIONS(921), + [sym__digits] = ACTIONS(921), + [aux_sym__newline_token1] = ACTIONS(921), + [sym__block_close] = ACTIONS(921), + [sym__block_continuation] = ACTIONS(925), + [sym__block_quote_start] = ACTIONS(921), + [sym__indented_chunk_start] = ACTIONS(921), + [sym_atx_h1_marker] = ACTIONS(921), + [sym_atx_h2_marker] = ACTIONS(921), + [sym_atx_h3_marker] = ACTIONS(921), + [sym_atx_h4_marker] = ACTIONS(921), + [sym_atx_h5_marker] = ACTIONS(921), + [sym_atx_h6_marker] = ACTIONS(921), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(921), + [sym__thematic_break] = ACTIONS(921), + [sym__list_marker_minus] = ACTIONS(921), + [sym__list_marker_plus] = ACTIONS(921), + [sym__list_marker_star] = ACTIONS(921), + [sym__list_marker_parenthesis] = ACTIONS(921), + [sym__list_marker_dot] = ACTIONS(921), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_star_dont_interrupt] = ACTIONS(921), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(921), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(921), + [sym__fenced_code_block_start_backtick] = ACTIONS(921), + [sym__fenced_code_block_start_tilde] = ACTIONS(921), + [sym__blank_line_start] = ACTIONS(921), + [sym__code_span_start] = ACTIONS(921), + [sym__last_token_whitespace] = ACTIONS(925), + [sym__emphasis_open_star] = ACTIONS(921), + [sym__emphasis_open_underscore] = ACTIONS(921), + }, + [172] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym__] = ACTIONS(921), + [anon_sym_BQUOTE] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(923), + [anon_sym_LT_QMARK] = ACTIONS(923), + [aux_sym__html_block_4_token1] = ACTIONS(923), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(921), + [aux_sym__html_block_6_token1] = ACTIONS(923), + [aux_sym__html_block_6_token2] = ACTIONS(921), + [sym__open_tag_html_block] = ACTIONS(921), + [sym__open_tag_html_block_newline] = ACTIONS(921), + [sym__closing_tag_html_block] = ACTIONS(921), + [sym__closing_tag_html_block_newline] = ACTIONS(921), + [sym_backslash_escape] = ACTIONS(921), + [sym_uri_autolink] = ACTIONS(921), + [sym_email_autolink] = ACTIONS(921), + [sym_entity_reference] = ACTIONS(921), + [sym_numeric_character_reference] = ACTIONS(921), + [sym__whitespace_ge_2] = ACTIONS(921), + [aux_sym__whitespace_token1] = ACTIONS(923), + [sym__word_no_digit] = ACTIONS(921), + [sym__digits] = ACTIONS(921), + [aux_sym__newline_token1] = ACTIONS(921), + [sym__block_close] = ACTIONS(921), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(921), + [sym__indented_chunk_start] = ACTIONS(921), + [sym_atx_h1_marker] = ACTIONS(921), + [sym_atx_h2_marker] = ACTIONS(921), + [sym_atx_h3_marker] = ACTIONS(921), + [sym_atx_h4_marker] = ACTIONS(921), + [sym_atx_h5_marker] = ACTIONS(921), + [sym_atx_h6_marker] = ACTIONS(921), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(921), + [sym__thematic_break] = ACTIONS(921), + [sym__list_marker_minus] = ACTIONS(921), + [sym__list_marker_plus] = ACTIONS(921), + [sym__list_marker_star] = ACTIONS(921), + [sym__list_marker_parenthesis] = ACTIONS(921), + [sym__list_marker_dot] = ACTIONS(921), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_star_dont_interrupt] = ACTIONS(921), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(921), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(921), + [sym__fenced_code_block_start_backtick] = ACTIONS(921), + [sym__fenced_code_block_start_tilde] = ACTIONS(921), + [sym__blank_line_start] = ACTIONS(921), + [sym__code_span_start] = ACTIONS(921), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(921), + [sym__emphasis_open_underscore] = ACTIONS(921), + }, + [173] = { + [aux_sym__ignore_matching_tokens] = STATE(177), + [aux_sym__html_block_1_token1] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_DOLLAR] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_BQUOTE] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(612), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(614), + [anon_sym_LT_QMARK] = ACTIONS(614), + [aux_sym__html_block_4_token1] = ACTIONS(614), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(612), + [aux_sym__html_block_6_token1] = ACTIONS(614), + [aux_sym__html_block_6_token2] = ACTIONS(612), + [sym__open_tag_html_block] = ACTIONS(612), + [sym__open_tag_html_block_newline] = ACTIONS(612), + [sym__closing_tag_html_block] = ACTIONS(612), + [sym__closing_tag_html_block_newline] = ACTIONS(612), + [sym_backslash_escape] = ACTIONS(612), + [sym_uri_autolink] = ACTIONS(612), + [sym_email_autolink] = ACTIONS(612), + [sym_entity_reference] = ACTIONS(612), + [sym_numeric_character_reference] = ACTIONS(612), + [sym__whitespace_ge_2] = ACTIONS(612), + [aux_sym__whitespace_token1] = ACTIONS(614), + [sym__word_no_digit] = ACTIONS(612), + [sym__digits] = ACTIONS(612), + [aux_sym__newline_token1] = ACTIONS(612), + [sym__block_close] = ACTIONS(612), + [sym__block_continuation] = ACTIONS(927), + [sym__block_quote_start] = ACTIONS(612), + [sym__indented_chunk_start] = ACTIONS(612), + [sym_atx_h1_marker] = ACTIONS(612), + [sym_atx_h2_marker] = ACTIONS(612), + [sym_atx_h3_marker] = ACTIONS(612), + [sym_atx_h4_marker] = ACTIONS(612), + [sym_atx_h5_marker] = ACTIONS(612), + [sym_atx_h6_marker] = ACTIONS(612), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(612), + [sym__thematic_break] = ACTIONS(612), + [sym__list_marker_minus] = ACTIONS(612), + [sym__list_marker_plus] = ACTIONS(612), + [sym__list_marker_star] = ACTIONS(612), + [sym__list_marker_parenthesis] = ACTIONS(612), + [sym__list_marker_dot] = ACTIONS(612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(612), + [sym__fenced_code_block_start_backtick] = ACTIONS(612), + [sym__fenced_code_block_start_tilde] = ACTIONS(612), + [sym__blank_line_start] = ACTIONS(612), + [sym__code_span_start] = ACTIONS(612), + [sym__last_token_whitespace] = ACTIONS(927), + [sym__emphasis_open_star] = ACTIONS(612), + [sym__emphasis_open_underscore] = ACTIONS(612), + }, + [174] = { + [sym_link_title] = STATE(2227), + [sym__whitespace] = STATE(2038), + [aux_sym__html_block_1_token1] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_BSLASH] = ACTIONS(934), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym__] = ACTIONS(929), + [anon_sym_BQUOTE] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(934), + [anon_sym_LT_QMARK] = ACTIONS(934), + [aux_sym__html_block_4_token1] = ACTIONS(934), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(929), + [aux_sym__html_block_6_token1] = ACTIONS(934), + [aux_sym__html_block_6_token2] = ACTIONS(929), + [sym__open_tag_html_block] = ACTIONS(929), + [sym__open_tag_html_block_newline] = ACTIONS(929), + [sym__closing_tag_html_block] = ACTIONS(929), + [sym__closing_tag_html_block_newline] = ACTIONS(929), + [sym_backslash_escape] = ACTIONS(929), + [sym_uri_autolink] = ACTIONS(929), + [sym_email_autolink] = ACTIONS(929), + [sym_entity_reference] = ACTIONS(929), + [sym_numeric_character_reference] = ACTIONS(929), + [sym__whitespace_ge_2] = ACTIONS(942), + [aux_sym__whitespace_token1] = ACTIONS(945), + [sym__word_no_digit] = ACTIONS(929), + [sym__digits] = ACTIONS(929), + [aux_sym__newline_token1] = ACTIONS(929), + [sym__block_close] = ACTIONS(929), + [sym__block_quote_start] = ACTIONS(929), + [sym__indented_chunk_start] = ACTIONS(929), + [sym_atx_h1_marker] = ACTIONS(929), + [sym_atx_h2_marker] = ACTIONS(929), + [sym_atx_h3_marker] = ACTIONS(929), + [sym_atx_h4_marker] = ACTIONS(929), + [sym_atx_h5_marker] = ACTIONS(929), + [sym_atx_h6_marker] = ACTIONS(929), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(929), + [sym__thematic_break] = ACTIONS(929), + [sym__list_marker_minus] = ACTIONS(929), + [sym__list_marker_plus] = ACTIONS(929), + [sym__list_marker_star] = ACTIONS(929), + [sym__list_marker_parenthesis] = ACTIONS(929), + [sym__list_marker_dot] = ACTIONS(929), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(929), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(929), + [sym__list_marker_star_dont_interrupt] = ACTIONS(929), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(929), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(929), + [sym__fenced_code_block_start_backtick] = ACTIONS(929), + [sym__fenced_code_block_start_tilde] = ACTIONS(929), + [sym__blank_line_start] = ACTIONS(929), + [sym__code_span_start] = ACTIONS(929), + [sym__emphasis_open_star] = ACTIONS(929), + [sym__emphasis_open_underscore] = ACTIONS(929), + [sym__no_indented_chunk] = ACTIONS(948), + }, + [175] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_LT] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_BSLASH] = ACTIONS(952), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(952), + [anon_sym_LT_QMARK] = ACTIONS(952), + [aux_sym__html_block_4_token1] = ACTIONS(952), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(950), + [aux_sym__html_block_6_token1] = ACTIONS(952), + [aux_sym__html_block_6_token2] = ACTIONS(950), + [sym__open_tag_html_block] = ACTIONS(950), + [sym__open_tag_html_block_newline] = ACTIONS(950), + [sym__closing_tag_html_block] = ACTIONS(950), + [sym__closing_tag_html_block_newline] = ACTIONS(950), + [sym_backslash_escape] = ACTIONS(950), + [sym_uri_autolink] = ACTIONS(950), + [sym_email_autolink] = ACTIONS(950), + [sym_entity_reference] = ACTIONS(950), + [sym_numeric_character_reference] = ACTIONS(950), + [sym__whitespace_ge_2] = ACTIONS(950), + [aux_sym__whitespace_token1] = ACTIONS(952), + [sym__word_no_digit] = ACTIONS(950), + [sym__digits] = ACTIONS(950), + [aux_sym__newline_token1] = ACTIONS(950), + [sym__block_close] = ACTIONS(950), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(950), + [sym__indented_chunk_start] = ACTIONS(950), + [sym_atx_h1_marker] = ACTIONS(950), + [sym_atx_h2_marker] = ACTIONS(950), + [sym_atx_h3_marker] = ACTIONS(950), + [sym_atx_h4_marker] = ACTIONS(950), + [sym_atx_h5_marker] = ACTIONS(950), + [sym_atx_h6_marker] = ACTIONS(950), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(950), + [sym__thematic_break] = ACTIONS(950), + [sym__list_marker_minus] = ACTIONS(950), + [sym__list_marker_plus] = ACTIONS(950), + [sym__list_marker_star] = ACTIONS(950), + [sym__list_marker_parenthesis] = ACTIONS(950), + [sym__list_marker_dot] = ACTIONS(950), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_star_dont_interrupt] = ACTIONS(950), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(950), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(950), + [sym__fenced_code_block_start_backtick] = ACTIONS(950), + [sym__fenced_code_block_start_tilde] = ACTIONS(950), + [sym__blank_line_start] = ACTIONS(950), + [sym__code_span_start] = ACTIONS(950), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(950), + [sym__emphasis_open_underscore] = ACTIONS(950), + }, + [176] = { + [aux_sym__ignore_matching_tokens] = STATE(198), + [aux_sym__html_block_1_token1] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_LT] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_BSLASH] = ACTIONS(952), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(952), + [anon_sym_LT_QMARK] = ACTIONS(952), + [aux_sym__html_block_4_token1] = ACTIONS(952), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(950), + [aux_sym__html_block_6_token1] = ACTIONS(952), + [aux_sym__html_block_6_token2] = ACTIONS(950), + [sym__open_tag_html_block] = ACTIONS(950), + [sym__open_tag_html_block_newline] = ACTIONS(950), + [sym__closing_tag_html_block] = ACTIONS(950), + [sym__closing_tag_html_block_newline] = ACTIONS(950), + [sym_backslash_escape] = ACTIONS(950), + [sym_uri_autolink] = ACTIONS(950), + [sym_email_autolink] = ACTIONS(950), + [sym_entity_reference] = ACTIONS(950), + [sym_numeric_character_reference] = ACTIONS(950), + [sym__whitespace_ge_2] = ACTIONS(950), + [aux_sym__whitespace_token1] = ACTIONS(952), + [sym__word_no_digit] = ACTIONS(950), + [sym__digits] = ACTIONS(950), + [aux_sym__newline_token1] = ACTIONS(950), + [sym__block_close] = ACTIONS(950), + [sym__block_continuation] = ACTIONS(954), + [sym__block_quote_start] = ACTIONS(950), + [sym__indented_chunk_start] = ACTIONS(950), + [sym_atx_h1_marker] = ACTIONS(950), + [sym_atx_h2_marker] = ACTIONS(950), + [sym_atx_h3_marker] = ACTIONS(950), + [sym_atx_h4_marker] = ACTIONS(950), + [sym_atx_h5_marker] = ACTIONS(950), + [sym_atx_h6_marker] = ACTIONS(950), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(950), + [sym__thematic_break] = ACTIONS(950), + [sym__list_marker_minus] = ACTIONS(950), + [sym__list_marker_plus] = ACTIONS(950), + [sym__list_marker_star] = ACTIONS(950), + [sym__list_marker_parenthesis] = ACTIONS(950), + [sym__list_marker_dot] = ACTIONS(950), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_star_dont_interrupt] = ACTIONS(950), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(950), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(950), + [sym__fenced_code_block_start_backtick] = ACTIONS(950), + [sym__fenced_code_block_start_tilde] = ACTIONS(950), + [sym__blank_line_start] = ACTIONS(950), + [sym__code_span_start] = ACTIONS(950), + [sym__last_token_whitespace] = ACTIONS(954), + [sym__emphasis_open_star] = ACTIONS(950), + [sym__emphasis_open_underscore] = ACTIONS(950), + }, + [177] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_BSLASH] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym__] = ACTIONS(956), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(958), + [anon_sym_LT_QMARK] = ACTIONS(958), + [aux_sym__html_block_4_token1] = ACTIONS(958), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(956), + [aux_sym__html_block_6_token1] = ACTIONS(958), + [aux_sym__html_block_6_token2] = ACTIONS(956), + [sym__open_tag_html_block] = ACTIONS(956), + [sym__open_tag_html_block_newline] = ACTIONS(956), + [sym__closing_tag_html_block] = ACTIONS(956), + [sym__closing_tag_html_block_newline] = ACTIONS(956), + [sym_backslash_escape] = ACTIONS(956), + [sym_uri_autolink] = ACTIONS(956), + [sym_email_autolink] = ACTIONS(956), + [sym_entity_reference] = ACTIONS(956), + [sym_numeric_character_reference] = ACTIONS(956), + [sym__whitespace_ge_2] = ACTIONS(956), + [aux_sym__whitespace_token1] = ACTIONS(958), + [sym__word_no_digit] = ACTIONS(956), + [sym__digits] = ACTIONS(956), + [aux_sym__newline_token1] = ACTIONS(956), + [sym__block_close] = ACTIONS(956), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(956), + [sym__indented_chunk_start] = ACTIONS(956), + [sym_atx_h1_marker] = ACTIONS(956), + [sym_atx_h2_marker] = ACTIONS(956), + [sym_atx_h3_marker] = ACTIONS(956), + [sym_atx_h4_marker] = ACTIONS(956), + [sym_atx_h5_marker] = ACTIONS(956), + [sym_atx_h6_marker] = ACTIONS(956), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(956), + [sym__thematic_break] = ACTIONS(956), + [sym__list_marker_minus] = ACTIONS(956), + [sym__list_marker_plus] = ACTIONS(956), + [sym__list_marker_star] = ACTIONS(956), + [sym__list_marker_parenthesis] = ACTIONS(956), + [sym__list_marker_dot] = ACTIONS(956), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_star_dont_interrupt] = ACTIONS(956), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(956), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(956), + [sym__fenced_code_block_start_backtick] = ACTIONS(956), + [sym__fenced_code_block_start_tilde] = ACTIONS(956), + [sym__blank_line_start] = ACTIONS(956), + [sym__code_span_start] = ACTIONS(956), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(956), + [sym__emphasis_open_underscore] = ACTIONS(956), + }, + [178] = { + [aux_sym__ignore_matching_tokens] = STATE(200), + [aux_sym__html_block_1_token1] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_BSLASH] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym__] = ACTIONS(956), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(958), + [anon_sym_LT_QMARK] = ACTIONS(958), + [aux_sym__html_block_4_token1] = ACTIONS(958), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(956), + [aux_sym__html_block_6_token1] = ACTIONS(958), + [aux_sym__html_block_6_token2] = ACTIONS(956), + [sym__open_tag_html_block] = ACTIONS(956), + [sym__open_tag_html_block_newline] = ACTIONS(956), + [sym__closing_tag_html_block] = ACTIONS(956), + [sym__closing_tag_html_block_newline] = ACTIONS(956), + [sym_backslash_escape] = ACTIONS(956), + [sym_uri_autolink] = ACTIONS(956), + [sym_email_autolink] = ACTIONS(956), + [sym_entity_reference] = ACTIONS(956), + [sym_numeric_character_reference] = ACTIONS(956), + [sym__whitespace_ge_2] = ACTIONS(956), + [aux_sym__whitespace_token1] = ACTIONS(958), + [sym__word_no_digit] = ACTIONS(956), + [sym__digits] = ACTIONS(956), + [aux_sym__newline_token1] = ACTIONS(956), + [sym__block_close] = ACTIONS(956), + [sym__block_continuation] = ACTIONS(960), + [sym__block_quote_start] = ACTIONS(956), + [sym__indented_chunk_start] = ACTIONS(956), + [sym_atx_h1_marker] = ACTIONS(956), + [sym_atx_h2_marker] = ACTIONS(956), + [sym_atx_h3_marker] = ACTIONS(956), + [sym_atx_h4_marker] = ACTIONS(956), + [sym_atx_h5_marker] = ACTIONS(956), + [sym_atx_h6_marker] = ACTIONS(956), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(956), + [sym__thematic_break] = ACTIONS(956), + [sym__list_marker_minus] = ACTIONS(956), + [sym__list_marker_plus] = ACTIONS(956), + [sym__list_marker_star] = ACTIONS(956), + [sym__list_marker_parenthesis] = ACTIONS(956), + [sym__list_marker_dot] = ACTIONS(956), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_star_dont_interrupt] = ACTIONS(956), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(956), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(956), + [sym__fenced_code_block_start_backtick] = ACTIONS(956), + [sym__fenced_code_block_start_tilde] = ACTIONS(956), + [sym__blank_line_start] = ACTIONS(956), + [sym__code_span_start] = ACTIONS(956), + [sym__last_token_whitespace] = ACTIONS(960), + [sym__emphasis_open_star] = ACTIONS(956), + [sym__emphasis_open_underscore] = ACTIONS(956), + }, + [179] = { + [aux_sym__ignore_matching_tokens] = STATE(145), + [aux_sym__html_block_1_token1] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_PERCENT] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_SLASH] = ACTIONS(962), + [anon_sym_COLON] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_BSLASH] = ACTIONS(964), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_CARET] = ACTIONS(962), + [anon_sym__] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(964), + [anon_sym_LT_QMARK] = ACTIONS(964), + [aux_sym__html_block_4_token1] = ACTIONS(964), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(962), + [aux_sym__html_block_6_token1] = ACTIONS(964), + [aux_sym__html_block_6_token2] = ACTIONS(962), + [sym__open_tag_html_block] = ACTIONS(962), + [sym__open_tag_html_block_newline] = ACTIONS(962), + [sym__closing_tag_html_block] = ACTIONS(962), + [sym__closing_tag_html_block_newline] = ACTIONS(962), + [sym_backslash_escape] = ACTIONS(962), + [sym_uri_autolink] = ACTIONS(962), + [sym_email_autolink] = ACTIONS(962), + [sym_entity_reference] = ACTIONS(962), + [sym_numeric_character_reference] = ACTIONS(962), + [sym__whitespace_ge_2] = ACTIONS(962), + [aux_sym__whitespace_token1] = ACTIONS(964), + [sym__word_no_digit] = ACTIONS(962), + [sym__digits] = ACTIONS(962), + [aux_sym__newline_token1] = ACTIONS(962), + [sym__block_close] = ACTIONS(962), + [sym__block_continuation] = ACTIONS(966), + [sym__block_quote_start] = ACTIONS(962), + [sym__indented_chunk_start] = ACTIONS(962), + [sym_atx_h1_marker] = ACTIONS(962), + [sym_atx_h2_marker] = ACTIONS(962), + [sym_atx_h3_marker] = ACTIONS(962), + [sym_atx_h4_marker] = ACTIONS(962), + [sym_atx_h5_marker] = ACTIONS(962), + [sym_atx_h6_marker] = ACTIONS(962), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(962), + [sym__thematic_break] = ACTIONS(962), + [sym__list_marker_minus] = ACTIONS(962), + [sym__list_marker_plus] = ACTIONS(962), + [sym__list_marker_star] = ACTIONS(962), + [sym__list_marker_parenthesis] = ACTIONS(962), + [sym__list_marker_dot] = ACTIONS(962), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(962), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(962), + [sym__list_marker_star_dont_interrupt] = ACTIONS(962), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(962), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(962), + [sym__fenced_code_block_start_backtick] = ACTIONS(962), + [sym__fenced_code_block_start_tilde] = ACTIONS(962), + [sym__blank_line_start] = ACTIONS(962), + [sym__code_span_start] = ACTIONS(962), + [sym__last_token_whitespace] = ACTIONS(966), + [sym__emphasis_open_star] = ACTIONS(962), + [sym__emphasis_open_underscore] = ACTIONS(962), + }, + [180] = { + [sym_link_title] = STATE(2228), + [sym__whitespace] = STATE(2048), + [aux_sym__html_block_1_token1] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_AT] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_BSLASH] = ACTIONS(973), + [anon_sym_RBRACK] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym__] = ACTIONS(968), + [anon_sym_BQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(973), + [aux_sym__html_block_4_token1] = ACTIONS(973), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(968), + [aux_sym__html_block_6_token1] = ACTIONS(973), + [aux_sym__html_block_6_token2] = ACTIONS(968), + [sym__open_tag_html_block] = ACTIONS(968), + [sym__open_tag_html_block_newline] = ACTIONS(968), + [sym__closing_tag_html_block] = ACTIONS(968), + [sym__closing_tag_html_block_newline] = ACTIONS(968), + [sym_backslash_escape] = ACTIONS(968), + [sym_uri_autolink] = ACTIONS(968), + [sym_email_autolink] = ACTIONS(968), + [sym_entity_reference] = ACTIONS(968), + [sym_numeric_character_reference] = ACTIONS(968), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(984), + [sym__word_no_digit] = ACTIONS(968), + [sym__digits] = ACTIONS(968), + [aux_sym__newline_token1] = ACTIONS(968), + [sym__block_close] = ACTIONS(968), + [sym__block_quote_start] = ACTIONS(968), + [sym__indented_chunk_start] = ACTIONS(968), + [sym_atx_h1_marker] = ACTIONS(968), + [sym_atx_h2_marker] = ACTIONS(968), + [sym_atx_h3_marker] = ACTIONS(968), + [sym_atx_h4_marker] = ACTIONS(968), + [sym_atx_h5_marker] = ACTIONS(968), + [sym_atx_h6_marker] = ACTIONS(968), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(968), + [sym__thematic_break] = ACTIONS(968), + [sym__list_marker_minus] = ACTIONS(968), + [sym__list_marker_plus] = ACTIONS(968), + [sym__list_marker_star] = ACTIONS(968), + [sym__list_marker_parenthesis] = ACTIONS(968), + [sym__list_marker_dot] = ACTIONS(968), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(968), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(968), + [sym__list_marker_star_dont_interrupt] = ACTIONS(968), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(968), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(968), + [sym__fenced_code_block_start_backtick] = ACTIONS(968), + [sym__fenced_code_block_start_tilde] = ACTIONS(968), + [sym__blank_line_start] = ACTIONS(968), + [sym__code_span_start] = ACTIONS(968), + [sym__emphasis_open_star] = ACTIONS(968), + [sym__emphasis_open_underscore] = ACTIONS(968), + [sym__no_indented_chunk] = ACTIONS(987), + }, + [181] = { + [aux_sym__ignore_matching_tokens] = STATE(147), + [aux_sym__html_block_1_token1] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_POUND] = ACTIONS(689), + [anon_sym_DOLLAR] = ACTIONS(689), + [anon_sym_PERCENT] = ACTIONS(689), + [anon_sym_AMP] = ACTIONS(691), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_COMMA] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_EQ] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_BSLASH] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_BQUOTE] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_TILDE] = ACTIONS(689), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(691), + [anon_sym_LT_QMARK] = ACTIONS(691), + [aux_sym__html_block_4_token1] = ACTIONS(691), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(689), + [aux_sym__html_block_6_token1] = ACTIONS(691), + [aux_sym__html_block_6_token2] = ACTIONS(689), + [sym__open_tag_html_block] = ACTIONS(689), + [sym__open_tag_html_block_newline] = ACTIONS(689), + [sym__closing_tag_html_block] = ACTIONS(689), + [sym__closing_tag_html_block_newline] = ACTIONS(689), + [sym_backslash_escape] = ACTIONS(689), + [sym_uri_autolink] = ACTIONS(689), + [sym_email_autolink] = ACTIONS(689), + [sym_entity_reference] = ACTIONS(689), + [sym_numeric_character_reference] = ACTIONS(689), + [sym__whitespace_ge_2] = ACTIONS(689), + [aux_sym__whitespace_token1] = ACTIONS(691), + [sym__word_no_digit] = ACTIONS(689), + [sym__digits] = ACTIONS(689), + [aux_sym__newline_token1] = ACTIONS(689), + [sym__block_close] = ACTIONS(689), + [sym__block_continuation] = ACTIONS(989), + [sym__block_quote_start] = ACTIONS(689), + [sym__indented_chunk_start] = ACTIONS(689), + [sym_atx_h1_marker] = ACTIONS(689), + [sym_atx_h2_marker] = ACTIONS(689), + [sym_atx_h3_marker] = ACTIONS(689), + [sym_atx_h4_marker] = ACTIONS(689), + [sym_atx_h5_marker] = ACTIONS(689), + [sym_atx_h6_marker] = ACTIONS(689), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(689), + [sym__thematic_break] = ACTIONS(689), + [sym__list_marker_minus] = ACTIONS(689), + [sym__list_marker_plus] = ACTIONS(689), + [sym__list_marker_star] = ACTIONS(689), + [sym__list_marker_parenthesis] = ACTIONS(689), + [sym__list_marker_dot] = ACTIONS(689), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(689), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(689), + [sym__list_marker_star_dont_interrupt] = ACTIONS(689), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(689), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(689), + [sym__fenced_code_block_start_backtick] = ACTIONS(689), + [sym__fenced_code_block_start_tilde] = ACTIONS(689), + [sym__blank_line_start] = ACTIONS(689), + [sym__code_span_start] = ACTIONS(689), + [sym__last_token_whitespace] = ACTIONS(989), + [sym__emphasis_open_star] = ACTIONS(689), + [sym__emphasis_open_underscore] = ACTIONS(689), + }, + [182] = { + [aux_sym__ignore_matching_tokens] = STATE(305), + [ts_builtin_sym_end] = ACTIONS(991), + [aux_sym__html_block_1_token1] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_BSLASH] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym__] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(993), + [anon_sym_LT_QMARK] = ACTIONS(993), + [aux_sym__html_block_4_token1] = ACTIONS(993), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(991), + [aux_sym__html_block_6_token1] = ACTIONS(993), + [aux_sym__html_block_6_token2] = ACTIONS(991), + [sym__open_tag_html_block] = ACTIONS(991), + [sym__open_tag_html_block_newline] = ACTIONS(991), + [sym__closing_tag_html_block] = ACTIONS(991), + [sym__closing_tag_html_block_newline] = ACTIONS(991), + [sym_backslash_escape] = ACTIONS(991), + [sym_uri_autolink] = ACTIONS(991), + [sym_email_autolink] = ACTIONS(991), + [sym_entity_reference] = ACTIONS(991), + [sym_numeric_character_reference] = ACTIONS(991), + [sym__whitespace_ge_2] = ACTIONS(991), + [aux_sym__whitespace_token1] = ACTIONS(993), + [sym__word_no_digit] = ACTIONS(991), + [sym__digits] = ACTIONS(991), + [aux_sym__newline_token1] = ACTIONS(991), + [sym__block_continuation] = ACTIONS(995), + [sym__block_quote_start] = ACTIONS(991), + [sym__indented_chunk_start] = ACTIONS(991), + [sym_atx_h1_marker] = ACTIONS(991), + [sym_atx_h2_marker] = ACTIONS(991), + [sym_atx_h3_marker] = ACTIONS(991), + [sym_atx_h4_marker] = ACTIONS(991), + [sym_atx_h5_marker] = ACTIONS(991), + [sym_atx_h6_marker] = ACTIONS(991), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(991), + [sym__thematic_break] = ACTIONS(991), + [sym__list_marker_minus] = ACTIONS(991), + [sym__list_marker_plus] = ACTIONS(991), + [sym__list_marker_star] = ACTIONS(991), + [sym__list_marker_parenthesis] = ACTIONS(991), + [sym__list_marker_dot] = ACTIONS(991), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_star_dont_interrupt] = ACTIONS(991), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(991), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(991), + [sym__fenced_code_block_start_backtick] = ACTIONS(991), + [sym__fenced_code_block_start_tilde] = ACTIONS(991), + [sym__blank_line_start] = ACTIONS(991), + [sym__code_span_start] = ACTIONS(991), + [sym__last_token_whitespace] = ACTIONS(995), + [sym__emphasis_open_star] = ACTIONS(991), + [sym__emphasis_open_underscore] = ACTIONS(991), + }, + [183] = { + [aux_sym__ignore_matching_tokens] = STATE(149), [aux_sym__html_block_1_token1] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(780), [anon_sym_DQUOTE] = ACTIONS(780), @@ -45691,7 +48342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__digits] = ACTIONS(780), [aux_sym__newline_token1] = ACTIONS(780), [sym__block_close] = ACTIONS(780), - [sym__block_continuation] = ACTIONS(97), + [sym__block_continuation] = ACTIONS(997), [sym__block_quote_start] = ACTIONS(780), [sym__indented_chunk_start] = ACTIONS(780), [sym_atx_h1_marker] = ACTIONS(780), @@ -45716,3412 +48367,8087 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(780), [sym__blank_line_start] = ACTIONS(780), [sym__code_span_start] = ACTIONS(780), - [sym__last_token_whitespace] = ACTIONS(97), + [sym__last_token_whitespace] = ACTIONS(997), [sym__emphasis_open_star] = ACTIONS(780), [sym__emphasis_open_underscore] = ACTIONS(780), }, - [153] = { - [aux_sym__ignore_matching_tokens] = STATE(210), - [aux_sym__html_block_1_token1] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_POUND] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym__] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(619), - [anon_sym_LT_QMARK] = ACTIONS(619), - [aux_sym__html_block_4_token1] = ACTIONS(619), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(617), - [aux_sym__html_block_6_token1] = ACTIONS(619), - [aux_sym__html_block_6_token2] = ACTIONS(617), - [sym__open_tag_html_block] = ACTIONS(617), - [sym__open_tag_html_block_newline] = ACTIONS(617), - [sym__closing_tag_html_block] = ACTIONS(617), - [sym__closing_tag_html_block_newline] = ACTIONS(617), - [sym_backslash_escape] = ACTIONS(617), - [sym_uri_autolink] = ACTIONS(617), - [sym_email_autolink] = ACTIONS(617), - [sym_entity_reference] = ACTIONS(617), - [sym_numeric_character_reference] = ACTIONS(617), - [sym__whitespace_ge_2] = ACTIONS(617), - [aux_sym__whitespace_token1] = ACTIONS(619), - [sym__word_no_digit] = ACTIONS(617), - [sym__digits] = ACTIONS(617), - [aux_sym__newline_token1] = ACTIONS(617), - [sym__block_close] = ACTIONS(617), - [sym__block_continuation] = ACTIONS(786), - [sym__block_quote_start] = ACTIONS(617), - [sym__indented_chunk_start] = ACTIONS(617), - [sym_atx_h1_marker] = ACTIONS(617), - [sym_atx_h2_marker] = ACTIONS(617), - [sym_atx_h3_marker] = ACTIONS(617), - [sym_atx_h4_marker] = ACTIONS(617), - [sym_atx_h5_marker] = ACTIONS(617), - [sym_atx_h6_marker] = ACTIONS(617), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(617), - [sym__thematic_break] = ACTIONS(617), - [sym__list_marker_minus] = ACTIONS(617), - [sym__list_marker_plus] = ACTIONS(617), - [sym__list_marker_star] = ACTIONS(617), - [sym__list_marker_parenthesis] = ACTIONS(617), - [sym__list_marker_dot] = ACTIONS(617), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_star_dont_interrupt] = ACTIONS(617), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(617), - [sym__fenced_code_block_start_backtick] = ACTIONS(617), - [sym__fenced_code_block_start_tilde] = ACTIONS(617), - [sym__blank_line_start] = ACTIONS(617), - [sym__code_span_start] = ACTIONS(617), - [sym__last_token_whitespace] = ACTIONS(786), - [sym__emphasis_open_star] = ACTIONS(617), - [sym__emphasis_open_underscore] = ACTIONS(617), - }, - [154] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_POUND] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym__] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(619), - [anon_sym_LT_QMARK] = ACTIONS(619), - [aux_sym__html_block_4_token1] = ACTIONS(619), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(617), - [aux_sym__html_block_6_token1] = ACTIONS(619), - [aux_sym__html_block_6_token2] = ACTIONS(617), - [sym__open_tag_html_block] = ACTIONS(617), - [sym__open_tag_html_block_newline] = ACTIONS(617), - [sym__closing_tag_html_block] = ACTIONS(617), - [sym__closing_tag_html_block_newline] = ACTIONS(617), - [sym_backslash_escape] = ACTIONS(617), - [sym_uri_autolink] = ACTIONS(617), - [sym_email_autolink] = ACTIONS(617), - [sym_entity_reference] = ACTIONS(617), - [sym_numeric_character_reference] = ACTIONS(617), - [sym__whitespace_ge_2] = ACTIONS(617), - [aux_sym__whitespace_token1] = ACTIONS(619), - [sym__word_no_digit] = ACTIONS(617), - [sym__digits] = ACTIONS(617), - [aux_sym__newline_token1] = ACTIONS(617), - [sym__block_close] = ACTIONS(617), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(617), - [sym__indented_chunk_start] = ACTIONS(617), - [sym_atx_h1_marker] = ACTIONS(617), - [sym_atx_h2_marker] = ACTIONS(617), - [sym_atx_h3_marker] = ACTIONS(617), - [sym_atx_h4_marker] = ACTIONS(617), - [sym_atx_h5_marker] = ACTIONS(617), - [sym_atx_h6_marker] = ACTIONS(617), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(617), - [sym__thematic_break] = ACTIONS(617), - [sym__list_marker_minus] = ACTIONS(617), - [sym__list_marker_plus] = ACTIONS(617), - [sym__list_marker_star] = ACTIONS(617), - [sym__list_marker_parenthesis] = ACTIONS(617), - [sym__list_marker_dot] = ACTIONS(617), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_star_dont_interrupt] = ACTIONS(617), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(617), - [sym__fenced_code_block_start_backtick] = ACTIONS(617), - [sym__fenced_code_block_start_tilde] = ACTIONS(617), - [sym__blank_line_start] = ACTIONS(617), - [sym__code_span_start] = ACTIONS(617), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(617), - [sym__emphasis_open_underscore] = ACTIONS(617), + [184] = { + [aux_sym__ignore_matching_tokens] = STATE(151), + [aux_sym__html_block_1_token1] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PERCENT] = ACTIONS(991), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_BSLASH] = ACTIONS(993), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(991), + [anon_sym__] = ACTIONS(991), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(991), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(993), + [anon_sym_LT_QMARK] = ACTIONS(993), + [aux_sym__html_block_4_token1] = ACTIONS(993), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(991), + [aux_sym__html_block_6_token1] = ACTIONS(993), + [aux_sym__html_block_6_token2] = ACTIONS(991), + [sym__open_tag_html_block] = ACTIONS(991), + [sym__open_tag_html_block_newline] = ACTIONS(991), + [sym__closing_tag_html_block] = ACTIONS(991), + [sym__closing_tag_html_block_newline] = ACTIONS(991), + [sym_backslash_escape] = ACTIONS(991), + [sym_uri_autolink] = ACTIONS(991), + [sym_email_autolink] = ACTIONS(991), + [sym_entity_reference] = ACTIONS(991), + [sym_numeric_character_reference] = ACTIONS(991), + [sym__whitespace_ge_2] = ACTIONS(991), + [aux_sym__whitespace_token1] = ACTIONS(993), + [sym__word_no_digit] = ACTIONS(991), + [sym__digits] = ACTIONS(991), + [aux_sym__newline_token1] = ACTIONS(991), + [sym__block_close] = ACTIONS(991), + [sym__block_continuation] = ACTIONS(999), + [sym__block_quote_start] = ACTIONS(991), + [sym__indented_chunk_start] = ACTIONS(991), + [sym_atx_h1_marker] = ACTIONS(991), + [sym_atx_h2_marker] = ACTIONS(991), + [sym_atx_h3_marker] = ACTIONS(991), + [sym_atx_h4_marker] = ACTIONS(991), + [sym_atx_h5_marker] = ACTIONS(991), + [sym_atx_h6_marker] = ACTIONS(991), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(991), + [sym__thematic_break] = ACTIONS(991), + [sym__list_marker_minus] = ACTIONS(991), + [sym__list_marker_plus] = ACTIONS(991), + [sym__list_marker_star] = ACTIONS(991), + [sym__list_marker_parenthesis] = ACTIONS(991), + [sym__list_marker_dot] = ACTIONS(991), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(991), + [sym__list_marker_star_dont_interrupt] = ACTIONS(991), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(991), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(991), + [sym__fenced_code_block_start_backtick] = ACTIONS(991), + [sym__fenced_code_block_start_tilde] = ACTIONS(991), + [sym__blank_line_start] = ACTIONS(991), + [sym__code_span_start] = ACTIONS(991), + [sym__last_token_whitespace] = ACTIONS(999), + [sym__emphasis_open_star] = ACTIONS(991), + [sym__emphasis_open_underscore] = ACTIONS(991), }, - [155] = { - [aux_sym__ignore_matching_tokens] = STATE(117), - [aux_sym__html_block_1_token1] = ACTIONS(788), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_POUND] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DOT] = ACTIONS(788), - [anon_sym_SLASH] = ACTIONS(788), - [anon_sym_COLON] = ACTIONS(788), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(788), - [anon_sym_QMARK] = ACTIONS(788), - [anon_sym_AT] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(788), - [anon_sym_BSLASH] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(788), - [anon_sym_CARET] = ACTIONS(788), - [anon_sym__] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(790), - [anon_sym_LT_QMARK] = ACTIONS(790), - [aux_sym__html_block_4_token1] = ACTIONS(790), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(788), - [aux_sym__html_block_6_token1] = ACTIONS(790), - [aux_sym__html_block_6_token2] = ACTIONS(788), - [sym__open_tag_html_block] = ACTIONS(788), - [sym__open_tag_html_block_newline] = ACTIONS(788), - [sym__closing_tag_html_block] = ACTIONS(788), - [sym__closing_tag_html_block_newline] = ACTIONS(788), - [sym_backslash_escape] = ACTIONS(788), - [sym_uri_autolink] = ACTIONS(788), - [sym_email_autolink] = ACTIONS(788), - [sym_entity_reference] = ACTIONS(788), - [sym_numeric_character_reference] = ACTIONS(788), - [sym__whitespace_ge_2] = ACTIONS(788), - [aux_sym__whitespace_token1] = ACTIONS(790), - [sym__word_no_digit] = ACTIONS(788), - [sym__digits] = ACTIONS(788), - [aux_sym__newline_token1] = ACTIONS(788), - [sym__block_close] = ACTIONS(788), - [sym__block_continuation] = ACTIONS(792), - [sym__block_quote_start] = ACTIONS(788), - [sym__indented_chunk_start] = ACTIONS(788), - [sym_atx_h1_marker] = ACTIONS(788), - [sym_atx_h2_marker] = ACTIONS(788), - [sym_atx_h3_marker] = ACTIONS(788), - [sym_atx_h4_marker] = ACTIONS(788), - [sym_atx_h5_marker] = ACTIONS(788), - [sym_atx_h6_marker] = ACTIONS(788), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(788), - [sym__thematic_break] = ACTIONS(788), - [sym__list_marker_minus] = ACTIONS(788), - [sym__list_marker_plus] = ACTIONS(788), - [sym__list_marker_star] = ACTIONS(788), - [sym__list_marker_parenthesis] = ACTIONS(788), - [sym__list_marker_dot] = ACTIONS(788), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_star_dont_interrupt] = ACTIONS(788), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(788), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(788), - [sym__fenced_code_block_start_backtick] = ACTIONS(788), - [sym__fenced_code_block_start_tilde] = ACTIONS(788), - [sym__blank_line_start] = ACTIONS(788), - [sym__code_span_start] = ACTIONS(788), - [sym__last_token_whitespace] = ACTIONS(792), - [sym__emphasis_open_star] = ACTIONS(788), - [sym__emphasis_open_underscore] = ACTIONS(788), + [185] = { + [aux_sym__ignore_matching_tokens] = STATE(153), + [aux_sym__html_block_1_token1] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_BSLASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym__] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1003), + [anon_sym_LT_QMARK] = ACTIONS(1003), + [aux_sym__html_block_4_token1] = ACTIONS(1003), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1001), + [aux_sym__html_block_6_token1] = ACTIONS(1003), + [aux_sym__html_block_6_token2] = ACTIONS(1001), + [sym__open_tag_html_block] = ACTIONS(1001), + [sym__open_tag_html_block_newline] = ACTIONS(1001), + [sym__closing_tag_html_block] = ACTIONS(1001), + [sym__closing_tag_html_block_newline] = ACTIONS(1001), + [sym_backslash_escape] = ACTIONS(1001), + [sym_uri_autolink] = ACTIONS(1001), + [sym_email_autolink] = ACTIONS(1001), + [sym_entity_reference] = ACTIONS(1001), + [sym_numeric_character_reference] = ACTIONS(1001), + [sym__whitespace_ge_2] = ACTIONS(1001), + [aux_sym__whitespace_token1] = ACTIONS(1003), + [sym__word_no_digit] = ACTIONS(1001), + [sym__digits] = ACTIONS(1001), + [aux_sym__newline_token1] = ACTIONS(1001), + [sym__block_close] = ACTIONS(1001), + [sym__block_continuation] = ACTIONS(1005), + [sym__block_quote_start] = ACTIONS(1001), + [sym__indented_chunk_start] = ACTIONS(1001), + [sym_atx_h1_marker] = ACTIONS(1001), + [sym_atx_h2_marker] = ACTIONS(1001), + [sym_atx_h3_marker] = ACTIONS(1001), + [sym_atx_h4_marker] = ACTIONS(1001), + [sym_atx_h5_marker] = ACTIONS(1001), + [sym_atx_h6_marker] = ACTIONS(1001), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1001), + [sym__thematic_break] = ACTIONS(1001), + [sym__list_marker_minus] = ACTIONS(1001), + [sym__list_marker_plus] = ACTIONS(1001), + [sym__list_marker_star] = ACTIONS(1001), + [sym__list_marker_parenthesis] = ACTIONS(1001), + [sym__list_marker_dot] = ACTIONS(1001), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1001), + [sym__fenced_code_block_start_backtick] = ACTIONS(1001), + [sym__fenced_code_block_start_tilde] = ACTIONS(1001), + [sym__blank_line_start] = ACTIONS(1001), + [sym__code_span_start] = ACTIONS(1001), + [sym__last_token_whitespace] = ACTIONS(1005), + [sym__emphasis_open_star] = ACTIONS(1001), + [sym__emphasis_open_underscore] = ACTIONS(1001), }, - [156] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(788), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_POUND] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DOT] = ACTIONS(788), - [anon_sym_SLASH] = ACTIONS(788), - [anon_sym_COLON] = ACTIONS(788), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(788), - [anon_sym_QMARK] = ACTIONS(788), - [anon_sym_AT] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(788), - [anon_sym_BSLASH] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(788), - [anon_sym_CARET] = ACTIONS(788), - [anon_sym__] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(790), - [anon_sym_LT_QMARK] = ACTIONS(790), - [aux_sym__html_block_4_token1] = ACTIONS(790), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(788), - [aux_sym__html_block_6_token1] = ACTIONS(790), - [aux_sym__html_block_6_token2] = ACTIONS(788), - [sym__open_tag_html_block] = ACTIONS(788), - [sym__open_tag_html_block_newline] = ACTIONS(788), - [sym__closing_tag_html_block] = ACTIONS(788), - [sym__closing_tag_html_block_newline] = ACTIONS(788), - [sym_backslash_escape] = ACTIONS(788), - [sym_uri_autolink] = ACTIONS(788), - [sym_email_autolink] = ACTIONS(788), - [sym_entity_reference] = ACTIONS(788), - [sym_numeric_character_reference] = ACTIONS(788), - [sym__whitespace_ge_2] = ACTIONS(788), - [aux_sym__whitespace_token1] = ACTIONS(790), - [sym__word_no_digit] = ACTIONS(788), - [sym__digits] = ACTIONS(788), - [aux_sym__newline_token1] = ACTIONS(788), - [sym__block_close] = ACTIONS(788), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(788), - [sym__indented_chunk_start] = ACTIONS(788), - [sym_atx_h1_marker] = ACTIONS(788), - [sym_atx_h2_marker] = ACTIONS(788), - [sym_atx_h3_marker] = ACTIONS(788), - [sym_atx_h4_marker] = ACTIONS(788), - [sym_atx_h5_marker] = ACTIONS(788), - [sym_atx_h6_marker] = ACTIONS(788), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(788), - [sym__thematic_break] = ACTIONS(788), - [sym__list_marker_minus] = ACTIONS(788), - [sym__list_marker_plus] = ACTIONS(788), - [sym__list_marker_star] = ACTIONS(788), - [sym__list_marker_parenthesis] = ACTIONS(788), - [sym__list_marker_dot] = ACTIONS(788), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_star_dont_interrupt] = ACTIONS(788), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(788), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(788), - [sym__fenced_code_block_start_backtick] = ACTIONS(788), - [sym__fenced_code_block_start_tilde] = ACTIONS(788), - [sym__blank_line_start] = ACTIONS(788), - [sym__code_span_start] = ACTIONS(788), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(788), - [sym__emphasis_open_underscore] = ACTIONS(788), + [186] = { + [sym__blank_line] = STATE(186), + [sym__indented_chunk] = STATE(186), + [aux_sym_indented_code_block_repeat1] = STATE(186), + [aux_sym__html_block_1_token1] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_QMARK] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_BSLASH] = ACTIONS(1009), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym__] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1009), + [anon_sym_LT_QMARK] = ACTIONS(1009), + [aux_sym__html_block_4_token1] = ACTIONS(1009), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1007), + [aux_sym__html_block_6_token1] = ACTIONS(1009), + [aux_sym__html_block_6_token2] = ACTIONS(1007), + [sym__open_tag_html_block] = ACTIONS(1007), + [sym__open_tag_html_block_newline] = ACTIONS(1007), + [sym__closing_tag_html_block] = ACTIONS(1007), + [sym__closing_tag_html_block_newline] = ACTIONS(1007), + [sym_backslash_escape] = ACTIONS(1007), + [sym_uri_autolink] = ACTIONS(1007), + [sym_email_autolink] = ACTIONS(1007), + [sym_entity_reference] = ACTIONS(1007), + [sym_numeric_character_reference] = ACTIONS(1007), + [sym__whitespace_ge_2] = ACTIONS(1007), + [aux_sym__whitespace_token1] = ACTIONS(1009), + [sym__word_no_digit] = ACTIONS(1007), + [sym__digits] = ACTIONS(1007), + [aux_sym__newline_token1] = ACTIONS(1007), + [sym__block_close] = ACTIONS(1007), + [sym__block_quote_start] = ACTIONS(1007), + [sym__indented_chunk_start] = ACTIONS(1011), + [sym_atx_h1_marker] = ACTIONS(1007), + [sym_atx_h2_marker] = ACTIONS(1007), + [sym_atx_h3_marker] = ACTIONS(1007), + [sym_atx_h4_marker] = ACTIONS(1007), + [sym_atx_h5_marker] = ACTIONS(1007), + [sym_atx_h6_marker] = ACTIONS(1007), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1007), + [sym__thematic_break] = ACTIONS(1007), + [sym__list_marker_minus] = ACTIONS(1007), + [sym__list_marker_plus] = ACTIONS(1007), + [sym__list_marker_star] = ACTIONS(1007), + [sym__list_marker_parenthesis] = ACTIONS(1007), + [sym__list_marker_dot] = ACTIONS(1007), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1007), + [sym__fenced_code_block_start_backtick] = ACTIONS(1007), + [sym__fenced_code_block_start_tilde] = ACTIONS(1007), + [sym__blank_line_start] = ACTIONS(1014), + [sym__code_span_start] = ACTIONS(1007), + [sym__emphasis_open_star] = ACTIONS(1007), + [sym__emphasis_open_underscore] = ACTIONS(1007), }, - [157] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(794), - [aux_sym__html_block_1_token1] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_POUND] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_SQUOTE] = ACTIONS(794), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_SLASH] = ACTIONS(794), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_BSLASH] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(794), - [anon_sym__] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(796), - [anon_sym_LT_QMARK] = ACTIONS(796), - [aux_sym__html_block_4_token1] = ACTIONS(796), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(794), - [aux_sym__html_block_6_token1] = ACTIONS(796), - [aux_sym__html_block_6_token2] = ACTIONS(794), - [sym__open_tag_html_block] = ACTIONS(794), - [sym__open_tag_html_block_newline] = ACTIONS(794), - [sym__closing_tag_html_block] = ACTIONS(794), - [sym__closing_tag_html_block_newline] = ACTIONS(794), - [sym_backslash_escape] = ACTIONS(794), - [sym_uri_autolink] = ACTIONS(794), - [sym_email_autolink] = ACTIONS(794), - [sym_entity_reference] = ACTIONS(794), - [sym_numeric_character_reference] = ACTIONS(794), - [sym__whitespace_ge_2] = ACTIONS(794), - [aux_sym__whitespace_token1] = ACTIONS(796), - [sym__word_no_digit] = ACTIONS(794), - [sym__digits] = ACTIONS(794), - [aux_sym__newline_token1] = ACTIONS(794), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(794), - [sym__indented_chunk_start] = ACTIONS(794), - [sym_atx_h1_marker] = ACTIONS(794), - [sym_atx_h2_marker] = ACTIONS(794), - [sym_atx_h3_marker] = ACTIONS(794), - [sym_atx_h4_marker] = ACTIONS(794), - [sym_atx_h5_marker] = ACTIONS(794), - [sym_atx_h6_marker] = ACTIONS(794), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(794), - [sym__thematic_break] = ACTIONS(794), - [sym__list_marker_minus] = ACTIONS(794), - [sym__list_marker_plus] = ACTIONS(794), - [sym__list_marker_star] = ACTIONS(794), - [sym__list_marker_parenthesis] = ACTIONS(794), - [sym__list_marker_dot] = ACTIONS(794), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(794), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(794), - [sym__list_marker_star_dont_interrupt] = ACTIONS(794), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(794), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(794), - [sym__fenced_code_block_start_backtick] = ACTIONS(794), - [sym__fenced_code_block_start_tilde] = ACTIONS(794), - [sym__blank_line_start] = ACTIONS(794), - [sym__code_span_start] = ACTIONS(794), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(794), - [sym__emphasis_open_underscore] = ACTIONS(794), + [187] = { + [aux_sym__ignore_matching_tokens] = STATE(155), + [aux_sym__html_block_1_token1] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_PERCENT] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1017), + [anon_sym_COLON] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(1017), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_BSLASH] = ACTIONS(1019), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_CARET] = ACTIONS(1017), + [anon_sym__] = ACTIONS(1017), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1017), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1019), + [anon_sym_LT_QMARK] = ACTIONS(1019), + [aux_sym__html_block_4_token1] = ACTIONS(1019), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1017), + [aux_sym__html_block_6_token1] = ACTIONS(1019), + [aux_sym__html_block_6_token2] = ACTIONS(1017), + [sym__open_tag_html_block] = ACTIONS(1017), + [sym__open_tag_html_block_newline] = ACTIONS(1017), + [sym__closing_tag_html_block] = ACTIONS(1017), + [sym__closing_tag_html_block_newline] = ACTIONS(1017), + [sym_backslash_escape] = ACTIONS(1017), + [sym_uri_autolink] = ACTIONS(1017), + [sym_email_autolink] = ACTIONS(1017), + [sym_entity_reference] = ACTIONS(1017), + [sym_numeric_character_reference] = ACTIONS(1017), + [sym__whitespace_ge_2] = ACTIONS(1017), + [aux_sym__whitespace_token1] = ACTIONS(1019), + [sym__word_no_digit] = ACTIONS(1017), + [sym__digits] = ACTIONS(1017), + [aux_sym__newline_token1] = ACTIONS(1017), + [sym__block_close] = ACTIONS(1017), + [sym__block_continuation] = ACTIONS(1021), + [sym__block_quote_start] = ACTIONS(1017), + [sym__indented_chunk_start] = ACTIONS(1017), + [sym_atx_h1_marker] = ACTIONS(1017), + [sym_atx_h2_marker] = ACTIONS(1017), + [sym_atx_h3_marker] = ACTIONS(1017), + [sym_atx_h4_marker] = ACTIONS(1017), + [sym_atx_h5_marker] = ACTIONS(1017), + [sym_atx_h6_marker] = ACTIONS(1017), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1017), + [sym__thematic_break] = ACTIONS(1017), + [sym__list_marker_minus] = ACTIONS(1017), + [sym__list_marker_plus] = ACTIONS(1017), + [sym__list_marker_star] = ACTIONS(1017), + [sym__list_marker_parenthesis] = ACTIONS(1017), + [sym__list_marker_dot] = ACTIONS(1017), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1017), + [sym__fenced_code_block_start_backtick] = ACTIONS(1017), + [sym__fenced_code_block_start_tilde] = ACTIONS(1017), + [sym__blank_line_start] = ACTIONS(1017), + [sym__code_span_start] = ACTIONS(1017), + [sym__last_token_whitespace] = ACTIONS(1021), + [sym__emphasis_open_star] = ACTIONS(1017), + [sym__emphasis_open_underscore] = ACTIONS(1017), }, - [158] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(798), - [aux_sym__html_block_1_token1] = ACTIONS(798), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_POUND] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [anon_sym_PERCENT] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(798), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_DOT] = ACTIONS(798), - [anon_sym_SLASH] = ACTIONS(798), - [anon_sym_COLON] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_EQ] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_QMARK] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(798), - [anon_sym_BSLASH] = ACTIONS(800), - [anon_sym_RBRACK] = ACTIONS(798), - [anon_sym_CARET] = ACTIONS(798), - [anon_sym__] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(800), - [anon_sym_LT_QMARK] = ACTIONS(800), - [aux_sym__html_block_4_token1] = ACTIONS(800), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(798), - [aux_sym__html_block_6_token1] = ACTIONS(800), - [aux_sym__html_block_6_token2] = ACTIONS(798), - [sym__open_tag_html_block] = ACTIONS(798), - [sym__open_tag_html_block_newline] = ACTIONS(798), - [sym__closing_tag_html_block] = ACTIONS(798), - [sym__closing_tag_html_block_newline] = ACTIONS(798), - [sym_backslash_escape] = ACTIONS(798), - [sym_uri_autolink] = ACTIONS(798), - [sym_email_autolink] = ACTIONS(798), - [sym_entity_reference] = ACTIONS(798), - [sym_numeric_character_reference] = ACTIONS(798), - [sym__whitespace_ge_2] = ACTIONS(798), - [aux_sym__whitespace_token1] = ACTIONS(800), - [sym__word_no_digit] = ACTIONS(798), - [sym__digits] = ACTIONS(798), - [aux_sym__newline_token1] = ACTIONS(798), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(798), - [sym__indented_chunk_start] = ACTIONS(798), - [sym_atx_h1_marker] = ACTIONS(798), - [sym_atx_h2_marker] = ACTIONS(798), - [sym_atx_h3_marker] = ACTIONS(798), - [sym_atx_h4_marker] = ACTIONS(798), - [sym_atx_h5_marker] = ACTIONS(798), - [sym_atx_h6_marker] = ACTIONS(798), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(798), - [sym__thematic_break] = ACTIONS(798), - [sym__list_marker_minus] = ACTIONS(798), - [sym__list_marker_plus] = ACTIONS(798), - [sym__list_marker_star] = ACTIONS(798), - [sym__list_marker_parenthesis] = ACTIONS(798), - [sym__list_marker_dot] = ACTIONS(798), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(798), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(798), - [sym__list_marker_star_dont_interrupt] = ACTIONS(798), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(798), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(798), - [sym__fenced_code_block_start_backtick] = ACTIONS(798), - [sym__fenced_code_block_start_tilde] = ACTIONS(798), - [sym__blank_line_start] = ACTIONS(798), - [sym__code_span_start] = ACTIONS(798), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(798), - [sym__emphasis_open_underscore] = ACTIONS(798), + [188] = { + [aux_sym__ignore_matching_tokens] = STATE(157), + [aux_sym__html_block_1_token1] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_PERCENT] = ACTIONS(1023), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_BSLASH] = ACTIONS(1025), + [anon_sym_RBRACK] = ACTIONS(1023), + [anon_sym_CARET] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1023), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1025), + [anon_sym_LT_QMARK] = ACTIONS(1025), + [aux_sym__html_block_4_token1] = ACTIONS(1025), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1023), + [aux_sym__html_block_6_token1] = ACTIONS(1025), + [aux_sym__html_block_6_token2] = ACTIONS(1023), + [sym__open_tag_html_block] = ACTIONS(1023), + [sym__open_tag_html_block_newline] = ACTIONS(1023), + [sym__closing_tag_html_block] = ACTIONS(1023), + [sym__closing_tag_html_block_newline] = ACTIONS(1023), + [sym_backslash_escape] = ACTIONS(1023), + [sym_uri_autolink] = ACTIONS(1023), + [sym_email_autolink] = ACTIONS(1023), + [sym_entity_reference] = ACTIONS(1023), + [sym_numeric_character_reference] = ACTIONS(1023), + [sym__whitespace_ge_2] = ACTIONS(1023), + [aux_sym__whitespace_token1] = ACTIONS(1025), + [sym__word_no_digit] = ACTIONS(1023), + [sym__digits] = ACTIONS(1023), + [aux_sym__newline_token1] = ACTIONS(1023), + [sym__block_close] = ACTIONS(1023), + [sym__block_continuation] = ACTIONS(1027), + [sym__block_quote_start] = ACTIONS(1023), + [sym__indented_chunk_start] = ACTIONS(1023), + [sym_atx_h1_marker] = ACTIONS(1023), + [sym_atx_h2_marker] = ACTIONS(1023), + [sym_atx_h3_marker] = ACTIONS(1023), + [sym_atx_h4_marker] = ACTIONS(1023), + [sym_atx_h5_marker] = ACTIONS(1023), + [sym_atx_h6_marker] = ACTIONS(1023), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1023), + [sym__thematic_break] = ACTIONS(1023), + [sym__list_marker_minus] = ACTIONS(1023), + [sym__list_marker_plus] = ACTIONS(1023), + [sym__list_marker_star] = ACTIONS(1023), + [sym__list_marker_parenthesis] = ACTIONS(1023), + [sym__list_marker_dot] = ACTIONS(1023), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1023), + [sym__fenced_code_block_start_backtick] = ACTIONS(1023), + [sym__fenced_code_block_start_tilde] = ACTIONS(1023), + [sym__blank_line_start] = ACTIONS(1023), + [sym__code_span_start] = ACTIONS(1023), + [sym__last_token_whitespace] = ACTIONS(1027), + [sym__emphasis_open_star] = ACTIONS(1023), + [sym__emphasis_open_underscore] = ACTIONS(1023), }, - [159] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(802), - [aux_sym__html_block_1_token1] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [anon_sym_PERCENT] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_SQUOTE] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(802), - [anon_sym_DOT] = ACTIONS(802), - [anon_sym_SLASH] = ACTIONS(802), - [anon_sym_COLON] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_QMARK] = ACTIONS(802), - [anon_sym_AT] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_BSLASH] = ACTIONS(804), - [anon_sym_RBRACK] = ACTIONS(802), - [anon_sym_CARET] = ACTIONS(802), - [anon_sym__] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(802), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(804), - [anon_sym_LT_QMARK] = ACTIONS(804), - [aux_sym__html_block_4_token1] = ACTIONS(804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(802), - [aux_sym__html_block_6_token1] = ACTIONS(804), - [aux_sym__html_block_6_token2] = ACTIONS(802), - [sym__open_tag_html_block] = ACTIONS(802), - [sym__open_tag_html_block_newline] = ACTIONS(802), - [sym__closing_tag_html_block] = ACTIONS(802), - [sym__closing_tag_html_block_newline] = ACTIONS(802), - [sym_backslash_escape] = ACTIONS(802), - [sym_uri_autolink] = ACTIONS(802), - [sym_email_autolink] = ACTIONS(802), - [sym_entity_reference] = ACTIONS(802), - [sym_numeric_character_reference] = ACTIONS(802), - [sym__whitespace_ge_2] = ACTIONS(802), - [aux_sym__whitespace_token1] = ACTIONS(804), - [sym__word_no_digit] = ACTIONS(802), - [sym__digits] = ACTIONS(802), - [aux_sym__newline_token1] = ACTIONS(802), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(802), - [sym__indented_chunk_start] = ACTIONS(802), - [sym_atx_h1_marker] = ACTIONS(802), - [sym_atx_h2_marker] = ACTIONS(802), - [sym_atx_h3_marker] = ACTIONS(802), - [sym_atx_h4_marker] = ACTIONS(802), - [sym_atx_h5_marker] = ACTIONS(802), - [sym_atx_h6_marker] = ACTIONS(802), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(802), - [sym__thematic_break] = ACTIONS(802), - [sym__list_marker_minus] = ACTIONS(802), - [sym__list_marker_plus] = ACTIONS(802), - [sym__list_marker_star] = ACTIONS(802), - [sym__list_marker_parenthesis] = ACTIONS(802), - [sym__list_marker_dot] = ACTIONS(802), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(802), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(802), - [sym__list_marker_star_dont_interrupt] = ACTIONS(802), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(802), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(802), - [sym__fenced_code_block_start_backtick] = ACTIONS(802), - [sym__fenced_code_block_start_tilde] = ACTIONS(802), - [sym__blank_line_start] = ACTIONS(802), - [sym__code_span_start] = ACTIONS(802), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(802), - [sym__emphasis_open_underscore] = ACTIONS(802), + [189] = { + [aux_sym__ignore_matching_tokens] = STATE(159), + [aux_sym__html_block_1_token1] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_BSLASH] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym__] = ACTIONS(1029), + [anon_sym_BQUOTE] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_QMARK] = ACTIONS(1031), + [aux_sym__html_block_4_token1] = ACTIONS(1031), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1029), + [aux_sym__html_block_6_token1] = ACTIONS(1031), + [aux_sym__html_block_6_token2] = ACTIONS(1029), + [sym__open_tag_html_block] = ACTIONS(1029), + [sym__open_tag_html_block_newline] = ACTIONS(1029), + [sym__closing_tag_html_block] = ACTIONS(1029), + [sym__closing_tag_html_block_newline] = ACTIONS(1029), + [sym_backslash_escape] = ACTIONS(1029), + [sym_uri_autolink] = ACTIONS(1029), + [sym_email_autolink] = ACTIONS(1029), + [sym_entity_reference] = ACTIONS(1029), + [sym_numeric_character_reference] = ACTIONS(1029), + [sym__whitespace_ge_2] = ACTIONS(1029), + [aux_sym__whitespace_token1] = ACTIONS(1031), + [sym__word_no_digit] = ACTIONS(1029), + [sym__digits] = ACTIONS(1029), + [aux_sym__newline_token1] = ACTIONS(1029), + [sym__block_close] = ACTIONS(1029), + [sym__block_continuation] = ACTIONS(1033), + [sym__block_quote_start] = ACTIONS(1029), + [sym__indented_chunk_start] = ACTIONS(1029), + [sym_atx_h1_marker] = ACTIONS(1029), + [sym_atx_h2_marker] = ACTIONS(1029), + [sym_atx_h3_marker] = ACTIONS(1029), + [sym_atx_h4_marker] = ACTIONS(1029), + [sym_atx_h5_marker] = ACTIONS(1029), + [sym_atx_h6_marker] = ACTIONS(1029), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1029), + [sym__thematic_break] = ACTIONS(1029), + [sym__list_marker_minus] = ACTIONS(1029), + [sym__list_marker_plus] = ACTIONS(1029), + [sym__list_marker_star] = ACTIONS(1029), + [sym__list_marker_parenthesis] = ACTIONS(1029), + [sym__list_marker_dot] = ACTIONS(1029), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1029), + [sym__fenced_code_block_start_backtick] = ACTIONS(1029), + [sym__fenced_code_block_start_tilde] = ACTIONS(1029), + [sym__blank_line_start] = ACTIONS(1029), + [sym__code_span_start] = ACTIONS(1029), + [sym__last_token_whitespace] = ACTIONS(1033), + [sym__emphasis_open_star] = ACTIONS(1029), + [sym__emphasis_open_underscore] = ACTIONS(1029), }, - [160] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(806), - [aux_sym__html_block_1_token1] = ACTIONS(806), - [anon_sym_BANG] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_POUND] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_PERCENT] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_SQUOTE] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_AT] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_BSLASH] = ACTIONS(808), - [anon_sym_RBRACK] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), - [anon_sym__] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_TILDE] = ACTIONS(806), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(808), - [anon_sym_LT_QMARK] = ACTIONS(808), - [aux_sym__html_block_4_token1] = ACTIONS(808), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(806), - [aux_sym__html_block_6_token1] = ACTIONS(808), - [aux_sym__html_block_6_token2] = ACTIONS(806), - [sym__open_tag_html_block] = ACTIONS(806), - [sym__open_tag_html_block_newline] = ACTIONS(806), - [sym__closing_tag_html_block] = ACTIONS(806), - [sym__closing_tag_html_block_newline] = ACTIONS(806), - [sym_backslash_escape] = ACTIONS(806), - [sym_uri_autolink] = ACTIONS(806), - [sym_email_autolink] = ACTIONS(806), - [sym_entity_reference] = ACTIONS(806), - [sym_numeric_character_reference] = ACTIONS(806), - [sym__whitespace_ge_2] = ACTIONS(806), - [aux_sym__whitespace_token1] = ACTIONS(808), - [sym__word_no_digit] = ACTIONS(806), - [sym__digits] = ACTIONS(806), - [aux_sym__newline_token1] = ACTIONS(806), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(806), - [sym__indented_chunk_start] = ACTIONS(806), - [sym_atx_h1_marker] = ACTIONS(806), - [sym_atx_h2_marker] = ACTIONS(806), - [sym_atx_h3_marker] = ACTIONS(806), - [sym_atx_h4_marker] = ACTIONS(806), - [sym_atx_h5_marker] = ACTIONS(806), - [sym_atx_h6_marker] = ACTIONS(806), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(806), - [sym__thematic_break] = ACTIONS(806), - [sym__list_marker_minus] = ACTIONS(806), - [sym__list_marker_plus] = ACTIONS(806), - [sym__list_marker_star] = ACTIONS(806), - [sym__list_marker_parenthesis] = ACTIONS(806), - [sym__list_marker_dot] = ACTIONS(806), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(806), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(806), - [sym__list_marker_star_dont_interrupt] = ACTIONS(806), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(806), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(806), - [sym__fenced_code_block_start_backtick] = ACTIONS(806), - [sym__fenced_code_block_start_tilde] = ACTIONS(806), - [sym__blank_line_start] = ACTIONS(806), - [sym__code_span_start] = ACTIONS(806), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(806), - [sym__emphasis_open_underscore] = ACTIONS(806), + [190] = { + [aux_sym__ignore_matching_tokens] = STATE(161), + [aux_sym__html_block_1_token1] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PERCENT] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_BSLASH] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_TILDE] = ACTIONS(1035), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1037), + [anon_sym_LT_QMARK] = ACTIONS(1037), + [aux_sym__html_block_4_token1] = ACTIONS(1037), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1035), + [aux_sym__html_block_6_token1] = ACTIONS(1037), + [aux_sym__html_block_6_token2] = ACTIONS(1035), + [sym__open_tag_html_block] = ACTIONS(1035), + [sym__open_tag_html_block_newline] = ACTIONS(1035), + [sym__closing_tag_html_block] = ACTIONS(1035), + [sym__closing_tag_html_block_newline] = ACTIONS(1035), + [sym_backslash_escape] = ACTIONS(1035), + [sym_uri_autolink] = ACTIONS(1035), + [sym_email_autolink] = ACTIONS(1035), + [sym_entity_reference] = ACTIONS(1035), + [sym_numeric_character_reference] = ACTIONS(1035), + [sym__whitespace_ge_2] = ACTIONS(1035), + [aux_sym__whitespace_token1] = ACTIONS(1037), + [sym__word_no_digit] = ACTIONS(1035), + [sym__digits] = ACTIONS(1035), + [aux_sym__newline_token1] = ACTIONS(1035), + [sym__block_close] = ACTIONS(1035), + [sym__block_continuation] = ACTIONS(1039), + [sym__block_quote_start] = ACTIONS(1035), + [sym__indented_chunk_start] = ACTIONS(1035), + [sym_atx_h1_marker] = ACTIONS(1035), + [sym_atx_h2_marker] = ACTIONS(1035), + [sym_atx_h3_marker] = ACTIONS(1035), + [sym_atx_h4_marker] = ACTIONS(1035), + [sym_atx_h5_marker] = ACTIONS(1035), + [sym_atx_h6_marker] = ACTIONS(1035), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1035), + [sym__thematic_break] = ACTIONS(1035), + [sym__list_marker_minus] = ACTIONS(1035), + [sym__list_marker_plus] = ACTIONS(1035), + [sym__list_marker_star] = ACTIONS(1035), + [sym__list_marker_parenthesis] = ACTIONS(1035), + [sym__list_marker_dot] = ACTIONS(1035), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1035), + [sym__fenced_code_block_start_backtick] = ACTIONS(1035), + [sym__fenced_code_block_start_tilde] = ACTIONS(1035), + [sym__blank_line_start] = ACTIONS(1035), + [sym__code_span_start] = ACTIONS(1035), + [sym__last_token_whitespace] = ACTIONS(1039), + [sym__emphasis_open_star] = ACTIONS(1035), + [sym__emphasis_open_underscore] = ACTIONS(1035), }, - [161] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_DQUOTE] = ACTIONS(810), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_DOLLAR] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_COMMA] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_DOT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(810), - [anon_sym_COLON] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(810), - [anon_sym_QMARK] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_BSLASH] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym__] = ACTIONS(810), - [anon_sym_BQUOTE] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), - [anon_sym_LT_QMARK] = ACTIONS(812), - [aux_sym__html_block_4_token1] = ACTIONS(812), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(810), - [aux_sym__html_block_6_token1] = ACTIONS(812), - [aux_sym__html_block_6_token2] = ACTIONS(810), - [sym__open_tag_html_block] = ACTIONS(810), - [sym__open_tag_html_block_newline] = ACTIONS(810), - [sym__closing_tag_html_block] = ACTIONS(810), - [sym__closing_tag_html_block_newline] = ACTIONS(810), - [sym_backslash_escape] = ACTIONS(810), - [sym_uri_autolink] = ACTIONS(810), - [sym_email_autolink] = ACTIONS(810), - [sym_entity_reference] = ACTIONS(810), - [sym_numeric_character_reference] = ACTIONS(810), - [sym__whitespace_ge_2] = ACTIONS(810), - [aux_sym__whitespace_token1] = ACTIONS(812), - [sym__word_no_digit] = ACTIONS(810), - [sym__digits] = ACTIONS(810), - [aux_sym__newline_token1] = ACTIONS(810), - [sym__block_close] = ACTIONS(810), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(810), - [sym__indented_chunk_start] = ACTIONS(810), - [sym_atx_h1_marker] = ACTIONS(810), - [sym_atx_h2_marker] = ACTIONS(810), - [sym_atx_h3_marker] = ACTIONS(810), - [sym_atx_h4_marker] = ACTIONS(810), - [sym_atx_h5_marker] = ACTIONS(810), - [sym_atx_h6_marker] = ACTIONS(810), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(810), - [sym__thematic_break] = ACTIONS(810), - [sym__list_marker_minus] = ACTIONS(810), - [sym__list_marker_plus] = ACTIONS(810), - [sym__list_marker_star] = ACTIONS(810), - [sym__list_marker_parenthesis] = ACTIONS(810), - [sym__list_marker_dot] = ACTIONS(810), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(810), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(810), - [sym__list_marker_star_dont_interrupt] = ACTIONS(810), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(810), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(810), - [sym__fenced_code_block_start_backtick] = ACTIONS(810), - [sym__fenced_code_block_start_tilde] = ACTIONS(810), - [sym__blank_line_start] = ACTIONS(810), - [sym__code_span_start] = ACTIONS(810), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(810), - [sym__emphasis_open_underscore] = ACTIONS(810), + [191] = { + [aux_sym__ignore_matching_tokens] = STATE(163), + [aux_sym__html_block_1_token1] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [anon_sym_POUND] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_AT] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_BSLASH] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym__] = ACTIONS(1041), + [anon_sym_BQUOTE] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1043), + [anon_sym_LT_QMARK] = ACTIONS(1043), + [aux_sym__html_block_4_token1] = ACTIONS(1043), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1041), + [aux_sym__html_block_6_token1] = ACTIONS(1043), + [aux_sym__html_block_6_token2] = ACTIONS(1041), + [sym__open_tag_html_block] = ACTIONS(1041), + [sym__open_tag_html_block_newline] = ACTIONS(1041), + [sym__closing_tag_html_block] = ACTIONS(1041), + [sym__closing_tag_html_block_newline] = ACTIONS(1041), + [sym_backslash_escape] = ACTIONS(1041), + [sym_uri_autolink] = ACTIONS(1041), + [sym_email_autolink] = ACTIONS(1041), + [sym_entity_reference] = ACTIONS(1041), + [sym_numeric_character_reference] = ACTIONS(1041), + [sym__whitespace_ge_2] = ACTIONS(1041), + [aux_sym__whitespace_token1] = ACTIONS(1043), + [sym__word_no_digit] = ACTIONS(1041), + [sym__digits] = ACTIONS(1041), + [aux_sym__newline_token1] = ACTIONS(1041), + [sym__block_close] = ACTIONS(1041), + [sym__block_continuation] = ACTIONS(1045), + [sym__block_quote_start] = ACTIONS(1041), + [sym__indented_chunk_start] = ACTIONS(1041), + [sym_atx_h1_marker] = ACTIONS(1041), + [sym_atx_h2_marker] = ACTIONS(1041), + [sym_atx_h3_marker] = ACTIONS(1041), + [sym_atx_h4_marker] = ACTIONS(1041), + [sym_atx_h5_marker] = ACTIONS(1041), + [sym_atx_h6_marker] = ACTIONS(1041), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1041), + [sym__thematic_break] = ACTIONS(1041), + [sym__list_marker_minus] = ACTIONS(1041), + [sym__list_marker_plus] = ACTIONS(1041), + [sym__list_marker_star] = ACTIONS(1041), + [sym__list_marker_parenthesis] = ACTIONS(1041), + [sym__list_marker_dot] = ACTIONS(1041), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1041), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1041), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1041), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1041), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1041), + [sym__fenced_code_block_start_backtick] = ACTIONS(1041), + [sym__fenced_code_block_start_tilde] = ACTIONS(1041), + [sym__blank_line_start] = ACTIONS(1041), + [sym__code_span_start] = ACTIONS(1041), + [sym__last_token_whitespace] = ACTIONS(1045), + [sym__emphasis_open_star] = ACTIONS(1041), + [sym__emphasis_open_underscore] = ACTIONS(1041), }, - [162] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(814), - [aux_sym__html_block_1_token1] = ACTIONS(814), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(814), - [anon_sym_DOLLAR] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(816), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_QMARK] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(814), - [anon_sym_BSLASH] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(814), - [anon_sym__] = ACTIONS(814), - [anon_sym_BQUOTE] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(814), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(816), - [anon_sym_LT_QMARK] = ACTIONS(816), - [aux_sym__html_block_4_token1] = ACTIONS(816), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(814), - [aux_sym__html_block_6_token1] = ACTIONS(816), - [aux_sym__html_block_6_token2] = ACTIONS(814), - [sym__open_tag_html_block] = ACTIONS(814), - [sym__open_tag_html_block_newline] = ACTIONS(814), - [sym__closing_tag_html_block] = ACTIONS(814), - [sym__closing_tag_html_block_newline] = ACTIONS(814), - [sym_backslash_escape] = ACTIONS(814), - [sym_uri_autolink] = ACTIONS(814), - [sym_email_autolink] = ACTIONS(814), - [sym_entity_reference] = ACTIONS(814), - [sym_numeric_character_reference] = ACTIONS(814), - [sym__whitespace_ge_2] = ACTIONS(814), - [aux_sym__whitespace_token1] = ACTIONS(816), - [sym__word_no_digit] = ACTIONS(814), - [sym__digits] = ACTIONS(814), - [aux_sym__newline_token1] = ACTIONS(814), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(814), - [sym__indented_chunk_start] = ACTIONS(814), - [sym_atx_h1_marker] = ACTIONS(814), - [sym_atx_h2_marker] = ACTIONS(814), - [sym_atx_h3_marker] = ACTIONS(814), - [sym_atx_h4_marker] = ACTIONS(814), - [sym_atx_h5_marker] = ACTIONS(814), - [sym_atx_h6_marker] = ACTIONS(814), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(814), - [sym__thematic_break] = ACTIONS(814), - [sym__list_marker_minus] = ACTIONS(814), - [sym__list_marker_plus] = ACTIONS(814), - [sym__list_marker_star] = ACTIONS(814), - [sym__list_marker_parenthesis] = ACTIONS(814), - [sym__list_marker_dot] = ACTIONS(814), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(814), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(814), - [sym__list_marker_star_dont_interrupt] = ACTIONS(814), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(814), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(814), - [sym__fenced_code_block_start_backtick] = ACTIONS(814), - [sym__fenced_code_block_start_tilde] = ACTIONS(814), - [sym__blank_line_start] = ACTIONS(814), - [sym__code_span_start] = ACTIONS(814), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(814), - [sym__emphasis_open_underscore] = ACTIONS(814), + [192] = { + [aux_sym__ignore_matching_tokens] = STATE(166), + [aux_sym__html_block_1_token1] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PERCENT] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_BSLASH] = ACTIONS(1049), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1049), + [anon_sym_LT_QMARK] = ACTIONS(1049), + [aux_sym__html_block_4_token1] = ACTIONS(1049), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1047), + [aux_sym__html_block_6_token1] = ACTIONS(1049), + [aux_sym__html_block_6_token2] = ACTIONS(1047), + [sym__open_tag_html_block] = ACTIONS(1047), + [sym__open_tag_html_block_newline] = ACTIONS(1047), + [sym__closing_tag_html_block] = ACTIONS(1047), + [sym__closing_tag_html_block_newline] = ACTIONS(1047), + [sym_backslash_escape] = ACTIONS(1047), + [sym_uri_autolink] = ACTIONS(1047), + [sym_email_autolink] = ACTIONS(1047), + [sym_entity_reference] = ACTIONS(1047), + [sym_numeric_character_reference] = ACTIONS(1047), + [sym__whitespace_ge_2] = ACTIONS(1047), + [aux_sym__whitespace_token1] = ACTIONS(1049), + [sym__word_no_digit] = ACTIONS(1047), + [sym__digits] = ACTIONS(1047), + [aux_sym__newline_token1] = ACTIONS(1047), + [sym__block_close] = ACTIONS(1047), + [sym__block_continuation] = ACTIONS(1051), + [sym__block_quote_start] = ACTIONS(1047), + [sym__indented_chunk_start] = ACTIONS(1047), + [sym_atx_h1_marker] = ACTIONS(1047), + [sym_atx_h2_marker] = ACTIONS(1047), + [sym_atx_h3_marker] = ACTIONS(1047), + [sym_atx_h4_marker] = ACTIONS(1047), + [sym_atx_h5_marker] = ACTIONS(1047), + [sym_atx_h6_marker] = ACTIONS(1047), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1047), + [sym__thematic_break] = ACTIONS(1047), + [sym__list_marker_minus] = ACTIONS(1047), + [sym__list_marker_plus] = ACTIONS(1047), + [sym__list_marker_star] = ACTIONS(1047), + [sym__list_marker_parenthesis] = ACTIONS(1047), + [sym__list_marker_dot] = ACTIONS(1047), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1047), + [sym__fenced_code_block_start_backtick] = ACTIONS(1047), + [sym__fenced_code_block_start_tilde] = ACTIONS(1047), + [sym__blank_line_start] = ACTIONS(1047), + [sym__code_span_start] = ACTIONS(1047), + [sym__last_token_whitespace] = ACTIONS(1051), + [sym__emphasis_open_star] = ACTIONS(1047), + [sym__emphasis_open_underscore] = ACTIONS(1047), }, - [163] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(512), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), + [193] = { + [aux_sym__ignore_matching_tokens] = STATE(168), + [aux_sym__html_block_1_token1] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_RPAREN] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_COLON] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_BSLASH] = ACTIONS(1055), + [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1053), + [anon_sym_BQUOTE] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_TILDE] = ACTIONS(1053), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1055), + [anon_sym_LT_QMARK] = ACTIONS(1055), + [aux_sym__html_block_4_token1] = ACTIONS(1055), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1053), + [aux_sym__html_block_6_token1] = ACTIONS(1055), + [aux_sym__html_block_6_token2] = ACTIONS(1053), + [sym__open_tag_html_block] = ACTIONS(1053), + [sym__open_tag_html_block_newline] = ACTIONS(1053), + [sym__closing_tag_html_block] = ACTIONS(1053), + [sym__closing_tag_html_block_newline] = ACTIONS(1053), + [sym_backslash_escape] = ACTIONS(1053), + [sym_uri_autolink] = ACTIONS(1053), + [sym_email_autolink] = ACTIONS(1053), + [sym_entity_reference] = ACTIONS(1053), + [sym_numeric_character_reference] = ACTIONS(1053), + [sym__whitespace_ge_2] = ACTIONS(1053), + [aux_sym__whitespace_token1] = ACTIONS(1055), + [sym__word_no_digit] = ACTIONS(1053), + [sym__digits] = ACTIONS(1053), + [aux_sym__newline_token1] = ACTIONS(1053), + [sym__block_close] = ACTIONS(1053), + [sym__block_continuation] = ACTIONS(1057), + [sym__block_quote_start] = ACTIONS(1053), + [sym__indented_chunk_start] = ACTIONS(1053), + [sym_atx_h1_marker] = ACTIONS(1053), + [sym_atx_h2_marker] = ACTIONS(1053), + [sym_atx_h3_marker] = ACTIONS(1053), + [sym_atx_h4_marker] = ACTIONS(1053), + [sym_atx_h5_marker] = ACTIONS(1053), + [sym_atx_h6_marker] = ACTIONS(1053), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1053), + [sym__thematic_break] = ACTIONS(1053), + [sym__list_marker_minus] = ACTIONS(1053), + [sym__list_marker_plus] = ACTIONS(1053), + [sym__list_marker_star] = ACTIONS(1053), + [sym__list_marker_parenthesis] = ACTIONS(1053), + [sym__list_marker_dot] = ACTIONS(1053), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1053), + [sym__fenced_code_block_start_backtick] = ACTIONS(1053), + [sym__fenced_code_block_start_tilde] = ACTIONS(1053), + [sym__blank_line_start] = ACTIONS(1053), + [sym__code_span_start] = ACTIONS(1053), + [sym__last_token_whitespace] = ACTIONS(1057), + [sym__emphasis_open_star] = ACTIONS(1053), + [sym__emphasis_open_underscore] = ACTIONS(1053), }, - [164] = { - [aux_sym__ignore_matching_tokens] = STATE(123), - [ts_builtin_sym_end] = ACTIONS(512), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(818), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(818), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), + [194] = { + [aux_sym__ignore_matching_tokens] = STATE(169), + [aux_sym__html_block_1_token1] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_BSLASH] = ACTIONS(1061), + [anon_sym_RBRACK] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1061), + [anon_sym_LT_QMARK] = ACTIONS(1061), + [aux_sym__html_block_4_token1] = ACTIONS(1061), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1059), + [aux_sym__html_block_6_token1] = ACTIONS(1061), + [aux_sym__html_block_6_token2] = ACTIONS(1059), + [sym__open_tag_html_block] = ACTIONS(1059), + [sym__open_tag_html_block_newline] = ACTIONS(1059), + [sym__closing_tag_html_block] = ACTIONS(1059), + [sym__closing_tag_html_block_newline] = ACTIONS(1059), + [sym_backslash_escape] = ACTIONS(1059), + [sym_uri_autolink] = ACTIONS(1059), + [sym_email_autolink] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1059), + [sym_numeric_character_reference] = ACTIONS(1059), + [sym__whitespace_ge_2] = ACTIONS(1059), + [aux_sym__whitespace_token1] = ACTIONS(1061), + [sym__word_no_digit] = ACTIONS(1059), + [sym__digits] = ACTIONS(1059), + [aux_sym__newline_token1] = ACTIONS(1059), + [sym__block_close] = ACTIONS(1059), + [sym__block_continuation] = ACTIONS(1063), + [sym__block_quote_start] = ACTIONS(1059), + [sym__indented_chunk_start] = ACTIONS(1059), + [sym_atx_h1_marker] = ACTIONS(1059), + [sym_atx_h2_marker] = ACTIONS(1059), + [sym_atx_h3_marker] = ACTIONS(1059), + [sym_atx_h4_marker] = ACTIONS(1059), + [sym_atx_h5_marker] = ACTIONS(1059), + [sym_atx_h6_marker] = ACTIONS(1059), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1059), + [sym__thematic_break] = ACTIONS(1059), + [sym__list_marker_minus] = ACTIONS(1059), + [sym__list_marker_plus] = ACTIONS(1059), + [sym__list_marker_star] = ACTIONS(1059), + [sym__list_marker_parenthesis] = ACTIONS(1059), + [sym__list_marker_dot] = ACTIONS(1059), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1059), + [sym__fenced_code_block_start_backtick] = ACTIONS(1059), + [sym__fenced_code_block_start_tilde] = ACTIONS(1059), + [sym__blank_line_start] = ACTIONS(1059), + [sym__code_span_start] = ACTIONS(1059), + [sym__last_token_whitespace] = ACTIONS(1063), + [sym__emphasis_open_star] = ACTIONS(1059), + [sym__emphasis_open_underscore] = ACTIONS(1059), }, - [165] = { - [aux_sym__ignore_matching_tokens] = STATE(119), - [aux_sym__html_block_1_token1] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_BSLASH] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym__] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(822), - [anon_sym_LT_QMARK] = ACTIONS(822), - [aux_sym__html_block_4_token1] = ACTIONS(822), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(820), - [aux_sym__html_block_6_token1] = ACTIONS(822), - [aux_sym__html_block_6_token2] = ACTIONS(820), - [sym__open_tag_html_block] = ACTIONS(820), - [sym__open_tag_html_block_newline] = ACTIONS(820), - [sym__closing_tag_html_block] = ACTIONS(820), - [sym__closing_tag_html_block_newline] = ACTIONS(820), - [sym_backslash_escape] = ACTIONS(820), - [sym_uri_autolink] = ACTIONS(820), - [sym_email_autolink] = ACTIONS(820), - [sym_entity_reference] = ACTIONS(820), - [sym_numeric_character_reference] = ACTIONS(820), - [sym__whitespace_ge_2] = ACTIONS(820), - [aux_sym__whitespace_token1] = ACTIONS(822), - [sym__word_no_digit] = ACTIONS(820), - [sym__digits] = ACTIONS(820), - [aux_sym__newline_token1] = ACTIONS(820), - [sym__block_close] = ACTIONS(820), - [sym__block_continuation] = ACTIONS(824), - [sym__block_quote_start] = ACTIONS(820), - [sym__indented_chunk_start] = ACTIONS(820), - [sym_atx_h1_marker] = ACTIONS(820), - [sym_atx_h2_marker] = ACTIONS(820), - [sym_atx_h3_marker] = ACTIONS(820), - [sym_atx_h4_marker] = ACTIONS(820), - [sym_atx_h5_marker] = ACTIONS(820), - [sym_atx_h6_marker] = ACTIONS(820), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(820), - [sym__thematic_break] = ACTIONS(820), - [sym__list_marker_minus] = ACTIONS(820), - [sym__list_marker_plus] = ACTIONS(820), - [sym__list_marker_star] = ACTIONS(820), - [sym__list_marker_parenthesis] = ACTIONS(820), - [sym__list_marker_dot] = ACTIONS(820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(820), - [sym__fenced_code_block_start_backtick] = ACTIONS(820), - [sym__fenced_code_block_start_tilde] = ACTIONS(820), - [sym__blank_line_start] = ACTIONS(820), - [sym__code_span_start] = ACTIONS(820), - [sym__last_token_whitespace] = ACTIONS(824), - [sym__emphasis_open_star] = ACTIONS(820), - [sym__emphasis_open_underscore] = ACTIONS(820), + [195] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_BSLASH] = ACTIONS(1061), + [anon_sym_RBRACK] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1061), + [anon_sym_LT_QMARK] = ACTIONS(1061), + [aux_sym__html_block_4_token1] = ACTIONS(1061), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1059), + [aux_sym__html_block_6_token1] = ACTIONS(1061), + [aux_sym__html_block_6_token2] = ACTIONS(1059), + [sym__open_tag_html_block] = ACTIONS(1059), + [sym__open_tag_html_block_newline] = ACTIONS(1059), + [sym__closing_tag_html_block] = ACTIONS(1059), + [sym__closing_tag_html_block_newline] = ACTIONS(1059), + [sym_backslash_escape] = ACTIONS(1059), + [sym_uri_autolink] = ACTIONS(1059), + [sym_email_autolink] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1059), + [sym_numeric_character_reference] = ACTIONS(1059), + [sym__whitespace_ge_2] = ACTIONS(1059), + [aux_sym__whitespace_token1] = ACTIONS(1061), + [sym__word_no_digit] = ACTIONS(1059), + [sym__digits] = ACTIONS(1059), + [aux_sym__newline_token1] = ACTIONS(1059), + [sym__block_close] = ACTIONS(1059), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1059), + [sym__indented_chunk_start] = ACTIONS(1059), + [sym_atx_h1_marker] = ACTIONS(1059), + [sym_atx_h2_marker] = ACTIONS(1059), + [sym_atx_h3_marker] = ACTIONS(1059), + [sym_atx_h4_marker] = ACTIONS(1059), + [sym_atx_h5_marker] = ACTIONS(1059), + [sym_atx_h6_marker] = ACTIONS(1059), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1059), + [sym__thematic_break] = ACTIONS(1059), + [sym__list_marker_minus] = ACTIONS(1059), + [sym__list_marker_plus] = ACTIONS(1059), + [sym__list_marker_star] = ACTIONS(1059), + [sym__list_marker_parenthesis] = ACTIONS(1059), + [sym__list_marker_dot] = ACTIONS(1059), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1059), + [sym__fenced_code_block_start_backtick] = ACTIONS(1059), + [sym__fenced_code_block_start_tilde] = ACTIONS(1059), + [sym__blank_line_start] = ACTIONS(1059), + [sym__code_span_start] = ACTIONS(1059), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(1059), + [sym__emphasis_open_underscore] = ACTIONS(1059), }, - [166] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_BSLASH] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym__] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(822), - [anon_sym_LT_QMARK] = ACTIONS(822), - [aux_sym__html_block_4_token1] = ACTIONS(822), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(820), - [aux_sym__html_block_6_token1] = ACTIONS(822), - [aux_sym__html_block_6_token2] = ACTIONS(820), - [sym__open_tag_html_block] = ACTIONS(820), - [sym__open_tag_html_block_newline] = ACTIONS(820), - [sym__closing_tag_html_block] = ACTIONS(820), - [sym__closing_tag_html_block_newline] = ACTIONS(820), - [sym_backslash_escape] = ACTIONS(820), - [sym_uri_autolink] = ACTIONS(820), - [sym_email_autolink] = ACTIONS(820), - [sym_entity_reference] = ACTIONS(820), - [sym_numeric_character_reference] = ACTIONS(820), - [sym__whitespace_ge_2] = ACTIONS(820), - [aux_sym__whitespace_token1] = ACTIONS(822), - [sym__word_no_digit] = ACTIONS(820), - [sym__digits] = ACTIONS(820), - [aux_sym__newline_token1] = ACTIONS(820), - [sym__block_close] = ACTIONS(820), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(820), - [sym__indented_chunk_start] = ACTIONS(820), - [sym_atx_h1_marker] = ACTIONS(820), - [sym_atx_h2_marker] = ACTIONS(820), - [sym_atx_h3_marker] = ACTIONS(820), - [sym_atx_h4_marker] = ACTIONS(820), - [sym_atx_h5_marker] = ACTIONS(820), - [sym_atx_h6_marker] = ACTIONS(820), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(820), - [sym__thematic_break] = ACTIONS(820), - [sym__list_marker_minus] = ACTIONS(820), - [sym__list_marker_plus] = ACTIONS(820), - [sym__list_marker_star] = ACTIONS(820), - [sym__list_marker_parenthesis] = ACTIONS(820), - [sym__list_marker_dot] = ACTIONS(820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(820), - [sym__fenced_code_block_start_backtick] = ACTIONS(820), - [sym__fenced_code_block_start_tilde] = ACTIONS(820), - [sym__blank_line_start] = ACTIONS(820), - [sym__code_span_start] = ACTIONS(820), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(820), - [sym__emphasis_open_underscore] = ACTIONS(820), + [196] = { + [aux_sym__ignore_matching_tokens] = STATE(172), + [aux_sym__html_block_1_token1] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1067), + [anon_sym_RBRACK] = ACTIONS(1065), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1067), + [anon_sym_LT_QMARK] = ACTIONS(1067), + [aux_sym__html_block_4_token1] = ACTIONS(1067), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1065), + [aux_sym__html_block_6_token1] = ACTIONS(1067), + [aux_sym__html_block_6_token2] = ACTIONS(1065), + [sym__open_tag_html_block] = ACTIONS(1065), + [sym__open_tag_html_block_newline] = ACTIONS(1065), + [sym__closing_tag_html_block] = ACTIONS(1065), + [sym__closing_tag_html_block_newline] = ACTIONS(1065), + [sym_backslash_escape] = ACTIONS(1065), + [sym_uri_autolink] = ACTIONS(1065), + [sym_email_autolink] = ACTIONS(1065), + [sym_entity_reference] = ACTIONS(1065), + [sym_numeric_character_reference] = ACTIONS(1065), + [sym__whitespace_ge_2] = ACTIONS(1065), + [aux_sym__whitespace_token1] = ACTIONS(1067), + [sym__word_no_digit] = ACTIONS(1065), + [sym__digits] = ACTIONS(1065), + [aux_sym__newline_token1] = ACTIONS(1065), + [sym__block_close] = ACTIONS(1065), + [sym__block_continuation] = ACTIONS(1069), + [sym__block_quote_start] = ACTIONS(1065), + [sym__indented_chunk_start] = ACTIONS(1065), + [sym_atx_h1_marker] = ACTIONS(1065), + [sym_atx_h2_marker] = ACTIONS(1065), + [sym_atx_h3_marker] = ACTIONS(1065), + [sym_atx_h4_marker] = ACTIONS(1065), + [sym_atx_h5_marker] = ACTIONS(1065), + [sym_atx_h6_marker] = ACTIONS(1065), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1065), + [sym__thematic_break] = ACTIONS(1065), + [sym__list_marker_minus] = ACTIONS(1065), + [sym__list_marker_plus] = ACTIONS(1065), + [sym__list_marker_star] = ACTIONS(1065), + [sym__list_marker_parenthesis] = ACTIONS(1065), + [sym__list_marker_dot] = ACTIONS(1065), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1065), + [sym__fenced_code_block_start_backtick] = ACTIONS(1065), + [sym__fenced_code_block_start_tilde] = ACTIONS(1065), + [sym__blank_line_start] = ACTIONS(1065), + [sym__code_span_start] = ACTIONS(1065), + [sym__last_token_whitespace] = ACTIONS(1069), + [sym__emphasis_open_star] = ACTIONS(1065), + [sym__emphasis_open_underscore] = ACTIONS(1065), }, - [167] = { - [sym_shortcut_link] = STATE(243), - [sym_full_reference_link] = STATE(243), - [sym_collapsed_reference_link] = STATE(243), - [sym_inline_link] = STATE(243), - [sym_image] = STATE(243), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym__soft_line_break] = STATE(243), - [sym_hard_line_break] = STATE(243), - [sym_html_tag] = STATE(243), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(243), - [sym__word] = STATE(243), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star] = STATE(243), - [aux_sym__inline_no_star] = STATE(243), - [sym__text_inline_no_star] = STATE(243), - [sym__emphasis_star] = STATE(780), - [sym__strong_emphasis_star] = STATE(243), - [sym__emphasis_underscore] = STATE(780), - [sym__strong_emphasis_underscore] = STATE(243), - [sym__code_span] = STATE(243), - [anon_sym_BANG] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(834), - [anon_sym_BSLASH] = ACTIONS(836), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), - [anon_sym_LT_QMARK] = ACTIONS(840), - [aux_sym__html_block_4_token1] = ACTIONS(842), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), - [sym_backslash_escape] = ACTIONS(846), - [sym_uri_autolink] = ACTIONS(846), - [sym_email_autolink] = ACTIONS(846), - [sym_entity_reference] = ACTIONS(846), - [sym_numeric_character_reference] = ACTIONS(846), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(846), - [sym__digits] = ACTIONS(846), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(852), - [sym__emphasis_open_star] = ACTIONS(854), - [sym__emphasis_open_underscore] = ACTIONS(856), - [sym__emphasis_close_star] = ACTIONS(858), + [197] = { + [sym_shortcut_link] = STATE(316), + [sym_full_reference_link] = STATE(316), + [sym_collapsed_reference_link] = STATE(316), + [sym_inline_link] = STATE(316), + [sym_image] = STATE(316), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym__soft_line_break] = STATE(316), + [sym_hard_line_break] = STATE(316), + [sym_html_tag] = STATE(316), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(316), + [sym__word] = STATE(316), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star] = STATE(316), + [aux_sym__inline_no_star] = STATE(316), + [sym__text_inline_no_star] = STATE(316), + [sym__emphasis_star] = STATE(698), + [sym__strong_emphasis_star] = STATE(316), + [sym__emphasis_underscore] = STATE(747), + [sym__strong_emphasis_underscore] = STATE(316), + [sym__code_span] = STATE(316), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_PERCENT] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_COLON] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1086), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1089), + [anon_sym_LT_QMARK] = ACTIONS(1092), + [aux_sym__html_block_4_token1] = ACTIONS(1095), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1098), + [sym_backslash_escape] = ACTIONS(1101), + [sym_uri_autolink] = ACTIONS(1101), + [sym_email_autolink] = ACTIONS(1101), + [sym_entity_reference] = ACTIONS(1101), + [sym_numeric_character_reference] = ACTIONS(1101), + [sym__whitespace_ge_2] = ACTIONS(1104), + [aux_sym__whitespace_token1] = ACTIONS(1107), + [sym__word_no_digit] = ACTIONS(1101), + [sym__digits] = ACTIONS(1101), + [aux_sym__newline_token1] = ACTIONS(1110), + [sym__code_span_start] = ACTIONS(1113), + [sym__emphasis_open_star] = ACTIONS(1116), + [sym__emphasis_open_underscore] = ACTIONS(1119), + [sym__emphasis_close_underscore] = ACTIONS(1122), }, - [168] = { - [sym__blank_line] = STATE(302), - [sym__indented_chunk] = STATE(302), - [aux_sym_indented_code_block_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(860), - [aux_sym__html_block_1_token1] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_POUND] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_PERCENT] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_COMMA] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_DOT] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_QMARK] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_BSLASH] = ACTIONS(862), - [anon_sym_RBRACK] = ACTIONS(860), - [anon_sym_CARET] = ACTIONS(860), - [anon_sym__] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(860), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(862), - [anon_sym_LT_QMARK] = ACTIONS(862), - [aux_sym__html_block_4_token1] = ACTIONS(862), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(860), - [aux_sym__html_block_6_token1] = ACTIONS(862), - [aux_sym__html_block_6_token2] = ACTIONS(860), - [sym__open_tag_html_block] = ACTIONS(860), - [sym__open_tag_html_block_newline] = ACTIONS(860), - [sym__closing_tag_html_block] = ACTIONS(860), - [sym__closing_tag_html_block_newline] = ACTIONS(860), - [sym_backslash_escape] = ACTIONS(860), - [sym_uri_autolink] = ACTIONS(860), - [sym_email_autolink] = ACTIONS(860), - [sym_entity_reference] = ACTIONS(860), - [sym_numeric_character_reference] = ACTIONS(860), - [sym__whitespace_ge_2] = ACTIONS(860), - [aux_sym__whitespace_token1] = ACTIONS(862), - [sym__word_no_digit] = ACTIONS(860), - [sym__digits] = ACTIONS(860), - [aux_sym__newline_token1] = ACTIONS(860), - [sym__block_quote_start] = ACTIONS(860), - [sym__indented_chunk_start] = ACTIONS(47), - [sym_atx_h1_marker] = ACTIONS(860), - [sym_atx_h2_marker] = ACTIONS(860), - [sym_atx_h3_marker] = ACTIONS(860), - [sym_atx_h4_marker] = ACTIONS(860), - [sym_atx_h5_marker] = ACTIONS(860), - [sym_atx_h6_marker] = ACTIONS(860), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(860), - [sym__thematic_break] = ACTIONS(860), - [sym__list_marker_minus] = ACTIONS(860), - [sym__list_marker_plus] = ACTIONS(860), - [sym__list_marker_star] = ACTIONS(860), - [sym__list_marker_parenthesis] = ACTIONS(860), - [sym__list_marker_dot] = ACTIONS(860), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(860), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(860), - [sym__list_marker_star_dont_interrupt] = ACTIONS(860), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(860), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(860), - [sym__fenced_code_block_start_backtick] = ACTIONS(860), - [sym__fenced_code_block_start_tilde] = ACTIONS(860), - [sym__blank_line_start] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(860), - [sym__emphasis_open_star] = ACTIONS(860), - [sym__emphasis_open_underscore] = ACTIONS(860), + [198] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1124), + [anon_sym_PERCENT] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_DOT] = ACTIONS(1124), + [anon_sym_SLASH] = ACTIONS(1124), + [anon_sym_COLON] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_BSLASH] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1124), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym__] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1126), + [anon_sym_LT_QMARK] = ACTIONS(1126), + [aux_sym__html_block_4_token1] = ACTIONS(1126), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1124), + [aux_sym__html_block_6_token1] = ACTIONS(1126), + [aux_sym__html_block_6_token2] = ACTIONS(1124), + [sym__open_tag_html_block] = ACTIONS(1124), + [sym__open_tag_html_block_newline] = ACTIONS(1124), + [sym__closing_tag_html_block] = ACTIONS(1124), + [sym__closing_tag_html_block_newline] = ACTIONS(1124), + [sym_backslash_escape] = ACTIONS(1124), + [sym_uri_autolink] = ACTIONS(1124), + [sym_email_autolink] = ACTIONS(1124), + [sym_entity_reference] = ACTIONS(1124), + [sym_numeric_character_reference] = ACTIONS(1124), + [sym__whitespace_ge_2] = ACTIONS(1124), + [aux_sym__whitespace_token1] = ACTIONS(1126), + [sym__word_no_digit] = ACTIONS(1124), + [sym__digits] = ACTIONS(1124), + [aux_sym__newline_token1] = ACTIONS(1124), + [sym__block_close] = ACTIONS(1124), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1124), + [sym__indented_chunk_start] = ACTIONS(1124), + [sym_atx_h1_marker] = ACTIONS(1124), + [sym_atx_h2_marker] = ACTIONS(1124), + [sym_atx_h3_marker] = ACTIONS(1124), + [sym_atx_h4_marker] = ACTIONS(1124), + [sym_atx_h5_marker] = ACTIONS(1124), + [sym_atx_h6_marker] = ACTIONS(1124), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1124), + [sym__thematic_break] = ACTIONS(1124), + [sym__list_marker_minus] = ACTIONS(1124), + [sym__list_marker_plus] = ACTIONS(1124), + [sym__list_marker_star] = ACTIONS(1124), + [sym__list_marker_parenthesis] = ACTIONS(1124), + [sym__list_marker_dot] = ACTIONS(1124), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1124), + [sym__fenced_code_block_start_backtick] = ACTIONS(1124), + [sym__fenced_code_block_start_tilde] = ACTIONS(1124), + [sym__blank_line_start] = ACTIONS(1124), + [sym__code_span_start] = ACTIONS(1124), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(1124), + [sym__emphasis_open_underscore] = ACTIONS(1124), }, - [169] = { - [sym_link_title] = STATE(2214), - [sym__whitespace] = STATE(2060), - [ts_builtin_sym_end] = ACTIONS(864), - [aux_sym__html_block_1_token1] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(866), - [anon_sym_POUND] = ACTIONS(864), - [anon_sym_DOLLAR] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(864), - [anon_sym_AMP] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(864), - [anon_sym_QMARK] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(864), - [anon_sym_CARET] = ACTIONS(864), - [anon_sym__] = ACTIONS(864), - [anon_sym_BQUOTE] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_PIPE] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), - [anon_sym_LT_QMARK] = ACTIONS(869), - [aux_sym__html_block_4_token1] = ACTIONS(869), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(864), - [aux_sym__html_block_6_token1] = ACTIONS(869), - [aux_sym__html_block_6_token2] = ACTIONS(864), - [sym__open_tag_html_block] = ACTIONS(864), - [sym__open_tag_html_block_newline] = ACTIONS(864), - [sym__closing_tag_html_block] = ACTIONS(864), - [sym__closing_tag_html_block_newline] = ACTIONS(864), - [sym_backslash_escape] = ACTIONS(864), - [sym_uri_autolink] = ACTIONS(864), - [sym_email_autolink] = ACTIONS(864), - [sym_entity_reference] = ACTIONS(864), - [sym_numeric_character_reference] = ACTIONS(864), - [sym__whitespace_ge_2] = ACTIONS(877), - [aux_sym__whitespace_token1] = ACTIONS(880), - [sym__word_no_digit] = ACTIONS(864), - [sym__digits] = ACTIONS(864), - [aux_sym__newline_token1] = ACTIONS(864), - [sym__block_quote_start] = ACTIONS(864), - [sym__indented_chunk_start] = ACTIONS(864), - [sym_atx_h1_marker] = ACTIONS(864), - [sym_atx_h2_marker] = ACTIONS(864), - [sym_atx_h3_marker] = ACTIONS(864), - [sym_atx_h4_marker] = ACTIONS(864), - [sym_atx_h5_marker] = ACTIONS(864), - [sym_atx_h6_marker] = ACTIONS(864), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(864), - [sym__thematic_break] = ACTIONS(864), - [sym__list_marker_minus] = ACTIONS(864), - [sym__list_marker_plus] = ACTIONS(864), - [sym__list_marker_star] = ACTIONS(864), - [sym__list_marker_parenthesis] = ACTIONS(864), - [sym__list_marker_dot] = ACTIONS(864), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(864), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(864), - [sym__list_marker_star_dont_interrupt] = ACTIONS(864), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(864), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(864), - [sym__fenced_code_block_start_backtick] = ACTIONS(864), - [sym__fenced_code_block_start_tilde] = ACTIONS(864), - [sym__blank_line_start] = ACTIONS(864), - [sym__code_span_start] = ACTIONS(864), - [sym__emphasis_open_star] = ACTIONS(864), - [sym__emphasis_open_underscore] = ACTIONS(864), - [sym__no_indented_chunk] = ACTIONS(883), + [199] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(473), + [aux_sym__html_block_1_token1] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_BSLASH] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(475), + [anon_sym_LT_QMARK] = ACTIONS(475), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(473), + [aux_sym__html_block_6_token1] = ACTIONS(475), + [aux_sym__html_block_6_token2] = ACTIONS(473), + [sym__open_tag_html_block] = ACTIONS(473), + [sym__open_tag_html_block_newline] = ACTIONS(473), + [sym__closing_tag_html_block] = ACTIONS(473), + [sym__closing_tag_html_block_newline] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [sym_uri_autolink] = ACTIONS(473), + [sym_email_autolink] = ACTIONS(473), + [sym_entity_reference] = ACTIONS(473), + [sym_numeric_character_reference] = ACTIONS(473), + [sym__whitespace_ge_2] = ACTIONS(473), + [aux_sym__whitespace_token1] = ACTIONS(475), + [sym__word_no_digit] = ACTIONS(473), + [sym__digits] = ACTIONS(473), + [aux_sym__newline_token1] = ACTIONS(473), + [sym__block_continuation] = ACTIONS(1128), + [sym__block_quote_start] = ACTIONS(473), + [sym__indented_chunk_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(473), + [sym_atx_h2_marker] = ACTIONS(473), + [sym_atx_h3_marker] = ACTIONS(473), + [sym_atx_h4_marker] = ACTIONS(473), + [sym_atx_h5_marker] = ACTIONS(473), + [sym_atx_h6_marker] = ACTIONS(473), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(473), + [sym__thematic_break] = ACTIONS(473), + [sym__list_marker_minus] = ACTIONS(473), + [sym__list_marker_plus] = ACTIONS(473), + [sym__list_marker_star] = ACTIONS(473), + [sym__list_marker_parenthesis] = ACTIONS(473), + [sym__list_marker_dot] = ACTIONS(473), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_star_dont_interrupt] = ACTIONS(473), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(473), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(473), + [sym__fenced_code_block_start_backtick] = ACTIONS(473), + [sym__fenced_code_block_start_tilde] = ACTIONS(473), + [sym__blank_line_start] = ACTIONS(473), + [sym__code_span_start] = ACTIONS(473), + [sym__last_token_whitespace] = ACTIONS(1128), + [sym__emphasis_open_star] = ACTIONS(473), + [sym__emphasis_open_underscore] = ACTIONS(473), }, - [170] = { - [sym_shortcut_link] = STATE(247), - [sym_full_reference_link] = STATE(247), - [sym_collapsed_reference_link] = STATE(247), - [sym_inline_link] = STATE(247), - [sym_image] = STATE(247), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym__soft_line_break] = STATE(247), - [sym_hard_line_break] = STATE(247), - [sym_html_tag] = STATE(247), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(247), - [sym__word] = STATE(247), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore] = STATE(247), - [aux_sym__inline_no_underscore] = STATE(247), - [sym__text_inline_no_underscore] = STATE(247), - [sym__emphasis_star] = STATE(725), - [sym__strong_emphasis_star] = STATE(247), - [sym__emphasis_underscore] = STATE(725), - [sym__strong_emphasis_underscore] = STATE(247), - [sym__code_span] = STATE(247), - [anon_sym_BANG] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(641), - [anon_sym_LT_QMARK] = ACTIONS(643), - [aux_sym__html_block_4_token1] = ACTIONS(645), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(647), - [sym_backslash_escape] = ACTIONS(649), - [sym_uri_autolink] = ACTIONS(649), - [sym_email_autolink] = ACTIONS(649), - [sym_entity_reference] = ACTIONS(649), - [sym_numeric_character_reference] = ACTIONS(649), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(649), - [sym__digits] = ACTIONS(649), + [200] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(1131), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_COLON] = ACTIONS(1131), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1131), + [anon_sym_GT] = ACTIONS(1131), + [anon_sym_QMARK] = ACTIONS(1131), + [anon_sym_AT] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_RBRACK] = ACTIONS(1131), + [anon_sym_CARET] = ACTIONS(1131), + [anon_sym__] = ACTIONS(1131), + [anon_sym_BQUOTE] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1133), + [anon_sym_LT_QMARK] = ACTIONS(1133), + [aux_sym__html_block_4_token1] = ACTIONS(1133), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1131), + [aux_sym__html_block_6_token1] = ACTIONS(1133), + [aux_sym__html_block_6_token2] = ACTIONS(1131), + [sym__open_tag_html_block] = ACTIONS(1131), + [sym__open_tag_html_block_newline] = ACTIONS(1131), + [sym__closing_tag_html_block] = ACTIONS(1131), + [sym__closing_tag_html_block_newline] = ACTIONS(1131), + [sym_backslash_escape] = ACTIONS(1131), + [sym_uri_autolink] = ACTIONS(1131), + [sym_email_autolink] = ACTIONS(1131), + [sym_entity_reference] = ACTIONS(1131), + [sym_numeric_character_reference] = ACTIONS(1131), + [sym__whitespace_ge_2] = ACTIONS(1131), + [aux_sym__whitespace_token1] = ACTIONS(1133), + [sym__word_no_digit] = ACTIONS(1131), + [sym__digits] = ACTIONS(1131), + [aux_sym__newline_token1] = ACTIONS(1131), + [sym__block_close] = ACTIONS(1131), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1131), + [sym__indented_chunk_start] = ACTIONS(1131), + [sym_atx_h1_marker] = ACTIONS(1131), + [sym_atx_h2_marker] = ACTIONS(1131), + [sym_atx_h3_marker] = ACTIONS(1131), + [sym_atx_h4_marker] = ACTIONS(1131), + [sym_atx_h5_marker] = ACTIONS(1131), + [sym_atx_h6_marker] = ACTIONS(1131), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1131), + [sym__thematic_break] = ACTIONS(1131), + [sym__list_marker_minus] = ACTIONS(1131), + [sym__list_marker_plus] = ACTIONS(1131), + [sym__list_marker_star] = ACTIONS(1131), + [sym__list_marker_parenthesis] = ACTIONS(1131), + [sym__list_marker_dot] = ACTIONS(1131), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1131), + [sym__fenced_code_block_start_backtick] = ACTIONS(1131), + [sym__fenced_code_block_start_tilde] = ACTIONS(1131), + [sym__blank_line_start] = ACTIONS(1131), + [sym__code_span_start] = ACTIONS(1131), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(1131), + [sym__emphasis_open_underscore] = ACTIONS(1131), + }, + [201] = { + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym__paragraph_end_newline] = STATE(332), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(93), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(11), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(9), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(9), + [anon_sym_GT] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_BSLASH] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_CARET] = ACTIONS(9), + [anon_sym__] = ACTIONS(9), + [anon_sym_BQUOTE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PIPE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(9), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(1149), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), + }, + [202] = { + [sym_shortcut_link] = STATE(245), + [sym_full_reference_link] = STATE(245), + [sym_collapsed_reference_link] = STATE(245), + [sym_inline_link] = STATE(245), + [sym_image] = STATE(245), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym__soft_line_break] = STATE(245), + [sym_hard_line_break] = STATE(245), + [sym_html_tag] = STATE(245), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(245), + [sym__word] = STATE(245), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star] = STATE(245), + [aux_sym__inline_no_star] = STATE(245), + [sym__text_inline_no_star] = STATE(245), + [sym__emphasis_star] = STATE(747), + [sym__strong_emphasis_star] = STATE(245), + [sym__emphasis_underscore] = STATE(747), + [sym__strong_emphasis_underscore] = STATE(245), + [sym__code_span] = STATE(245), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(885), + [anon_sym_LT_QMARK] = ACTIONS(887), + [aux_sym__html_block_4_token1] = ACTIONS(889), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(893), + [sym_uri_autolink] = ACTIONS(893), + [sym_email_autolink] = ACTIONS(893), + [sym_entity_reference] = ACTIONS(893), + [sym_numeric_character_reference] = ACTIONS(893), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(893), + [sym__digits] = ACTIONS(893), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__emphasis_close_underscore] = ACTIONS(885), + [sym__code_span_start] = ACTIONS(899), + [sym__emphasis_open_star] = ACTIONS(901), + [sym__emphasis_open_underscore] = ACTIONS(903), + [sym__emphasis_close_star] = ACTIONS(1151), }, - [171] = { - [sym_shortcut_link] = STATE(255), - [sym_full_reference_link] = STATE(255), - [sym_collapsed_reference_link] = STATE(255), - [sym_inline_link] = STATE(255), - [sym_image] = STATE(255), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym__soft_line_break] = STATE(255), - [sym_hard_line_break] = STATE(255), - [sym_html_tag] = STATE(255), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(255), - [sym__word] = STATE(255), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star] = STATE(255), - [aux_sym__inline_no_star] = STATE(255), - [sym__text_inline_no_star] = STATE(255), - [sym__emphasis_star] = STATE(685), - [sym__strong_emphasis_star] = STATE(255), - [sym__emphasis_underscore] = STATE(780), - [sym__strong_emphasis_underscore] = STATE(255), - [sym__code_span] = STATE(255), - [anon_sym_BANG] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(890), - [anon_sym_DOLLAR] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(890), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_COLON] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(890), - [anon_sym_AT] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_BSLASH] = ACTIONS(902), - [anon_sym_RBRACK] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym__] = ACTIONS(890), - [anon_sym_BQUOTE] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_TILDE] = ACTIONS(890), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(905), - [anon_sym_LT_QMARK] = ACTIONS(908), - [aux_sym__html_block_4_token1] = ACTIONS(911), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(914), + [203] = { + [aux_sym__ignore_matching_tokens] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(1001), + [aux_sym__html_block_1_token1] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_BSLASH] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym__] = ACTIONS(1001), + [anon_sym_BQUOTE] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1003), + [anon_sym_LT_QMARK] = ACTIONS(1003), + [aux_sym__html_block_4_token1] = ACTIONS(1003), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1001), + [aux_sym__html_block_6_token1] = ACTIONS(1003), + [aux_sym__html_block_6_token2] = ACTIONS(1001), + [sym__open_tag_html_block] = ACTIONS(1001), + [sym__open_tag_html_block_newline] = ACTIONS(1001), + [sym__closing_tag_html_block] = ACTIONS(1001), + [sym__closing_tag_html_block_newline] = ACTIONS(1001), + [sym_backslash_escape] = ACTIONS(1001), + [sym_uri_autolink] = ACTIONS(1001), + [sym_email_autolink] = ACTIONS(1001), + [sym_entity_reference] = ACTIONS(1001), + [sym_numeric_character_reference] = ACTIONS(1001), + [sym__whitespace_ge_2] = ACTIONS(1001), + [aux_sym__whitespace_token1] = ACTIONS(1003), + [sym__word_no_digit] = ACTIONS(1001), + [sym__digits] = ACTIONS(1001), + [aux_sym__newline_token1] = ACTIONS(1001), + [sym__block_continuation] = ACTIONS(1153), + [sym__block_quote_start] = ACTIONS(1001), + [sym__indented_chunk_start] = ACTIONS(1001), + [sym_atx_h1_marker] = ACTIONS(1001), + [sym_atx_h2_marker] = ACTIONS(1001), + [sym_atx_h3_marker] = ACTIONS(1001), + [sym_atx_h4_marker] = ACTIONS(1001), + [sym_atx_h5_marker] = ACTIONS(1001), + [sym_atx_h6_marker] = ACTIONS(1001), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1001), + [sym__thematic_break] = ACTIONS(1001), + [sym__list_marker_minus] = ACTIONS(1001), + [sym__list_marker_plus] = ACTIONS(1001), + [sym__list_marker_star] = ACTIONS(1001), + [sym__list_marker_parenthesis] = ACTIONS(1001), + [sym__list_marker_dot] = ACTIONS(1001), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1001), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1001), + [sym__fenced_code_block_start_backtick] = ACTIONS(1001), + [sym__fenced_code_block_start_tilde] = ACTIONS(1001), + [sym__blank_line_start] = ACTIONS(1001), + [sym__code_span_start] = ACTIONS(1001), + [sym__last_token_whitespace] = ACTIONS(1153), + [sym__emphasis_open_star] = ACTIONS(1001), + [sym__emphasis_open_underscore] = ACTIONS(1001), + }, + [204] = { + [aux_sym__ignore_matching_tokens] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(1155), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(1155), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), + }, + [205] = { + [sym_list_marker_plus] = STATE(38), + [sym__list_item_plus] = STATE(205), + [aux_sym__list_plus_repeat1] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1157), + [aux_sym__html_block_1_token1] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_PERCENT] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_DOT] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1157), + [anon_sym_COLON] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_EQ] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_BSLASH] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1157), + [anon_sym_CARET] = ACTIONS(1157), + [anon_sym__] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1159), + [anon_sym_LT_QMARK] = ACTIONS(1159), + [aux_sym__html_block_4_token1] = ACTIONS(1159), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1157), + [aux_sym__html_block_6_token1] = ACTIONS(1159), + [aux_sym__html_block_6_token2] = ACTIONS(1157), + [sym__open_tag_html_block] = ACTIONS(1157), + [sym__open_tag_html_block_newline] = ACTIONS(1157), + [sym__closing_tag_html_block] = ACTIONS(1157), + [sym__closing_tag_html_block_newline] = ACTIONS(1157), + [sym_backslash_escape] = ACTIONS(1157), + [sym_uri_autolink] = ACTIONS(1157), + [sym_email_autolink] = ACTIONS(1157), + [sym_entity_reference] = ACTIONS(1157), + [sym_numeric_character_reference] = ACTIONS(1157), + [sym__whitespace_ge_2] = ACTIONS(1157), + [aux_sym__whitespace_token1] = ACTIONS(1159), + [sym__word_no_digit] = ACTIONS(1157), + [sym__digits] = ACTIONS(1157), + [aux_sym__newline_token1] = ACTIONS(1157), + [sym__block_quote_start] = ACTIONS(1157), + [sym__indented_chunk_start] = ACTIONS(1157), + [sym_atx_h1_marker] = ACTIONS(1157), + [sym_atx_h2_marker] = ACTIONS(1157), + [sym_atx_h3_marker] = ACTIONS(1157), + [sym_atx_h4_marker] = ACTIONS(1157), + [sym_atx_h5_marker] = ACTIONS(1157), + [sym_atx_h6_marker] = ACTIONS(1157), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1157), + [sym__thematic_break] = ACTIONS(1157), + [sym__list_marker_minus] = ACTIONS(1157), + [sym__list_marker_plus] = ACTIONS(1161), + [sym__list_marker_star] = ACTIONS(1157), + [sym__list_marker_parenthesis] = ACTIONS(1157), + [sym__list_marker_dot] = ACTIONS(1157), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1157), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1161), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1157), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1157), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1157), + [sym__fenced_code_block_start_backtick] = ACTIONS(1157), + [sym__fenced_code_block_start_tilde] = ACTIONS(1157), + [sym__blank_line_start] = ACTIONS(1157), + [sym__code_span_start] = ACTIONS(1157), + [sym__emphasis_open_star] = ACTIONS(1157), + [sym__emphasis_open_underscore] = ACTIONS(1157), + }, + [206] = { + [sym_list_marker_minus] = STATE(39), + [sym__list_item_minus] = STATE(206), + [aux_sym__list_minus_repeat1] = STATE(206), + [ts_builtin_sym_end] = ACTIONS(1164), + [aux_sym__html_block_1_token1] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_PERCENT] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(1164), + [anon_sym_COLON] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_BSLASH] = ACTIONS(1166), + [anon_sym_RBRACK] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1164), + [anon_sym__] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1166), + [anon_sym_LT_QMARK] = ACTIONS(1166), + [aux_sym__html_block_4_token1] = ACTIONS(1166), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1164), + [aux_sym__html_block_6_token1] = ACTIONS(1166), + [aux_sym__html_block_6_token2] = ACTIONS(1164), + [sym__open_tag_html_block] = ACTIONS(1164), + [sym__open_tag_html_block_newline] = ACTIONS(1164), + [sym__closing_tag_html_block] = ACTIONS(1164), + [sym__closing_tag_html_block_newline] = ACTIONS(1164), + [sym_backslash_escape] = ACTIONS(1164), + [sym_uri_autolink] = ACTIONS(1164), + [sym_email_autolink] = ACTIONS(1164), + [sym_entity_reference] = ACTIONS(1164), + [sym_numeric_character_reference] = ACTIONS(1164), + [sym__whitespace_ge_2] = ACTIONS(1164), + [aux_sym__whitespace_token1] = ACTIONS(1166), + [sym__word_no_digit] = ACTIONS(1164), + [sym__digits] = ACTIONS(1164), + [aux_sym__newline_token1] = ACTIONS(1164), + [sym__block_quote_start] = ACTIONS(1164), + [sym__indented_chunk_start] = ACTIONS(1164), + [sym_atx_h1_marker] = ACTIONS(1164), + [sym_atx_h2_marker] = ACTIONS(1164), + [sym_atx_h3_marker] = ACTIONS(1164), + [sym_atx_h4_marker] = ACTIONS(1164), + [sym_atx_h5_marker] = ACTIONS(1164), + [sym_atx_h6_marker] = ACTIONS(1164), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1164), + [sym__thematic_break] = ACTIONS(1164), + [sym__list_marker_minus] = ACTIONS(1168), + [sym__list_marker_plus] = ACTIONS(1164), + [sym__list_marker_star] = ACTIONS(1164), + [sym__list_marker_parenthesis] = ACTIONS(1164), + [sym__list_marker_dot] = ACTIONS(1164), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1168), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1164), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1164), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1164), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1164), + [sym__fenced_code_block_start_backtick] = ACTIONS(1164), + [sym__fenced_code_block_start_tilde] = ACTIONS(1164), + [sym__blank_line_start] = ACTIONS(1164), + [sym__code_span_start] = ACTIONS(1164), + [sym__emphasis_open_star] = ACTIONS(1164), + [sym__emphasis_open_underscore] = ACTIONS(1164), + }, + [207] = { + [sym_list_marker_star] = STATE(40), + [sym__list_item_star] = STATE(207), + [aux_sym__list_star_repeat1] = STATE(207), + [ts_builtin_sym_end] = ACTIONS(1171), + [aux_sym__html_block_1_token1] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_PERCENT] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_DOT] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_COLON] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_QMARK] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_BSLASH] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym__] = ACTIONS(1171), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1173), + [anon_sym_LT_QMARK] = ACTIONS(1173), + [aux_sym__html_block_4_token1] = ACTIONS(1173), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1171), + [aux_sym__html_block_6_token1] = ACTIONS(1173), + [aux_sym__html_block_6_token2] = ACTIONS(1171), + [sym__open_tag_html_block] = ACTIONS(1171), + [sym__open_tag_html_block_newline] = ACTIONS(1171), + [sym__closing_tag_html_block] = ACTIONS(1171), + [sym__closing_tag_html_block_newline] = ACTIONS(1171), + [sym_backslash_escape] = ACTIONS(1171), + [sym_uri_autolink] = ACTIONS(1171), + [sym_email_autolink] = ACTIONS(1171), + [sym_entity_reference] = ACTIONS(1171), + [sym_numeric_character_reference] = ACTIONS(1171), + [sym__whitespace_ge_2] = ACTIONS(1171), + [aux_sym__whitespace_token1] = ACTIONS(1173), + [sym__word_no_digit] = ACTIONS(1171), + [sym__digits] = ACTIONS(1171), + [aux_sym__newline_token1] = ACTIONS(1171), + [sym__block_quote_start] = ACTIONS(1171), + [sym__indented_chunk_start] = ACTIONS(1171), + [sym_atx_h1_marker] = ACTIONS(1171), + [sym_atx_h2_marker] = ACTIONS(1171), + [sym_atx_h3_marker] = ACTIONS(1171), + [sym_atx_h4_marker] = ACTIONS(1171), + [sym_atx_h5_marker] = ACTIONS(1171), + [sym_atx_h6_marker] = ACTIONS(1171), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1171), + [sym__thematic_break] = ACTIONS(1171), + [sym__list_marker_minus] = ACTIONS(1171), + [sym__list_marker_plus] = ACTIONS(1171), + [sym__list_marker_star] = ACTIONS(1175), + [sym__list_marker_parenthesis] = ACTIONS(1171), + [sym__list_marker_dot] = ACTIONS(1171), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1171), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1171), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1175), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1171), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1171), + [sym__fenced_code_block_start_backtick] = ACTIONS(1171), + [sym__fenced_code_block_start_tilde] = ACTIONS(1171), + [sym__blank_line_start] = ACTIONS(1171), + [sym__code_span_start] = ACTIONS(1171), + [sym__emphasis_open_star] = ACTIONS(1171), + [sym__emphasis_open_underscore] = ACTIONS(1171), + }, + [208] = { + [sym_list_marker_dot] = STATE(41), + [sym__list_item_dot] = STATE(208), + [aux_sym__list_dot_repeat1] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1178), + [aux_sym__html_block_1_token1] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_DOLLAR] = ACTIONS(1178), + [anon_sym_PERCENT] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_RPAREN] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_DOT] = ACTIONS(1178), + [anon_sym_SLASH] = ACTIONS(1178), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_BSLASH] = ACTIONS(1180), + [anon_sym_RBRACK] = ACTIONS(1178), + [anon_sym_CARET] = ACTIONS(1178), + [anon_sym__] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1180), + [anon_sym_LT_QMARK] = ACTIONS(1180), + [aux_sym__html_block_4_token1] = ACTIONS(1180), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1178), + [aux_sym__html_block_6_token1] = ACTIONS(1180), + [aux_sym__html_block_6_token2] = ACTIONS(1178), + [sym__open_tag_html_block] = ACTIONS(1178), + [sym__open_tag_html_block_newline] = ACTIONS(1178), + [sym__closing_tag_html_block] = ACTIONS(1178), + [sym__closing_tag_html_block_newline] = ACTIONS(1178), + [sym_backslash_escape] = ACTIONS(1178), + [sym_uri_autolink] = ACTIONS(1178), + [sym_email_autolink] = ACTIONS(1178), + [sym_entity_reference] = ACTIONS(1178), + [sym_numeric_character_reference] = ACTIONS(1178), + [sym__whitespace_ge_2] = ACTIONS(1178), + [aux_sym__whitespace_token1] = ACTIONS(1180), + [sym__word_no_digit] = ACTIONS(1178), + [sym__digits] = ACTIONS(1178), + [aux_sym__newline_token1] = ACTIONS(1178), + [sym__block_quote_start] = ACTIONS(1178), + [sym__indented_chunk_start] = ACTIONS(1178), + [sym_atx_h1_marker] = ACTIONS(1178), + [sym_atx_h2_marker] = ACTIONS(1178), + [sym_atx_h3_marker] = ACTIONS(1178), + [sym_atx_h4_marker] = ACTIONS(1178), + [sym_atx_h5_marker] = ACTIONS(1178), + [sym_atx_h6_marker] = ACTIONS(1178), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1178), + [sym__thematic_break] = ACTIONS(1178), + [sym__list_marker_minus] = ACTIONS(1178), + [sym__list_marker_plus] = ACTIONS(1178), + [sym__list_marker_star] = ACTIONS(1178), + [sym__list_marker_parenthesis] = ACTIONS(1178), + [sym__list_marker_dot] = ACTIONS(1182), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1182), + [sym__fenced_code_block_start_backtick] = ACTIONS(1178), + [sym__fenced_code_block_start_tilde] = ACTIONS(1178), + [sym__blank_line_start] = ACTIONS(1178), + [sym__code_span_start] = ACTIONS(1178), + [sym__emphasis_open_star] = ACTIONS(1178), + [sym__emphasis_open_underscore] = ACTIONS(1178), + }, + [209] = { + [sym_list_marker_parenthesis] = STATE(42), + [sym__list_item_parenthesis] = STATE(209), + [aux_sym__list_parenthesis_repeat1] = STATE(209), + [ts_builtin_sym_end] = ACTIONS(1185), + [aux_sym__html_block_1_token1] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1187), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1187), + [anon_sym_LT_QMARK] = ACTIONS(1187), + [aux_sym__html_block_4_token1] = ACTIONS(1187), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1185), + [aux_sym__html_block_6_token1] = ACTIONS(1187), + [aux_sym__html_block_6_token2] = ACTIONS(1185), + [sym__open_tag_html_block] = ACTIONS(1185), + [sym__open_tag_html_block_newline] = ACTIONS(1185), + [sym__closing_tag_html_block] = ACTIONS(1185), + [sym__closing_tag_html_block_newline] = ACTIONS(1185), + [sym_backslash_escape] = ACTIONS(1185), + [sym_uri_autolink] = ACTIONS(1185), + [sym_email_autolink] = ACTIONS(1185), + [sym_entity_reference] = ACTIONS(1185), + [sym_numeric_character_reference] = ACTIONS(1185), + [sym__whitespace_ge_2] = ACTIONS(1185), + [aux_sym__whitespace_token1] = ACTIONS(1187), + [sym__word_no_digit] = ACTIONS(1185), + [sym__digits] = ACTIONS(1185), + [aux_sym__newline_token1] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1189), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__code_span_start] = ACTIONS(1185), + [sym__emphasis_open_star] = ACTIONS(1185), + [sym__emphasis_open_underscore] = ACTIONS(1185), + }, + [210] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(1065), + [aux_sym__html_block_1_token1] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1067), + [anon_sym_RBRACK] = ACTIONS(1065), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1067), + [anon_sym_LT_QMARK] = ACTIONS(1067), + [aux_sym__html_block_4_token1] = ACTIONS(1067), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1065), + [aux_sym__html_block_6_token1] = ACTIONS(1067), + [aux_sym__html_block_6_token2] = ACTIONS(1065), + [sym__open_tag_html_block] = ACTIONS(1065), + [sym__open_tag_html_block_newline] = ACTIONS(1065), + [sym__closing_tag_html_block] = ACTIONS(1065), + [sym__closing_tag_html_block_newline] = ACTIONS(1065), + [sym_backslash_escape] = ACTIONS(1065), + [sym_uri_autolink] = ACTIONS(1065), + [sym_email_autolink] = ACTIONS(1065), + [sym_entity_reference] = ACTIONS(1065), + [sym_numeric_character_reference] = ACTIONS(1065), + [sym__whitespace_ge_2] = ACTIONS(1065), + [aux_sym__whitespace_token1] = ACTIONS(1067), + [sym__word_no_digit] = ACTIONS(1065), + [sym__digits] = ACTIONS(1065), + [aux_sym__newline_token1] = ACTIONS(1065), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(1065), + [sym__indented_chunk_start] = ACTIONS(1065), + [sym_atx_h1_marker] = ACTIONS(1065), + [sym_atx_h2_marker] = ACTIONS(1065), + [sym_atx_h3_marker] = ACTIONS(1065), + [sym_atx_h4_marker] = ACTIONS(1065), + [sym_atx_h5_marker] = ACTIONS(1065), + [sym_atx_h6_marker] = ACTIONS(1065), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1065), + [sym__thematic_break] = ACTIONS(1065), + [sym__list_marker_minus] = ACTIONS(1065), + [sym__list_marker_plus] = ACTIONS(1065), + [sym__list_marker_star] = ACTIONS(1065), + [sym__list_marker_parenthesis] = ACTIONS(1065), + [sym__list_marker_dot] = ACTIONS(1065), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1065), + [sym__fenced_code_block_start_backtick] = ACTIONS(1065), + [sym__fenced_code_block_start_tilde] = ACTIONS(1065), + [sym__blank_line_start] = ACTIONS(1065), + [sym__code_span_start] = ACTIONS(1065), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(1065), + [sym__emphasis_open_underscore] = ACTIONS(1065), + }, + [211] = { + [aux_sym__ignore_matching_tokens] = STATE(236), + [ts_builtin_sym_end] = ACTIONS(1065), + [aux_sym__html_block_1_token1] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1067), + [anon_sym_RBRACK] = ACTIONS(1065), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1067), + [anon_sym_LT_QMARK] = ACTIONS(1067), + [aux_sym__html_block_4_token1] = ACTIONS(1067), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1065), + [aux_sym__html_block_6_token1] = ACTIONS(1067), + [aux_sym__html_block_6_token2] = ACTIONS(1065), + [sym__open_tag_html_block] = ACTIONS(1065), + [sym__open_tag_html_block_newline] = ACTIONS(1065), + [sym__closing_tag_html_block] = ACTIONS(1065), + [sym__closing_tag_html_block_newline] = ACTIONS(1065), + [sym_backslash_escape] = ACTIONS(1065), + [sym_uri_autolink] = ACTIONS(1065), + [sym_email_autolink] = ACTIONS(1065), + [sym_entity_reference] = ACTIONS(1065), + [sym_numeric_character_reference] = ACTIONS(1065), + [sym__whitespace_ge_2] = ACTIONS(1065), + [aux_sym__whitespace_token1] = ACTIONS(1067), + [sym__word_no_digit] = ACTIONS(1065), + [sym__digits] = ACTIONS(1065), + [aux_sym__newline_token1] = ACTIONS(1065), + [sym__block_continuation] = ACTIONS(1192), + [sym__block_quote_start] = ACTIONS(1065), + [sym__indented_chunk_start] = ACTIONS(1065), + [sym_atx_h1_marker] = ACTIONS(1065), + [sym_atx_h2_marker] = ACTIONS(1065), + [sym_atx_h3_marker] = ACTIONS(1065), + [sym_atx_h4_marker] = ACTIONS(1065), + [sym_atx_h5_marker] = ACTIONS(1065), + [sym_atx_h6_marker] = ACTIONS(1065), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1065), + [sym__thematic_break] = ACTIONS(1065), + [sym__list_marker_minus] = ACTIONS(1065), + [sym__list_marker_plus] = ACTIONS(1065), + [sym__list_marker_star] = ACTIONS(1065), + [sym__list_marker_parenthesis] = ACTIONS(1065), + [sym__list_marker_dot] = ACTIONS(1065), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1065), + [sym__fenced_code_block_start_backtick] = ACTIONS(1065), + [sym__fenced_code_block_start_tilde] = ACTIONS(1065), + [sym__blank_line_start] = ACTIONS(1065), + [sym__code_span_start] = ACTIONS(1065), + [sym__last_token_whitespace] = ACTIONS(1192), + [sym__emphasis_open_star] = ACTIONS(1065), + [sym__emphasis_open_underscore] = ACTIONS(1065), + }, + [212] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), + }, + [213] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(1059), + [aux_sym__html_block_1_token1] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_BSLASH] = ACTIONS(1061), + [anon_sym_RBRACK] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1061), + [anon_sym_LT_QMARK] = ACTIONS(1061), + [aux_sym__html_block_4_token1] = ACTIONS(1061), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1059), + [aux_sym__html_block_6_token1] = ACTIONS(1061), + [aux_sym__html_block_6_token2] = ACTIONS(1059), + [sym__open_tag_html_block] = ACTIONS(1059), + [sym__open_tag_html_block_newline] = ACTIONS(1059), + [sym__closing_tag_html_block] = ACTIONS(1059), + [sym__closing_tag_html_block_newline] = ACTIONS(1059), + [sym_backslash_escape] = ACTIONS(1059), + [sym_uri_autolink] = ACTIONS(1059), + [sym_email_autolink] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1059), + [sym_numeric_character_reference] = ACTIONS(1059), + [sym__whitespace_ge_2] = ACTIONS(1059), + [aux_sym__whitespace_token1] = ACTIONS(1061), + [sym__word_no_digit] = ACTIONS(1059), + [sym__digits] = ACTIONS(1059), + [aux_sym__newline_token1] = ACTIONS(1059), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(1059), + [sym__indented_chunk_start] = ACTIONS(1059), + [sym_atx_h1_marker] = ACTIONS(1059), + [sym_atx_h2_marker] = ACTIONS(1059), + [sym_atx_h3_marker] = ACTIONS(1059), + [sym_atx_h4_marker] = ACTIONS(1059), + [sym_atx_h5_marker] = ACTIONS(1059), + [sym_atx_h6_marker] = ACTIONS(1059), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1059), + [sym__thematic_break] = ACTIONS(1059), + [sym__list_marker_minus] = ACTIONS(1059), + [sym__list_marker_plus] = ACTIONS(1059), + [sym__list_marker_star] = ACTIONS(1059), + [sym__list_marker_parenthesis] = ACTIONS(1059), + [sym__list_marker_dot] = ACTIONS(1059), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1059), + [sym__fenced_code_block_start_backtick] = ACTIONS(1059), + [sym__fenced_code_block_start_tilde] = ACTIONS(1059), + [sym__blank_line_start] = ACTIONS(1059), + [sym__code_span_start] = ACTIONS(1059), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(1059), + [sym__emphasis_open_underscore] = ACTIONS(1059), + }, + [214] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(913), + [aux_sym__html_block_1_token1] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_BSLASH] = ACTIONS(915), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym__] = ACTIONS(913), + [anon_sym_BQUOTE] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(915), + [anon_sym_LT_QMARK] = ACTIONS(915), + [aux_sym__html_block_4_token1] = ACTIONS(915), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(913), + [aux_sym__html_block_6_token1] = ACTIONS(915), + [aux_sym__html_block_6_token2] = ACTIONS(913), + [sym__open_tag_html_block] = ACTIONS(913), + [sym__open_tag_html_block_newline] = ACTIONS(913), + [sym__closing_tag_html_block] = ACTIONS(913), + [sym__closing_tag_html_block_newline] = ACTIONS(913), + [sym_backslash_escape] = ACTIONS(913), + [sym_uri_autolink] = ACTIONS(913), + [sym_email_autolink] = ACTIONS(913), + [sym_entity_reference] = ACTIONS(913), + [sym_numeric_character_reference] = ACTIONS(913), + [sym__whitespace_ge_2] = ACTIONS(913), + [aux_sym__whitespace_token1] = ACTIONS(915), + [sym__word_no_digit] = ACTIONS(913), + [sym__digits] = ACTIONS(913), + [aux_sym__newline_token1] = ACTIONS(913), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(913), + [sym__indented_chunk_start] = ACTIONS(913), + [sym_atx_h1_marker] = ACTIONS(913), + [sym_atx_h2_marker] = ACTIONS(913), + [sym_atx_h3_marker] = ACTIONS(913), + [sym_atx_h4_marker] = ACTIONS(913), + [sym_atx_h5_marker] = ACTIONS(913), + [sym_atx_h6_marker] = ACTIONS(913), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(913), + [sym__thematic_break] = ACTIONS(913), + [sym__list_marker_minus] = ACTIONS(913), + [sym__list_marker_plus] = ACTIONS(913), + [sym__list_marker_star] = ACTIONS(913), + [sym__list_marker_parenthesis] = ACTIONS(913), + [sym__list_marker_dot] = ACTIONS(913), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(913), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(913), + [sym__list_marker_star_dont_interrupt] = ACTIONS(913), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(913), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(913), + [sym__fenced_code_block_start_backtick] = ACTIONS(913), + [sym__fenced_code_block_start_tilde] = ACTIONS(913), + [sym__blank_line_start] = ACTIONS(913), + [sym__code_span_start] = ACTIONS(913), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(913), + [sym__emphasis_open_underscore] = ACTIONS(913), + }, + [215] = { + [aux_sym__ignore_matching_tokens] = STATE(214), + [ts_builtin_sym_end] = ACTIONS(1059), + [aux_sym__html_block_1_token1] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_POUND] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_PERCENT] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_SQUOTE] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_COMMA] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1059), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1061), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_BSLASH] = ACTIONS(1061), + [anon_sym_RBRACK] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1061), + [anon_sym_LT_QMARK] = ACTIONS(1061), + [aux_sym__html_block_4_token1] = ACTIONS(1061), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1059), + [aux_sym__html_block_6_token1] = ACTIONS(1061), + [aux_sym__html_block_6_token2] = ACTIONS(1059), + [sym__open_tag_html_block] = ACTIONS(1059), + [sym__open_tag_html_block_newline] = ACTIONS(1059), + [sym__closing_tag_html_block] = ACTIONS(1059), + [sym__closing_tag_html_block_newline] = ACTIONS(1059), + [sym_backslash_escape] = ACTIONS(1059), + [sym_uri_autolink] = ACTIONS(1059), + [sym_email_autolink] = ACTIONS(1059), + [sym_entity_reference] = ACTIONS(1059), + [sym_numeric_character_reference] = ACTIONS(1059), + [sym__whitespace_ge_2] = ACTIONS(1059), + [aux_sym__whitespace_token1] = ACTIONS(1061), + [sym__word_no_digit] = ACTIONS(1059), + [sym__digits] = ACTIONS(1059), + [aux_sym__newline_token1] = ACTIONS(1059), + [sym__block_continuation] = ACTIONS(1194), + [sym__block_quote_start] = ACTIONS(1059), + [sym__indented_chunk_start] = ACTIONS(1059), + [sym_atx_h1_marker] = ACTIONS(1059), + [sym_atx_h2_marker] = ACTIONS(1059), + [sym_atx_h3_marker] = ACTIONS(1059), + [sym_atx_h4_marker] = ACTIONS(1059), + [sym_atx_h5_marker] = ACTIONS(1059), + [sym_atx_h6_marker] = ACTIONS(1059), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1059), + [sym__thematic_break] = ACTIONS(1059), + [sym__list_marker_minus] = ACTIONS(1059), + [sym__list_marker_plus] = ACTIONS(1059), + [sym__list_marker_star] = ACTIONS(1059), + [sym__list_marker_parenthesis] = ACTIONS(1059), + [sym__list_marker_dot] = ACTIONS(1059), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1059), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1059), + [sym__fenced_code_block_start_backtick] = ACTIONS(1059), + [sym__fenced_code_block_start_tilde] = ACTIONS(1059), + [sym__blank_line_start] = ACTIONS(1059), + [sym__code_span_start] = ACTIONS(1059), + [sym__last_token_whitespace] = ACTIONS(1194), + [sym__emphasis_open_star] = ACTIONS(1059), + [sym__emphasis_open_underscore] = ACTIONS(1059), + }, + [216] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [anon_sym_POUND] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PERCENT] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_SQUOTE] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOT] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1065), + [anon_sym_SEMI] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_BSLASH] = ACTIONS(1067), + [anon_sym_RBRACK] = ACTIONS(1065), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym__] = ACTIONS(1065), + [anon_sym_BQUOTE] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1067), + [anon_sym_LT_QMARK] = ACTIONS(1067), + [aux_sym__html_block_4_token1] = ACTIONS(1067), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1065), + [aux_sym__html_block_6_token1] = ACTIONS(1067), + [aux_sym__html_block_6_token2] = ACTIONS(1065), + [sym__open_tag_html_block] = ACTIONS(1065), + [sym__open_tag_html_block_newline] = ACTIONS(1065), + [sym__closing_tag_html_block] = ACTIONS(1065), + [sym__closing_tag_html_block_newline] = ACTIONS(1065), + [sym_backslash_escape] = ACTIONS(1065), + [sym_uri_autolink] = ACTIONS(1065), + [sym_email_autolink] = ACTIONS(1065), + [sym_entity_reference] = ACTIONS(1065), + [sym_numeric_character_reference] = ACTIONS(1065), + [sym__whitespace_ge_2] = ACTIONS(1065), + [aux_sym__whitespace_token1] = ACTIONS(1067), + [sym__word_no_digit] = ACTIONS(1065), + [sym__digits] = ACTIONS(1065), + [aux_sym__newline_token1] = ACTIONS(1065), + [sym__block_close] = ACTIONS(1065), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(1065), + [sym__indented_chunk_start] = ACTIONS(1065), + [sym_atx_h1_marker] = ACTIONS(1065), + [sym_atx_h2_marker] = ACTIONS(1065), + [sym_atx_h3_marker] = ACTIONS(1065), + [sym_atx_h4_marker] = ACTIONS(1065), + [sym_atx_h5_marker] = ACTIONS(1065), + [sym_atx_h6_marker] = ACTIONS(1065), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1065), + [sym__thematic_break] = ACTIONS(1065), + [sym__list_marker_minus] = ACTIONS(1065), + [sym__list_marker_plus] = ACTIONS(1065), + [sym__list_marker_star] = ACTIONS(1065), + [sym__list_marker_parenthesis] = ACTIONS(1065), + [sym__list_marker_dot] = ACTIONS(1065), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1065), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1065), + [sym__fenced_code_block_start_backtick] = ACTIONS(1065), + [sym__fenced_code_block_start_tilde] = ACTIONS(1065), + [sym__blank_line_start] = ACTIONS(1065), + [sym__code_span_start] = ACTIONS(1065), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(1065), + [sym__emphasis_open_underscore] = ACTIONS(1065), + }, + [217] = { + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_parenthesis] = STATE(217), + [aux_sym__list_parenthesis_repeat1] = STATE(217), + [aux_sym__html_block_1_token1] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [anon_sym_POUND] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PERCENT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_SQUOTE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOT] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1185), + [anon_sym_SEMI] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1187), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_BSLASH] = ACTIONS(1187), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym__] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1187), + [anon_sym_LT_QMARK] = ACTIONS(1187), + [aux_sym__html_block_4_token1] = ACTIONS(1187), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1185), + [aux_sym__html_block_6_token1] = ACTIONS(1187), + [aux_sym__html_block_6_token2] = ACTIONS(1185), + [sym__open_tag_html_block] = ACTIONS(1185), + [sym__open_tag_html_block_newline] = ACTIONS(1185), + [sym__closing_tag_html_block] = ACTIONS(1185), + [sym__closing_tag_html_block_newline] = ACTIONS(1185), + [sym_backslash_escape] = ACTIONS(1185), + [sym_uri_autolink] = ACTIONS(1185), + [sym_email_autolink] = ACTIONS(1185), + [sym_entity_reference] = ACTIONS(1185), + [sym_numeric_character_reference] = ACTIONS(1185), + [sym__whitespace_ge_2] = ACTIONS(1185), + [aux_sym__whitespace_token1] = ACTIONS(1187), + [sym__word_no_digit] = ACTIONS(1185), + [sym__digits] = ACTIONS(1185), + [aux_sym__newline_token1] = ACTIONS(1185), + [sym__block_close] = ACTIONS(1185), + [sym__block_quote_start] = ACTIONS(1185), + [sym__indented_chunk_start] = ACTIONS(1185), + [sym_atx_h1_marker] = ACTIONS(1185), + [sym_atx_h2_marker] = ACTIONS(1185), + [sym_atx_h3_marker] = ACTIONS(1185), + [sym_atx_h4_marker] = ACTIONS(1185), + [sym_atx_h5_marker] = ACTIONS(1185), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1185), + [sym__list_marker_minus] = ACTIONS(1185), + [sym__list_marker_plus] = ACTIONS(1185), + [sym__list_marker_star] = ACTIONS(1185), + [sym__list_marker_parenthesis] = ACTIONS(1189), + [sym__list_marker_dot] = ACTIONS(1185), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1185), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1189), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1185), + [sym__fenced_code_block_start_backtick] = ACTIONS(1185), + [sym__fenced_code_block_start_tilde] = ACTIONS(1185), + [sym__blank_line_start] = ACTIONS(1185), + [sym__code_span_start] = ACTIONS(1185), + [sym__emphasis_open_star] = ACTIONS(1185), + [sym__emphasis_open_underscore] = ACTIONS(1185), + }, + [218] = { + [sym_list_marker_dot] = STATE(32), + [sym__list_item_dot] = STATE(218), + [aux_sym__list_dot_repeat1] = STATE(218), + [aux_sym__html_block_1_token1] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_DQUOTE] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_DOLLAR] = ACTIONS(1178), + [anon_sym_PERCENT] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_RPAREN] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_PLUS] = ACTIONS(1178), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_DOT] = ACTIONS(1178), + [anon_sym_SLASH] = ACTIONS(1178), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_LT] = ACTIONS(1180), + [anon_sym_EQ] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_BSLASH] = ACTIONS(1180), + [anon_sym_RBRACK] = ACTIONS(1178), + [anon_sym_CARET] = ACTIONS(1178), + [anon_sym__] = ACTIONS(1178), + [anon_sym_BQUOTE] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1180), + [anon_sym_LT_QMARK] = ACTIONS(1180), + [aux_sym__html_block_4_token1] = ACTIONS(1180), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1178), + [aux_sym__html_block_6_token1] = ACTIONS(1180), + [aux_sym__html_block_6_token2] = ACTIONS(1178), + [sym__open_tag_html_block] = ACTIONS(1178), + [sym__open_tag_html_block_newline] = ACTIONS(1178), + [sym__closing_tag_html_block] = ACTIONS(1178), + [sym__closing_tag_html_block_newline] = ACTIONS(1178), + [sym_backslash_escape] = ACTIONS(1178), + [sym_uri_autolink] = ACTIONS(1178), + [sym_email_autolink] = ACTIONS(1178), + [sym_entity_reference] = ACTIONS(1178), + [sym_numeric_character_reference] = ACTIONS(1178), + [sym__whitespace_ge_2] = ACTIONS(1178), + [aux_sym__whitespace_token1] = ACTIONS(1180), + [sym__word_no_digit] = ACTIONS(1178), + [sym__digits] = ACTIONS(1178), + [aux_sym__newline_token1] = ACTIONS(1178), + [sym__block_close] = ACTIONS(1178), + [sym__block_quote_start] = ACTIONS(1178), + [sym__indented_chunk_start] = ACTIONS(1178), + [sym_atx_h1_marker] = ACTIONS(1178), + [sym_atx_h2_marker] = ACTIONS(1178), + [sym_atx_h3_marker] = ACTIONS(1178), + [sym_atx_h4_marker] = ACTIONS(1178), + [sym_atx_h5_marker] = ACTIONS(1178), + [sym_atx_h6_marker] = ACTIONS(1178), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1178), + [sym__thematic_break] = ACTIONS(1178), + [sym__list_marker_minus] = ACTIONS(1178), + [sym__list_marker_plus] = ACTIONS(1178), + [sym__list_marker_star] = ACTIONS(1178), + [sym__list_marker_parenthesis] = ACTIONS(1178), + [sym__list_marker_dot] = ACTIONS(1182), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1178), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1182), + [sym__fenced_code_block_start_backtick] = ACTIONS(1178), + [sym__fenced_code_block_start_tilde] = ACTIONS(1178), + [sym__blank_line_start] = ACTIONS(1178), + [sym__code_span_start] = ACTIONS(1178), + [sym__emphasis_open_star] = ACTIONS(1178), + [sym__emphasis_open_underscore] = ACTIONS(1178), + }, + [219] = { + [sym_list_marker_star] = STATE(33), + [sym__list_item_star] = STATE(219), + [aux_sym__list_star_repeat1] = STATE(219), + [aux_sym__html_block_1_token1] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [anon_sym_POUND] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1171), + [anon_sym_PERCENT] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_SQUOTE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_COMMA] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_DOT] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_COLON] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1173), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_QMARK] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1171), + [anon_sym_BSLASH] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym__] = ACTIONS(1171), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1171), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1173), + [anon_sym_LT_QMARK] = ACTIONS(1173), + [aux_sym__html_block_4_token1] = ACTIONS(1173), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1171), + [aux_sym__html_block_6_token1] = ACTIONS(1173), + [aux_sym__html_block_6_token2] = ACTIONS(1171), + [sym__open_tag_html_block] = ACTIONS(1171), + [sym__open_tag_html_block_newline] = ACTIONS(1171), + [sym__closing_tag_html_block] = ACTIONS(1171), + [sym__closing_tag_html_block_newline] = ACTIONS(1171), + [sym_backslash_escape] = ACTIONS(1171), + [sym_uri_autolink] = ACTIONS(1171), + [sym_email_autolink] = ACTIONS(1171), + [sym_entity_reference] = ACTIONS(1171), + [sym_numeric_character_reference] = ACTIONS(1171), + [sym__whitespace_ge_2] = ACTIONS(1171), + [aux_sym__whitespace_token1] = ACTIONS(1173), + [sym__word_no_digit] = ACTIONS(1171), + [sym__digits] = ACTIONS(1171), + [aux_sym__newline_token1] = ACTIONS(1171), + [sym__block_close] = ACTIONS(1171), + [sym__block_quote_start] = ACTIONS(1171), + [sym__indented_chunk_start] = ACTIONS(1171), + [sym_atx_h1_marker] = ACTIONS(1171), + [sym_atx_h2_marker] = ACTIONS(1171), + [sym_atx_h3_marker] = ACTIONS(1171), + [sym_atx_h4_marker] = ACTIONS(1171), + [sym_atx_h5_marker] = ACTIONS(1171), + [sym_atx_h6_marker] = ACTIONS(1171), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1171), + [sym__thematic_break] = ACTIONS(1171), + [sym__list_marker_minus] = ACTIONS(1171), + [sym__list_marker_plus] = ACTIONS(1171), + [sym__list_marker_star] = ACTIONS(1175), + [sym__list_marker_parenthesis] = ACTIONS(1171), + [sym__list_marker_dot] = ACTIONS(1171), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1171), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1171), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1175), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1171), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1171), + [sym__fenced_code_block_start_backtick] = ACTIONS(1171), + [sym__fenced_code_block_start_tilde] = ACTIONS(1171), + [sym__blank_line_start] = ACTIONS(1171), + [sym__code_span_start] = ACTIONS(1171), + [sym__emphasis_open_star] = ACTIONS(1171), + [sym__emphasis_open_underscore] = ACTIONS(1171), + }, + [220] = { + [sym_list_marker_minus] = STATE(34), + [sym__list_item_minus] = STATE(220), + [aux_sym__list_minus_repeat1] = STATE(220), + [aux_sym__html_block_1_token1] = ACTIONS(1164), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_DQUOTE] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_PERCENT] = ACTIONS(1164), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_RPAREN] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1164), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_DOT] = ACTIONS(1164), + [anon_sym_SLASH] = ACTIONS(1164), + [anon_sym_COLON] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_EQ] = ACTIONS(1164), + [anon_sym_GT] = ACTIONS(1164), + [anon_sym_QMARK] = ACTIONS(1164), + [anon_sym_AT] = ACTIONS(1164), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_BSLASH] = ACTIONS(1166), + [anon_sym_RBRACK] = ACTIONS(1164), + [anon_sym_CARET] = ACTIONS(1164), + [anon_sym__] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_PIPE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1166), + [anon_sym_LT_QMARK] = ACTIONS(1166), + [aux_sym__html_block_4_token1] = ACTIONS(1166), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1164), + [aux_sym__html_block_6_token1] = ACTIONS(1166), + [aux_sym__html_block_6_token2] = ACTIONS(1164), + [sym__open_tag_html_block] = ACTIONS(1164), + [sym__open_tag_html_block_newline] = ACTIONS(1164), + [sym__closing_tag_html_block] = ACTIONS(1164), + [sym__closing_tag_html_block_newline] = ACTIONS(1164), + [sym_backslash_escape] = ACTIONS(1164), + [sym_uri_autolink] = ACTIONS(1164), + [sym_email_autolink] = ACTIONS(1164), + [sym_entity_reference] = ACTIONS(1164), + [sym_numeric_character_reference] = ACTIONS(1164), + [sym__whitespace_ge_2] = ACTIONS(1164), + [aux_sym__whitespace_token1] = ACTIONS(1166), + [sym__word_no_digit] = ACTIONS(1164), + [sym__digits] = ACTIONS(1164), + [aux_sym__newline_token1] = ACTIONS(1164), + [sym__block_close] = ACTIONS(1164), + [sym__block_quote_start] = ACTIONS(1164), + [sym__indented_chunk_start] = ACTIONS(1164), + [sym_atx_h1_marker] = ACTIONS(1164), + [sym_atx_h2_marker] = ACTIONS(1164), + [sym_atx_h3_marker] = ACTIONS(1164), + [sym_atx_h4_marker] = ACTIONS(1164), + [sym_atx_h5_marker] = ACTIONS(1164), + [sym_atx_h6_marker] = ACTIONS(1164), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1164), + [sym__thematic_break] = ACTIONS(1164), + [sym__list_marker_minus] = ACTIONS(1168), + [sym__list_marker_plus] = ACTIONS(1164), + [sym__list_marker_star] = ACTIONS(1164), + [sym__list_marker_parenthesis] = ACTIONS(1164), + [sym__list_marker_dot] = ACTIONS(1164), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1168), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1164), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1164), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1164), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1164), + [sym__fenced_code_block_start_backtick] = ACTIONS(1164), + [sym__fenced_code_block_start_tilde] = ACTIONS(1164), + [sym__blank_line_start] = ACTIONS(1164), + [sym__code_span_start] = ACTIONS(1164), + [sym__emphasis_open_star] = ACTIONS(1164), + [sym__emphasis_open_underscore] = ACTIONS(1164), + }, + [221] = { + [sym_list_marker_plus] = STATE(19), + [sym__list_item_plus] = STATE(221), + [aux_sym__list_plus_repeat1] = STATE(221), + [aux_sym__html_block_1_token1] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_PERCENT] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_SQUOTE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_DOT] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1157), + [anon_sym_COLON] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_EQ] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_BSLASH] = ACTIONS(1159), + [anon_sym_RBRACK] = ACTIONS(1157), + [anon_sym_CARET] = ACTIONS(1157), + [anon_sym__] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1159), + [anon_sym_LT_QMARK] = ACTIONS(1159), + [aux_sym__html_block_4_token1] = ACTIONS(1159), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1157), + [aux_sym__html_block_6_token1] = ACTIONS(1159), + [aux_sym__html_block_6_token2] = ACTIONS(1157), + [sym__open_tag_html_block] = ACTIONS(1157), + [sym__open_tag_html_block_newline] = ACTIONS(1157), + [sym__closing_tag_html_block] = ACTIONS(1157), + [sym__closing_tag_html_block_newline] = ACTIONS(1157), + [sym_backslash_escape] = ACTIONS(1157), + [sym_uri_autolink] = ACTIONS(1157), + [sym_email_autolink] = ACTIONS(1157), + [sym_entity_reference] = ACTIONS(1157), + [sym_numeric_character_reference] = ACTIONS(1157), + [sym__whitespace_ge_2] = ACTIONS(1157), + [aux_sym__whitespace_token1] = ACTIONS(1159), + [sym__word_no_digit] = ACTIONS(1157), + [sym__digits] = ACTIONS(1157), + [aux_sym__newline_token1] = ACTIONS(1157), + [sym__block_close] = ACTIONS(1157), + [sym__block_quote_start] = ACTIONS(1157), + [sym__indented_chunk_start] = ACTIONS(1157), + [sym_atx_h1_marker] = ACTIONS(1157), + [sym_atx_h2_marker] = ACTIONS(1157), + [sym_atx_h3_marker] = ACTIONS(1157), + [sym_atx_h4_marker] = ACTIONS(1157), + [sym_atx_h5_marker] = ACTIONS(1157), + [sym_atx_h6_marker] = ACTIONS(1157), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1157), + [sym__thematic_break] = ACTIONS(1157), + [sym__list_marker_minus] = ACTIONS(1157), + [sym__list_marker_plus] = ACTIONS(1161), + [sym__list_marker_star] = ACTIONS(1157), + [sym__list_marker_parenthesis] = ACTIONS(1157), + [sym__list_marker_dot] = ACTIONS(1157), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1157), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1161), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1157), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1157), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1157), + [sym__fenced_code_block_start_backtick] = ACTIONS(1157), + [sym__fenced_code_block_start_tilde] = ACTIONS(1157), + [sym__blank_line_start] = ACTIONS(1157), + [sym__code_span_start] = ACTIONS(1157), + [sym__emphasis_open_star] = ACTIONS(1157), + [sym__emphasis_open_underscore] = ACTIONS(1157), + }, + [222] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(492), + [aux_sym__html_block_1_token1] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym__] = ACTIONS(492), + [anon_sym_BQUOTE] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(494), + [anon_sym_LT_QMARK] = ACTIONS(494), + [aux_sym__html_block_4_token1] = ACTIONS(494), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(492), + [aux_sym__html_block_6_token1] = ACTIONS(494), + [aux_sym__html_block_6_token2] = ACTIONS(492), + [sym__open_tag_html_block] = ACTIONS(492), + [sym__open_tag_html_block_newline] = ACTIONS(492), + [sym__closing_tag_html_block] = ACTIONS(492), + [sym__closing_tag_html_block_newline] = ACTIONS(492), + [sym_backslash_escape] = ACTIONS(492), + [sym_uri_autolink] = ACTIONS(492), + [sym_email_autolink] = ACTIONS(492), + [sym_entity_reference] = ACTIONS(492), + [sym_numeric_character_reference] = ACTIONS(492), + [sym__whitespace_ge_2] = ACTIONS(492), + [aux_sym__whitespace_token1] = ACTIONS(494), + [sym__word_no_digit] = ACTIONS(492), + [sym__digits] = ACTIONS(492), + [aux_sym__newline_token1] = ACTIONS(492), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(492), + [sym__indented_chunk_start] = ACTIONS(492), + [sym_atx_h1_marker] = ACTIONS(492), + [sym_atx_h2_marker] = ACTIONS(492), + [sym_atx_h3_marker] = ACTIONS(492), + [sym_atx_h4_marker] = ACTIONS(492), + [sym_atx_h5_marker] = ACTIONS(492), + [sym_atx_h6_marker] = ACTIONS(492), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(492), + [sym__thematic_break] = ACTIONS(492), + [sym__list_marker_minus] = ACTIONS(492), + [sym__list_marker_plus] = ACTIONS(492), + [sym__list_marker_star] = ACTIONS(492), + [sym__list_marker_parenthesis] = ACTIONS(492), + [sym__list_marker_dot] = ACTIONS(492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(492), + [sym__fenced_code_block_start_backtick] = ACTIONS(492), + [sym__fenced_code_block_start_tilde] = ACTIONS(492), + [sym__blank_line_start] = ACTIONS(492), + [sym__code_span_start] = ACTIONS(492), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(492), + [sym__emphasis_open_underscore] = ACTIONS(492), + }, + [223] = { + [sym__blank_line] = STATE(223), + [sym__indented_chunk] = STATE(223), + [aux_sym_indented_code_block_repeat1] = STATE(223), + [ts_builtin_sym_end] = ACTIONS(1007), + [aux_sym__html_block_1_token1] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1007), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1007), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_QMARK] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_BSLASH] = ACTIONS(1009), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym__] = ACTIONS(1007), + [anon_sym_BQUOTE] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1009), + [anon_sym_LT_QMARK] = ACTIONS(1009), + [aux_sym__html_block_4_token1] = ACTIONS(1009), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1007), + [aux_sym__html_block_6_token1] = ACTIONS(1009), + [aux_sym__html_block_6_token2] = ACTIONS(1007), + [sym__open_tag_html_block] = ACTIONS(1007), + [sym__open_tag_html_block_newline] = ACTIONS(1007), + [sym__closing_tag_html_block] = ACTIONS(1007), + [sym__closing_tag_html_block_newline] = ACTIONS(1007), + [sym_backslash_escape] = ACTIONS(1007), + [sym_uri_autolink] = ACTIONS(1007), + [sym_email_autolink] = ACTIONS(1007), + [sym_entity_reference] = ACTIONS(1007), + [sym_numeric_character_reference] = ACTIONS(1007), + [sym__whitespace_ge_2] = ACTIONS(1007), + [aux_sym__whitespace_token1] = ACTIONS(1009), + [sym__word_no_digit] = ACTIONS(1007), + [sym__digits] = ACTIONS(1007), + [aux_sym__newline_token1] = ACTIONS(1007), + [sym__block_quote_start] = ACTIONS(1007), + [sym__indented_chunk_start] = ACTIONS(1196), + [sym_atx_h1_marker] = ACTIONS(1007), + [sym_atx_h2_marker] = ACTIONS(1007), + [sym_atx_h3_marker] = ACTIONS(1007), + [sym_atx_h4_marker] = ACTIONS(1007), + [sym_atx_h5_marker] = ACTIONS(1007), + [sym_atx_h6_marker] = ACTIONS(1007), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1007), + [sym__thematic_break] = ACTIONS(1007), + [sym__list_marker_minus] = ACTIONS(1007), + [sym__list_marker_plus] = ACTIONS(1007), + [sym__list_marker_star] = ACTIONS(1007), + [sym__list_marker_parenthesis] = ACTIONS(1007), + [sym__list_marker_dot] = ACTIONS(1007), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1007), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1007), + [sym__fenced_code_block_start_backtick] = ACTIONS(1007), + [sym__fenced_code_block_start_tilde] = ACTIONS(1007), + [sym__blank_line_start] = ACTIONS(1199), + [sym__code_span_start] = ACTIONS(1007), + [sym__emphasis_open_star] = ACTIONS(1007), + [sym__emphasis_open_underscore] = ACTIONS(1007), + }, + [224] = { + [aux_sym__ignore_matching_tokens] = STATE(292), + [ts_builtin_sym_end] = ACTIONS(921), + [aux_sym__html_block_1_token1] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym__] = ACTIONS(921), + [anon_sym_BQUOTE] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(923), + [anon_sym_LT_QMARK] = ACTIONS(923), + [aux_sym__html_block_4_token1] = ACTIONS(923), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(921), + [aux_sym__html_block_6_token1] = ACTIONS(923), + [aux_sym__html_block_6_token2] = ACTIONS(921), + [sym__open_tag_html_block] = ACTIONS(921), + [sym__open_tag_html_block_newline] = ACTIONS(921), + [sym__closing_tag_html_block] = ACTIONS(921), + [sym__closing_tag_html_block_newline] = ACTIONS(921), + [sym_backslash_escape] = ACTIONS(921), + [sym_uri_autolink] = ACTIONS(921), + [sym_email_autolink] = ACTIONS(921), + [sym_entity_reference] = ACTIONS(921), + [sym_numeric_character_reference] = ACTIONS(921), + [sym__whitespace_ge_2] = ACTIONS(921), + [aux_sym__whitespace_token1] = ACTIONS(923), + [sym__word_no_digit] = ACTIONS(921), + [sym__digits] = ACTIONS(921), + [aux_sym__newline_token1] = ACTIONS(921), + [sym__block_continuation] = ACTIONS(1202), + [sym__block_quote_start] = ACTIONS(921), + [sym__indented_chunk_start] = ACTIONS(921), + [sym_atx_h1_marker] = ACTIONS(921), + [sym_atx_h2_marker] = ACTIONS(921), + [sym_atx_h3_marker] = ACTIONS(921), + [sym_atx_h4_marker] = ACTIONS(921), + [sym_atx_h5_marker] = ACTIONS(921), + [sym_atx_h6_marker] = ACTIONS(921), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(921), + [sym__thematic_break] = ACTIONS(921), + [sym__list_marker_minus] = ACTIONS(921), + [sym__list_marker_plus] = ACTIONS(921), + [sym__list_marker_star] = ACTIONS(921), + [sym__list_marker_parenthesis] = ACTIONS(921), + [sym__list_marker_dot] = ACTIONS(921), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_star_dont_interrupt] = ACTIONS(921), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(921), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(921), + [sym__fenced_code_block_start_backtick] = ACTIONS(921), + [sym__fenced_code_block_start_tilde] = ACTIONS(921), + [sym__blank_line_start] = ACTIONS(921), + [sym__code_span_start] = ACTIONS(921), + [sym__last_token_whitespace] = ACTIONS(1202), + [sym__emphasis_open_star] = ACTIONS(921), + [sym__emphasis_open_underscore] = ACTIONS(921), + }, + [225] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_BSLASH] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(475), + [anon_sym_LT_QMARK] = ACTIONS(475), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(473), + [aux_sym__html_block_6_token1] = ACTIONS(475), + [aux_sym__html_block_6_token2] = ACTIONS(473), + [sym__open_tag_html_block] = ACTIONS(473), + [sym__open_tag_html_block_newline] = ACTIONS(473), + [sym__closing_tag_html_block] = ACTIONS(473), + [sym__closing_tag_html_block_newline] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [sym_uri_autolink] = ACTIONS(473), + [sym_email_autolink] = ACTIONS(473), + [sym_entity_reference] = ACTIONS(473), + [sym_numeric_character_reference] = ACTIONS(473), + [sym__whitespace_ge_2] = ACTIONS(473), + [aux_sym__whitespace_token1] = ACTIONS(475), + [sym__word_no_digit] = ACTIONS(473), + [sym__digits] = ACTIONS(473), + [aux_sym__newline_token1] = ACTIONS(473), + [sym__block_close] = ACTIONS(473), + [sym__block_continuation] = ACTIONS(1204), + [sym__block_quote_start] = ACTIONS(473), + [sym__indented_chunk_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(473), + [sym_atx_h2_marker] = ACTIONS(473), + [sym_atx_h3_marker] = ACTIONS(473), + [sym_atx_h4_marker] = ACTIONS(473), + [sym_atx_h5_marker] = ACTIONS(473), + [sym_atx_h6_marker] = ACTIONS(473), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(473), + [sym__thematic_break] = ACTIONS(473), + [sym__list_marker_minus] = ACTIONS(473), + [sym__list_marker_plus] = ACTIONS(473), + [sym__list_marker_star] = ACTIONS(473), + [sym__list_marker_parenthesis] = ACTIONS(473), + [sym__list_marker_dot] = ACTIONS(473), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_star_dont_interrupt] = ACTIONS(473), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(473), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(473), + [sym__fenced_code_block_start_backtick] = ACTIONS(473), + [sym__fenced_code_block_start_tilde] = ACTIONS(473), + [sym__blank_line_start] = ACTIONS(473), + [sym__code_span_start] = ACTIONS(473), + [sym__last_token_whitespace] = ACTIONS(1204), + [sym__emphasis_open_star] = ACTIONS(473), + [sym__emphasis_open_underscore] = ACTIONS(473), + }, + [226] = { + [sym__blank_line] = STATE(186), + [sym__indented_chunk] = STATE(186), + [aux_sym_indented_code_block_repeat1] = STATE(186), + [aux_sym__html_block_1_token1] = ACTIONS(917), + [anon_sym_BANG] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PERCENT] = ACTIONS(917), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_DOT] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_COLON] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_BSLASH] = ACTIONS(919), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym__] = ACTIONS(917), + [anon_sym_BQUOTE] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(919), + [anon_sym_LT_QMARK] = ACTIONS(919), + [aux_sym__html_block_4_token1] = ACTIONS(919), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(917), + [aux_sym__html_block_6_token1] = ACTIONS(919), + [aux_sym__html_block_6_token2] = ACTIONS(917), + [sym__open_tag_html_block] = ACTIONS(917), + [sym__open_tag_html_block_newline] = ACTIONS(917), + [sym__closing_tag_html_block] = ACTIONS(917), + [sym__closing_tag_html_block_newline] = ACTIONS(917), [sym_backslash_escape] = ACTIONS(917), [sym_uri_autolink] = ACTIONS(917), [sym_email_autolink] = ACTIONS(917), [sym_entity_reference] = ACTIONS(917), [sym_numeric_character_reference] = ACTIONS(917), - [sym__whitespace_ge_2] = ACTIONS(920), - [aux_sym__whitespace_token1] = ACTIONS(923), + [sym__whitespace_ge_2] = ACTIONS(917), + [aux_sym__whitespace_token1] = ACTIONS(919), [sym__word_no_digit] = ACTIONS(917), [sym__digits] = ACTIONS(917), - [aux_sym__newline_token1] = ACTIONS(926), - [sym__code_span_start] = ACTIONS(929), - [sym__emphasis_open_star] = ACTIONS(932), - [sym__emphasis_open_underscore] = ACTIONS(935), - [sym__emphasis_close_underscore] = ACTIONS(938), - }, - [172] = { - [aux_sym__ignore_matching_tokens] = STATE(162), - [ts_builtin_sym_end] = ACTIONS(696), - [aux_sym__html_block_1_token1] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym__] = ACTIONS(696), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(698), - [anon_sym_LT_QMARK] = ACTIONS(698), - [aux_sym__html_block_4_token1] = ACTIONS(698), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(696), - [aux_sym__html_block_6_token1] = ACTIONS(698), - [aux_sym__html_block_6_token2] = ACTIONS(696), - [sym__open_tag_html_block] = ACTIONS(696), - [sym__open_tag_html_block_newline] = ACTIONS(696), - [sym__closing_tag_html_block] = ACTIONS(696), - [sym__closing_tag_html_block_newline] = ACTIONS(696), - [sym_backslash_escape] = ACTIONS(696), - [sym_uri_autolink] = ACTIONS(696), - [sym_email_autolink] = ACTIONS(696), - [sym_entity_reference] = ACTIONS(696), - [sym_numeric_character_reference] = ACTIONS(696), - [sym__whitespace_ge_2] = ACTIONS(696), - [aux_sym__whitespace_token1] = ACTIONS(698), - [sym__word_no_digit] = ACTIONS(696), - [sym__digits] = ACTIONS(696), - [aux_sym__newline_token1] = ACTIONS(696), - [sym__block_continuation] = ACTIONS(940), - [sym__block_quote_start] = ACTIONS(696), - [sym__indented_chunk_start] = ACTIONS(696), - [sym_atx_h1_marker] = ACTIONS(696), - [sym_atx_h2_marker] = ACTIONS(696), - [sym_atx_h3_marker] = ACTIONS(696), - [sym_atx_h4_marker] = ACTIONS(696), - [sym_atx_h5_marker] = ACTIONS(696), - [sym_atx_h6_marker] = ACTIONS(696), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(696), - [sym__thematic_break] = ACTIONS(696), - [sym__list_marker_minus] = ACTIONS(696), - [sym__list_marker_plus] = ACTIONS(696), - [sym__list_marker_star] = ACTIONS(696), - [sym__list_marker_parenthesis] = ACTIONS(696), - [sym__list_marker_dot] = ACTIONS(696), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_star_dont_interrupt] = ACTIONS(696), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(696), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(696), - [sym__fenced_code_block_start_backtick] = ACTIONS(696), - [sym__fenced_code_block_start_tilde] = ACTIONS(696), - [sym__blank_line_start] = ACTIONS(696), - [sym__code_span_start] = ACTIONS(696), - [sym__last_token_whitespace] = ACTIONS(940), - [sym__emphasis_open_star] = ACTIONS(696), - [sym__emphasis_open_underscore] = ACTIONS(696), + [aux_sym__newline_token1] = ACTIONS(917), + [sym__block_close] = ACTIONS(917), + [sym__block_quote_start] = ACTIONS(917), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(917), + [sym_atx_h2_marker] = ACTIONS(917), + [sym_atx_h3_marker] = ACTIONS(917), + [sym_atx_h4_marker] = ACTIONS(917), + [sym_atx_h5_marker] = ACTIONS(917), + [sym_atx_h6_marker] = ACTIONS(917), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(917), + [sym__thematic_break] = ACTIONS(917), + [sym__list_marker_minus] = ACTIONS(917), + [sym__list_marker_plus] = ACTIONS(917), + [sym__list_marker_star] = ACTIONS(917), + [sym__list_marker_parenthesis] = ACTIONS(917), + [sym__list_marker_dot] = ACTIONS(917), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(917), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(917), + [sym__list_marker_star_dont_interrupt] = ACTIONS(917), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(917), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(917), + [sym__fenced_code_block_start_backtick] = ACTIONS(917), + [sym__fenced_code_block_start_tilde] = ACTIONS(917), + [sym__blank_line_start] = ACTIONS(107), + [sym__code_span_start] = ACTIONS(917), + [sym__emphasis_open_star] = ACTIONS(917), + [sym__emphasis_open_underscore] = ACTIONS(917), }, - [173] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(696), - [aux_sym__html_block_1_token1] = ACTIONS(696), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DQUOTE] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(696), - [anon_sym_DOLLAR] = ACTIONS(696), - [anon_sym_PERCENT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_SQUOTE] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_STAR] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_DOT] = ACTIONS(696), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_COLON] = ACTIONS(696), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(696), - [anon_sym_BSLASH] = ACTIONS(698), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(696), - [anon_sym__] = ACTIONS(696), - [anon_sym_BQUOTE] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(696), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(698), - [anon_sym_LT_QMARK] = ACTIONS(698), - [aux_sym__html_block_4_token1] = ACTIONS(698), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(696), - [aux_sym__html_block_6_token1] = ACTIONS(698), - [aux_sym__html_block_6_token2] = ACTIONS(696), - [sym__open_tag_html_block] = ACTIONS(696), - [sym__open_tag_html_block_newline] = ACTIONS(696), - [sym__closing_tag_html_block] = ACTIONS(696), - [sym__closing_tag_html_block_newline] = ACTIONS(696), - [sym_backslash_escape] = ACTIONS(696), - [sym_uri_autolink] = ACTIONS(696), - [sym_email_autolink] = ACTIONS(696), - [sym_entity_reference] = ACTIONS(696), - [sym_numeric_character_reference] = ACTIONS(696), - [sym__whitespace_ge_2] = ACTIONS(696), - [aux_sym__whitespace_token1] = ACTIONS(698), - [sym__word_no_digit] = ACTIONS(696), - [sym__digits] = ACTIONS(696), - [aux_sym__newline_token1] = ACTIONS(696), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(696), - [sym__indented_chunk_start] = ACTIONS(696), - [sym_atx_h1_marker] = ACTIONS(696), - [sym_atx_h2_marker] = ACTIONS(696), - [sym_atx_h3_marker] = ACTIONS(696), - [sym_atx_h4_marker] = ACTIONS(696), - [sym_atx_h5_marker] = ACTIONS(696), - [sym_atx_h6_marker] = ACTIONS(696), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(696), - [sym__thematic_break] = ACTIONS(696), - [sym__list_marker_minus] = ACTIONS(696), - [sym__list_marker_plus] = ACTIONS(696), - [sym__list_marker_star] = ACTIONS(696), - [sym__list_marker_parenthesis] = ACTIONS(696), - [sym__list_marker_dot] = ACTIONS(696), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(696), - [sym__list_marker_star_dont_interrupt] = ACTIONS(696), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(696), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(696), - [sym__fenced_code_block_start_backtick] = ACTIONS(696), - [sym__fenced_code_block_start_tilde] = ACTIONS(696), - [sym__blank_line_start] = ACTIONS(696), - [sym__code_span_start] = ACTIONS(696), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(696), - [sym__emphasis_open_underscore] = ACTIONS(696), + [227] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_DOLLAR] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_BQUOTE] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(612), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(614), + [anon_sym_LT_QMARK] = ACTIONS(614), + [aux_sym__html_block_4_token1] = ACTIONS(614), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(612), + [aux_sym__html_block_6_token1] = ACTIONS(614), + [aux_sym__html_block_6_token2] = ACTIONS(612), + [sym__open_tag_html_block] = ACTIONS(612), + [sym__open_tag_html_block_newline] = ACTIONS(612), + [sym__closing_tag_html_block] = ACTIONS(612), + [sym__closing_tag_html_block_newline] = ACTIONS(612), + [sym_backslash_escape] = ACTIONS(612), + [sym_uri_autolink] = ACTIONS(612), + [sym_email_autolink] = ACTIONS(612), + [sym_entity_reference] = ACTIONS(612), + [sym_numeric_character_reference] = ACTIONS(612), + [sym__whitespace_ge_2] = ACTIONS(612), + [aux_sym__whitespace_token1] = ACTIONS(614), + [sym__word_no_digit] = ACTIONS(612), + [sym__digits] = ACTIONS(612), + [aux_sym__newline_token1] = ACTIONS(612), + [sym__block_close] = ACTIONS(612), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(612), + [sym__indented_chunk_start] = ACTIONS(612), + [sym_atx_h1_marker] = ACTIONS(612), + [sym_atx_h2_marker] = ACTIONS(612), + [sym_atx_h3_marker] = ACTIONS(612), + [sym_atx_h4_marker] = ACTIONS(612), + [sym_atx_h5_marker] = ACTIONS(612), + [sym_atx_h6_marker] = ACTIONS(612), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(612), + [sym__thematic_break] = ACTIONS(612), + [sym__list_marker_minus] = ACTIONS(612), + [sym__list_marker_plus] = ACTIONS(612), + [sym__list_marker_star] = ACTIONS(612), + [sym__list_marker_parenthesis] = ACTIONS(612), + [sym__list_marker_dot] = ACTIONS(612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(612), + [sym__fenced_code_block_start_backtick] = ACTIONS(612), + [sym__fenced_code_block_start_tilde] = ACTIONS(612), + [sym__blank_line_start] = ACTIONS(612), + [sym__code_span_start] = ACTIONS(612), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(612), + [sym__emphasis_open_underscore] = ACTIONS(612), }, - [174] = { - [aux_sym__ignore_matching_tokens] = STATE(160), - [ts_builtin_sym_end] = ACTIONS(712), - [aux_sym__html_block_1_token1] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_SQUOTE] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(714), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym__] = ACTIONS(712), - [anon_sym_BQUOTE] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(714), - [anon_sym_LT_QMARK] = ACTIONS(714), - [aux_sym__html_block_4_token1] = ACTIONS(714), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(712), - [aux_sym__html_block_6_token1] = ACTIONS(714), - [aux_sym__html_block_6_token2] = ACTIONS(712), - [sym__open_tag_html_block] = ACTIONS(712), - [sym__open_tag_html_block_newline] = ACTIONS(712), - [sym__closing_tag_html_block] = ACTIONS(712), - [sym__closing_tag_html_block_newline] = ACTIONS(712), - [sym_backslash_escape] = ACTIONS(712), - [sym_uri_autolink] = ACTIONS(712), - [sym_email_autolink] = ACTIONS(712), - [sym_entity_reference] = ACTIONS(712), - [sym_numeric_character_reference] = ACTIONS(712), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(712), - [sym__digits] = ACTIONS(712), - [aux_sym__newline_token1] = ACTIONS(712), - [sym__block_continuation] = ACTIONS(942), - [sym__block_quote_start] = ACTIONS(712), - [sym__indented_chunk_start] = ACTIONS(712), - [sym_atx_h1_marker] = ACTIONS(712), - [sym_atx_h2_marker] = ACTIONS(712), - [sym_atx_h3_marker] = ACTIONS(712), - [sym_atx_h4_marker] = ACTIONS(712), - [sym_atx_h5_marker] = ACTIONS(712), - [sym_atx_h6_marker] = ACTIONS(712), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(712), - [sym__thematic_break] = ACTIONS(712), - [sym__list_marker_minus] = ACTIONS(712), - [sym__list_marker_plus] = ACTIONS(712), - [sym__list_marker_star] = ACTIONS(712), - [sym__list_marker_parenthesis] = ACTIONS(712), - [sym__list_marker_dot] = ACTIONS(712), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_star_dont_interrupt] = ACTIONS(712), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(712), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(712), - [sym__fenced_code_block_start_backtick] = ACTIONS(712), - [sym__fenced_code_block_start_tilde] = ACTIONS(712), - [sym__blank_line_start] = ACTIONS(712), - [sym__code_span_start] = ACTIONS(712), - [sym__last_token_whitespace] = ACTIONS(942), - [sym__emphasis_open_star] = ACTIONS(712), - [sym__emphasis_open_underscore] = ACTIONS(712), + [228] = { + [aux_sym__ignore_matching_tokens] = STATE(216), + [aux_sym__html_block_1_token1] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1207), + [anon_sym_POUND] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PERCENT] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_COMMA] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1207), + [anon_sym_COLON] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1209), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_AT] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_BSLASH] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1207), + [anon_sym__] = ACTIONS(1207), + [anon_sym_BQUOTE] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1209), + [anon_sym_LT_QMARK] = ACTIONS(1209), + [aux_sym__html_block_4_token1] = ACTIONS(1209), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1207), + [aux_sym__html_block_6_token1] = ACTIONS(1209), + [aux_sym__html_block_6_token2] = ACTIONS(1207), + [sym__open_tag_html_block] = ACTIONS(1207), + [sym__open_tag_html_block_newline] = ACTIONS(1207), + [sym__closing_tag_html_block] = ACTIONS(1207), + [sym__closing_tag_html_block_newline] = ACTIONS(1207), + [sym_backslash_escape] = ACTIONS(1207), + [sym_uri_autolink] = ACTIONS(1207), + [sym_email_autolink] = ACTIONS(1207), + [sym_entity_reference] = ACTIONS(1207), + [sym_numeric_character_reference] = ACTIONS(1207), + [sym__whitespace_ge_2] = ACTIONS(1207), + [aux_sym__whitespace_token1] = ACTIONS(1209), + [sym__word_no_digit] = ACTIONS(1207), + [sym__digits] = ACTIONS(1207), + [aux_sym__newline_token1] = ACTIONS(1207), + [sym__block_close] = ACTIONS(1207), + [sym__block_continuation] = ACTIONS(1211), + [sym__block_quote_start] = ACTIONS(1207), + [sym__indented_chunk_start] = ACTIONS(1207), + [sym_atx_h1_marker] = ACTIONS(1207), + [sym_atx_h2_marker] = ACTIONS(1207), + [sym_atx_h3_marker] = ACTIONS(1207), + [sym_atx_h4_marker] = ACTIONS(1207), + [sym_atx_h5_marker] = ACTIONS(1207), + [sym_atx_h6_marker] = ACTIONS(1207), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1207), + [sym__thematic_break] = ACTIONS(1207), + [sym__list_marker_minus] = ACTIONS(1207), + [sym__list_marker_plus] = ACTIONS(1207), + [sym__list_marker_star] = ACTIONS(1207), + [sym__list_marker_parenthesis] = ACTIONS(1207), + [sym__list_marker_dot] = ACTIONS(1207), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1207), + [sym__fenced_code_block_start_backtick] = ACTIONS(1207), + [sym__fenced_code_block_start_tilde] = ACTIONS(1207), + [sym__blank_line_start] = ACTIONS(1207), + [sym__code_span_start] = ACTIONS(1207), + [sym__last_token_whitespace] = ACTIONS(1211), + [sym__emphasis_open_star] = ACTIONS(1207), + [sym__emphasis_open_underscore] = ACTIONS(1207), }, - [175] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(712), - [aux_sym__html_block_1_token1] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_PERCENT] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(714), - [anon_sym_SQUOTE] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_COLON] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(714), - [anon_sym_EQ] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_BSLASH] = ACTIONS(714), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), - [anon_sym__] = ACTIONS(712), - [anon_sym_BQUOTE] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_TILDE] = ACTIONS(712), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(714), - [anon_sym_LT_QMARK] = ACTIONS(714), - [aux_sym__html_block_4_token1] = ACTIONS(714), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(712), - [aux_sym__html_block_6_token1] = ACTIONS(714), - [aux_sym__html_block_6_token2] = ACTIONS(712), - [sym__open_tag_html_block] = ACTIONS(712), - [sym__open_tag_html_block_newline] = ACTIONS(712), - [sym__closing_tag_html_block] = ACTIONS(712), - [sym__closing_tag_html_block_newline] = ACTIONS(712), - [sym_backslash_escape] = ACTIONS(712), - [sym_uri_autolink] = ACTIONS(712), - [sym_email_autolink] = ACTIONS(712), - [sym_entity_reference] = ACTIONS(712), - [sym_numeric_character_reference] = ACTIONS(712), - [sym__whitespace_ge_2] = ACTIONS(712), - [aux_sym__whitespace_token1] = ACTIONS(714), - [sym__word_no_digit] = ACTIONS(712), - [sym__digits] = ACTIONS(712), - [aux_sym__newline_token1] = ACTIONS(712), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(712), - [sym__indented_chunk_start] = ACTIONS(712), - [sym_atx_h1_marker] = ACTIONS(712), - [sym_atx_h2_marker] = ACTIONS(712), - [sym_atx_h3_marker] = ACTIONS(712), - [sym_atx_h4_marker] = ACTIONS(712), - [sym_atx_h5_marker] = ACTIONS(712), - [sym_atx_h6_marker] = ACTIONS(712), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(712), - [sym__thematic_break] = ACTIONS(712), - [sym__list_marker_minus] = ACTIONS(712), - [sym__list_marker_plus] = ACTIONS(712), - [sym__list_marker_star] = ACTIONS(712), - [sym__list_marker_parenthesis] = ACTIONS(712), - [sym__list_marker_dot] = ACTIONS(712), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(712), - [sym__list_marker_star_dont_interrupt] = ACTIONS(712), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(712), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(712), - [sym__fenced_code_block_start_backtick] = ACTIONS(712), - [sym__fenced_code_block_start_tilde] = ACTIONS(712), - [sym__blank_line_start] = ACTIONS(712), - [sym__code_span_start] = ACTIONS(712), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(712), - [sym__emphasis_open_underscore] = ACTIONS(712), + [229] = { + [sym_list_marker_parenthesis] = STATE(31), + [sym__list_item_parenthesis] = STATE(217), + [aux_sym__list_parenthesis_repeat1] = STATE(217), + [aux_sym__html_block_1_token1] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_PERCENT] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_AT] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1215), + [anon_sym_LT_QMARK] = ACTIONS(1215), + [aux_sym__html_block_4_token1] = ACTIONS(1215), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1213), + [aux_sym__html_block_6_token1] = ACTIONS(1215), + [aux_sym__html_block_6_token2] = ACTIONS(1213), + [sym__open_tag_html_block] = ACTIONS(1213), + [sym__open_tag_html_block_newline] = ACTIONS(1213), + [sym__closing_tag_html_block] = ACTIONS(1213), + [sym__closing_tag_html_block_newline] = ACTIONS(1213), + [sym_backslash_escape] = ACTIONS(1213), + [sym_uri_autolink] = ACTIONS(1213), + [sym_email_autolink] = ACTIONS(1213), + [sym_entity_reference] = ACTIONS(1213), + [sym_numeric_character_reference] = ACTIONS(1213), + [sym__whitespace_ge_2] = ACTIONS(1213), + [aux_sym__whitespace_token1] = ACTIONS(1215), + [sym__word_no_digit] = ACTIONS(1213), + [sym__digits] = ACTIONS(1213), + [aux_sym__newline_token1] = ACTIONS(1213), + [sym__block_close] = ACTIONS(1213), + [sym__block_quote_start] = ACTIONS(1213), + [sym__indented_chunk_start] = ACTIONS(1213), + [sym_atx_h1_marker] = ACTIONS(1213), + [sym_atx_h2_marker] = ACTIONS(1213), + [sym_atx_h3_marker] = ACTIONS(1213), + [sym_atx_h4_marker] = ACTIONS(1213), + [sym_atx_h5_marker] = ACTIONS(1213), + [sym_atx_h6_marker] = ACTIONS(1213), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1213), + [sym__thematic_break] = ACTIONS(1213), + [sym__list_marker_minus] = ACTIONS(1213), + [sym__list_marker_plus] = ACTIONS(1213), + [sym__list_marker_star] = ACTIONS(1213), + [sym__list_marker_parenthesis] = ACTIONS(59), + [sym__list_marker_dot] = ACTIONS(1213), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1213), + [sym__fenced_code_block_start_backtick] = ACTIONS(1213), + [sym__fenced_code_block_start_tilde] = ACTIONS(1213), + [sym__blank_line_start] = ACTIONS(1213), + [sym__code_span_start] = ACTIONS(1213), + [sym__emphasis_open_star] = ACTIONS(1213), + [sym__emphasis_open_underscore] = ACTIONS(1213), }, - [176] = { - [aux_sym__ignore_matching_tokens] = STATE(128), - [aux_sym__html_block_1_token1] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_PERCENT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_COLON] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_QMARK] = ACTIONS(944), - [anon_sym_AT] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_BSLASH] = ACTIONS(946), - [anon_sym_RBRACK] = ACTIONS(944), - [anon_sym_CARET] = ACTIONS(944), - [anon_sym__] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(946), - [anon_sym_LT_QMARK] = ACTIONS(946), - [aux_sym__html_block_4_token1] = ACTIONS(946), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(944), - [aux_sym__html_block_6_token1] = ACTIONS(946), - [aux_sym__html_block_6_token2] = ACTIONS(944), - [sym__open_tag_html_block] = ACTIONS(944), - [sym__open_tag_html_block_newline] = ACTIONS(944), - [sym__closing_tag_html_block] = ACTIONS(944), - [sym__closing_tag_html_block_newline] = ACTIONS(944), - [sym_backslash_escape] = ACTIONS(944), - [sym_uri_autolink] = ACTIONS(944), - [sym_email_autolink] = ACTIONS(944), - [sym_entity_reference] = ACTIONS(944), - [sym_numeric_character_reference] = ACTIONS(944), - [sym__whitespace_ge_2] = ACTIONS(944), - [aux_sym__whitespace_token1] = ACTIONS(946), - [sym__word_no_digit] = ACTIONS(944), - [sym__digits] = ACTIONS(944), - [aux_sym__newline_token1] = ACTIONS(944), - [sym__block_close] = ACTIONS(944), - [sym__block_continuation] = ACTIONS(948), - [sym__block_quote_start] = ACTIONS(944), - [sym__indented_chunk_start] = ACTIONS(944), - [sym_atx_h1_marker] = ACTIONS(944), - [sym_atx_h2_marker] = ACTIONS(944), - [sym_atx_h3_marker] = ACTIONS(944), - [sym_atx_h4_marker] = ACTIONS(944), - [sym_atx_h5_marker] = ACTIONS(944), - [sym_atx_h6_marker] = ACTIONS(944), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(944), - [sym__thematic_break] = ACTIONS(944), - [sym__list_marker_minus] = ACTIONS(944), - [sym__list_marker_plus] = ACTIONS(944), - [sym__list_marker_star] = ACTIONS(944), - [sym__list_marker_parenthesis] = ACTIONS(944), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(944), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(944), - [sym__list_marker_star_dont_interrupt] = ACTIONS(944), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(944), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(944), - [sym__fenced_code_block_start_tilde] = ACTIONS(944), - [sym__blank_line_start] = ACTIONS(944), - [sym__code_span_start] = ACTIONS(944), - [sym__last_token_whitespace] = ACTIONS(948), - [sym__emphasis_open_star] = ACTIONS(944), - [sym__emphasis_open_underscore] = ACTIONS(944), + [230] = { + [sym_list_marker_dot] = STATE(32), + [sym__list_item_dot] = STATE(218), + [aux_sym__list_dot_repeat1] = STATE(218), + [aux_sym__html_block_1_token1] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_PERCENT] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_COLON] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_QMARK] = ACTIONS(1217), + [anon_sym_AT] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_BSLASH] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym__] = ACTIONS(1217), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1219), + [anon_sym_LT_QMARK] = ACTIONS(1219), + [aux_sym__html_block_4_token1] = ACTIONS(1219), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1217), + [aux_sym__html_block_6_token1] = ACTIONS(1219), + [aux_sym__html_block_6_token2] = ACTIONS(1217), + [sym__open_tag_html_block] = ACTIONS(1217), + [sym__open_tag_html_block_newline] = ACTIONS(1217), + [sym__closing_tag_html_block] = ACTIONS(1217), + [sym__closing_tag_html_block_newline] = ACTIONS(1217), + [sym_backslash_escape] = ACTIONS(1217), + [sym_uri_autolink] = ACTIONS(1217), + [sym_email_autolink] = ACTIONS(1217), + [sym_entity_reference] = ACTIONS(1217), + [sym_numeric_character_reference] = ACTIONS(1217), + [sym__whitespace_ge_2] = ACTIONS(1217), + [aux_sym__whitespace_token1] = ACTIONS(1219), + [sym__word_no_digit] = ACTIONS(1217), + [sym__digits] = ACTIONS(1217), + [aux_sym__newline_token1] = ACTIONS(1217), + [sym__block_close] = ACTIONS(1217), + [sym__block_quote_start] = ACTIONS(1217), + [sym__indented_chunk_start] = ACTIONS(1217), + [sym_atx_h1_marker] = ACTIONS(1217), + [sym_atx_h2_marker] = ACTIONS(1217), + [sym_atx_h3_marker] = ACTIONS(1217), + [sym_atx_h4_marker] = ACTIONS(1217), + [sym_atx_h5_marker] = ACTIONS(1217), + [sym_atx_h6_marker] = ACTIONS(1217), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1217), + [sym__thematic_break] = ACTIONS(1217), + [sym__list_marker_minus] = ACTIONS(1217), + [sym__list_marker_plus] = ACTIONS(1217), + [sym__list_marker_star] = ACTIONS(1217), + [sym__list_marker_parenthesis] = ACTIONS(1217), + [sym__list_marker_dot] = ACTIONS(61), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), + [sym__fenced_code_block_start_backtick] = ACTIONS(1217), + [sym__fenced_code_block_start_tilde] = ACTIONS(1217), + [sym__blank_line_start] = ACTIONS(1217), + [sym__code_span_start] = ACTIONS(1217), + [sym__emphasis_open_star] = ACTIONS(1217), + [sym__emphasis_open_underscore] = ACTIONS(1217), }, - [177] = { - [aux_sym__ignore_matching_tokens] = STATE(159), - [ts_builtin_sym_end] = ACTIONS(718), - [aux_sym__html_block_1_token1] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_DOT] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_BSLASH] = ACTIONS(720), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym__] = ACTIONS(718), - [anon_sym_BQUOTE] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(720), - [anon_sym_LT_QMARK] = ACTIONS(720), - [aux_sym__html_block_4_token1] = ACTIONS(720), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(718), - [aux_sym__html_block_6_token1] = ACTIONS(720), - [aux_sym__html_block_6_token2] = ACTIONS(718), - [sym__open_tag_html_block] = ACTIONS(718), - [sym__open_tag_html_block_newline] = ACTIONS(718), - [sym__closing_tag_html_block] = ACTIONS(718), - [sym__closing_tag_html_block_newline] = ACTIONS(718), - [sym_backslash_escape] = ACTIONS(718), - [sym_uri_autolink] = ACTIONS(718), - [sym_email_autolink] = ACTIONS(718), - [sym_entity_reference] = ACTIONS(718), - [sym_numeric_character_reference] = ACTIONS(718), - [sym__whitespace_ge_2] = ACTIONS(718), - [aux_sym__whitespace_token1] = ACTIONS(720), - [sym__word_no_digit] = ACTIONS(718), - [sym__digits] = ACTIONS(718), - [aux_sym__newline_token1] = ACTIONS(718), - [sym__block_continuation] = ACTIONS(950), - [sym__block_quote_start] = ACTIONS(718), - [sym__indented_chunk_start] = ACTIONS(718), - [sym_atx_h1_marker] = ACTIONS(718), - [sym_atx_h2_marker] = ACTIONS(718), - [sym_atx_h3_marker] = ACTIONS(718), - [sym_atx_h4_marker] = ACTIONS(718), - [sym_atx_h5_marker] = ACTIONS(718), - [sym_atx_h6_marker] = ACTIONS(718), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(718), - [sym__thematic_break] = ACTIONS(718), - [sym__list_marker_minus] = ACTIONS(718), - [sym__list_marker_plus] = ACTIONS(718), - [sym__list_marker_star] = ACTIONS(718), - [sym__list_marker_parenthesis] = ACTIONS(718), - [sym__list_marker_dot] = ACTIONS(718), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_star_dont_interrupt] = ACTIONS(718), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(718), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(718), - [sym__fenced_code_block_start_backtick] = ACTIONS(718), - [sym__fenced_code_block_start_tilde] = ACTIONS(718), - [sym__blank_line_start] = ACTIONS(718), - [sym__code_span_start] = ACTIONS(718), - [sym__last_token_whitespace] = ACTIONS(950), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(718), + [231] = { + [sym_list_marker_star] = STATE(33), + [sym__list_item_star] = STATE(219), + [aux_sym__list_star_repeat1] = STATE(219), + [aux_sym__html_block_1_token1] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_COLON] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AT] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_BSLASH] = ACTIONS(1223), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym__] = ACTIONS(1221), + [anon_sym_BQUOTE] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1223), + [anon_sym_LT_QMARK] = ACTIONS(1223), + [aux_sym__html_block_4_token1] = ACTIONS(1223), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1221), + [aux_sym__html_block_6_token1] = ACTIONS(1223), + [aux_sym__html_block_6_token2] = ACTIONS(1221), + [sym__open_tag_html_block] = ACTIONS(1221), + [sym__open_tag_html_block_newline] = ACTIONS(1221), + [sym__closing_tag_html_block] = ACTIONS(1221), + [sym__closing_tag_html_block_newline] = ACTIONS(1221), + [sym_backslash_escape] = ACTIONS(1221), + [sym_uri_autolink] = ACTIONS(1221), + [sym_email_autolink] = ACTIONS(1221), + [sym_entity_reference] = ACTIONS(1221), + [sym_numeric_character_reference] = ACTIONS(1221), + [sym__whitespace_ge_2] = ACTIONS(1221), + [aux_sym__whitespace_token1] = ACTIONS(1223), + [sym__word_no_digit] = ACTIONS(1221), + [sym__digits] = ACTIONS(1221), + [aux_sym__newline_token1] = ACTIONS(1221), + [sym__block_close] = ACTIONS(1221), + [sym__block_quote_start] = ACTIONS(1221), + [sym__indented_chunk_start] = ACTIONS(1221), + [sym_atx_h1_marker] = ACTIONS(1221), + [sym_atx_h2_marker] = ACTIONS(1221), + [sym_atx_h3_marker] = ACTIONS(1221), + [sym_atx_h4_marker] = ACTIONS(1221), + [sym_atx_h5_marker] = ACTIONS(1221), + [sym_atx_h6_marker] = ACTIONS(1221), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1221), + [sym__thematic_break] = ACTIONS(1221), + [sym__list_marker_minus] = ACTIONS(1221), + [sym__list_marker_plus] = ACTIONS(1221), + [sym__list_marker_star] = ACTIONS(57), + [sym__list_marker_parenthesis] = ACTIONS(1221), + [sym__list_marker_dot] = ACTIONS(1221), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1221), + [sym__list_marker_star_dont_interrupt] = ACTIONS(57), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1221), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1221), + [sym__fenced_code_block_start_backtick] = ACTIONS(1221), + [sym__fenced_code_block_start_tilde] = ACTIONS(1221), + [sym__blank_line_start] = ACTIONS(1221), + [sym__code_span_start] = ACTIONS(1221), + [sym__emphasis_open_star] = ACTIONS(1221), + [sym__emphasis_open_underscore] = ACTIONS(1221), }, - [178] = { - [sym_shortcut_link] = STATE(243), - [sym_full_reference_link] = STATE(243), - [sym_collapsed_reference_link] = STATE(243), - [sym_inline_link] = STATE(243), - [sym_image] = STATE(243), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym__soft_line_break] = STATE(243), - [sym_hard_line_break] = STATE(243), - [sym_html_tag] = STATE(243), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(243), - [sym__word] = STATE(243), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star] = STATE(243), - [aux_sym__inline_no_star] = STATE(243), - [sym__text_inline_no_star] = STATE(243), - [sym__emphasis_star] = STATE(780), - [sym__strong_emphasis_star] = STATE(243), - [sym__emphasis_underscore] = STATE(780), - [sym__strong_emphasis_underscore] = STATE(243), - [sym__code_span] = STATE(243), - [anon_sym_BANG] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(834), - [anon_sym_BSLASH] = ACTIONS(836), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), - [anon_sym_LT_QMARK] = ACTIONS(840), - [aux_sym__html_block_4_token1] = ACTIONS(842), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), - [sym_backslash_escape] = ACTIONS(846), - [sym_uri_autolink] = ACTIONS(846), - [sym_email_autolink] = ACTIONS(846), - [sym_entity_reference] = ACTIONS(846), - [sym_numeric_character_reference] = ACTIONS(846), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(846), - [sym__digits] = ACTIONS(846), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(852), - [sym__emphasis_open_star] = ACTIONS(854), - [sym__emphasis_open_underscore] = ACTIONS(856), - [sym__emphasis_close_star] = ACTIONS(952), + [232] = { + [sym_list_marker_minus] = STATE(34), + [sym__list_item_minus] = STATE(220), + [aux_sym__list_minus_repeat1] = STATE(220), + [aux_sym__html_block_1_token1] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1225), + [anon_sym_AT] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym__] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1227), + [anon_sym_LT_QMARK] = ACTIONS(1227), + [aux_sym__html_block_4_token1] = ACTIONS(1227), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1225), + [aux_sym__html_block_6_token1] = ACTIONS(1227), + [aux_sym__html_block_6_token2] = ACTIONS(1225), + [sym__open_tag_html_block] = ACTIONS(1225), + [sym__open_tag_html_block_newline] = ACTIONS(1225), + [sym__closing_tag_html_block] = ACTIONS(1225), + [sym__closing_tag_html_block_newline] = ACTIONS(1225), + [sym_backslash_escape] = ACTIONS(1225), + [sym_uri_autolink] = ACTIONS(1225), + [sym_email_autolink] = ACTIONS(1225), + [sym_entity_reference] = ACTIONS(1225), + [sym_numeric_character_reference] = ACTIONS(1225), + [sym__whitespace_ge_2] = ACTIONS(1225), + [aux_sym__whitespace_token1] = ACTIONS(1227), + [sym__word_no_digit] = ACTIONS(1225), + [sym__digits] = ACTIONS(1225), + [aux_sym__newline_token1] = ACTIONS(1225), + [sym__block_close] = ACTIONS(1225), + [sym__block_quote_start] = ACTIONS(1225), + [sym__indented_chunk_start] = ACTIONS(1225), + [sym_atx_h1_marker] = ACTIONS(1225), + [sym_atx_h2_marker] = ACTIONS(1225), + [sym_atx_h3_marker] = ACTIONS(1225), + [sym_atx_h4_marker] = ACTIONS(1225), + [sym_atx_h5_marker] = ACTIONS(1225), + [sym_atx_h6_marker] = ACTIONS(1225), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1225), + [sym__thematic_break] = ACTIONS(1225), + [sym__list_marker_minus] = ACTIONS(53), + [sym__list_marker_plus] = ACTIONS(1225), + [sym__list_marker_star] = ACTIONS(1225), + [sym__list_marker_parenthesis] = ACTIONS(1225), + [sym__list_marker_dot] = ACTIONS(1225), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1225), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1225), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1225), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1225), + [sym__fenced_code_block_start_backtick] = ACTIONS(1225), + [sym__fenced_code_block_start_tilde] = ACTIONS(1225), + [sym__blank_line_start] = ACTIONS(1225), + [sym__code_span_start] = ACTIONS(1225), + [sym__emphasis_open_star] = ACTIONS(1225), + [sym__emphasis_open_underscore] = ACTIONS(1225), }, - [179] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(718), - [aux_sym__html_block_1_token1] = ACTIONS(718), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_POUND] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [anon_sym_PERCENT] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(720), - [anon_sym_SQUOTE] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(718), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_DOT] = ACTIONS(718), - [anon_sym_SLASH] = ACTIONS(718), - [anon_sym_COLON] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LT] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(718), - [anon_sym_GT] = ACTIONS(718), - [anon_sym_QMARK] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(718), - [anon_sym_BSLASH] = ACTIONS(720), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_CARET] = ACTIONS(718), - [anon_sym__] = ACTIONS(718), - [anon_sym_BQUOTE] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_TILDE] = ACTIONS(718), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(720), - [anon_sym_LT_QMARK] = ACTIONS(720), - [aux_sym__html_block_4_token1] = ACTIONS(720), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(718), - [aux_sym__html_block_6_token1] = ACTIONS(720), - [aux_sym__html_block_6_token2] = ACTIONS(718), - [sym__open_tag_html_block] = ACTIONS(718), - [sym__open_tag_html_block_newline] = ACTIONS(718), - [sym__closing_tag_html_block] = ACTIONS(718), - [sym__closing_tag_html_block_newline] = ACTIONS(718), - [sym_backslash_escape] = ACTIONS(718), - [sym_uri_autolink] = ACTIONS(718), - [sym_email_autolink] = ACTIONS(718), - [sym_entity_reference] = ACTIONS(718), - [sym_numeric_character_reference] = ACTIONS(718), - [sym__whitespace_ge_2] = ACTIONS(718), - [aux_sym__whitespace_token1] = ACTIONS(720), - [sym__word_no_digit] = ACTIONS(718), - [sym__digits] = ACTIONS(718), - [aux_sym__newline_token1] = ACTIONS(718), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(718), - [sym__indented_chunk_start] = ACTIONS(718), - [sym_atx_h1_marker] = ACTIONS(718), - [sym_atx_h2_marker] = ACTIONS(718), - [sym_atx_h3_marker] = ACTIONS(718), - [sym_atx_h4_marker] = ACTIONS(718), - [sym_atx_h5_marker] = ACTIONS(718), - [sym_atx_h6_marker] = ACTIONS(718), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(718), - [sym__thematic_break] = ACTIONS(718), - [sym__list_marker_minus] = ACTIONS(718), - [sym__list_marker_plus] = ACTIONS(718), - [sym__list_marker_star] = ACTIONS(718), - [sym__list_marker_parenthesis] = ACTIONS(718), - [sym__list_marker_dot] = ACTIONS(718), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(718), - [sym__list_marker_star_dont_interrupt] = ACTIONS(718), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(718), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(718), - [sym__fenced_code_block_start_backtick] = ACTIONS(718), - [sym__fenced_code_block_start_tilde] = ACTIONS(718), - [sym__blank_line_start] = ACTIONS(718), - [sym__code_span_start] = ACTIONS(718), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(718), - [sym__emphasis_open_underscore] = ACTIONS(718), + [233] = { + [sym_list_marker_plus] = STATE(19), + [sym__list_item_plus] = STATE(221), + [aux_sym__list_plus_repeat1] = STATE(221), + [aux_sym__html_block_1_token1] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_BSLASH] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym__] = ACTIONS(1229), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1231), + [anon_sym_LT_QMARK] = ACTIONS(1231), + [aux_sym__html_block_4_token1] = ACTIONS(1231), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1229), + [aux_sym__html_block_6_token1] = ACTIONS(1231), + [aux_sym__html_block_6_token2] = ACTIONS(1229), + [sym__open_tag_html_block] = ACTIONS(1229), + [sym__open_tag_html_block_newline] = ACTIONS(1229), + [sym__closing_tag_html_block] = ACTIONS(1229), + [sym__closing_tag_html_block_newline] = ACTIONS(1229), + [sym_backslash_escape] = ACTIONS(1229), + [sym_uri_autolink] = ACTIONS(1229), + [sym_email_autolink] = ACTIONS(1229), + [sym_entity_reference] = ACTIONS(1229), + [sym_numeric_character_reference] = ACTIONS(1229), + [sym__whitespace_ge_2] = ACTIONS(1229), + [aux_sym__whitespace_token1] = ACTIONS(1231), + [sym__word_no_digit] = ACTIONS(1229), + [sym__digits] = ACTIONS(1229), + [aux_sym__newline_token1] = ACTIONS(1229), + [sym__block_close] = ACTIONS(1229), + [sym__block_quote_start] = ACTIONS(1229), + [sym__indented_chunk_start] = ACTIONS(1229), + [sym_atx_h1_marker] = ACTIONS(1229), + [sym_atx_h2_marker] = ACTIONS(1229), + [sym_atx_h3_marker] = ACTIONS(1229), + [sym_atx_h4_marker] = ACTIONS(1229), + [sym_atx_h5_marker] = ACTIONS(1229), + [sym_atx_h6_marker] = ACTIONS(1229), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1229), + [sym__thematic_break] = ACTIONS(1229), + [sym__list_marker_minus] = ACTIONS(1229), + [sym__list_marker_plus] = ACTIONS(55), + [sym__list_marker_star] = ACTIONS(1229), + [sym__list_marker_parenthesis] = ACTIONS(1229), + [sym__list_marker_dot] = ACTIONS(1229), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1229), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1229), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1229), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1229), + [sym__fenced_code_block_start_backtick] = ACTIONS(1229), + [sym__fenced_code_block_start_tilde] = ACTIONS(1229), + [sym__blank_line_start] = ACTIONS(1229), + [sym__code_span_start] = ACTIONS(1229), + [sym__emphasis_open_star] = ACTIONS(1229), + [sym__emphasis_open_underscore] = ACTIONS(1229), }, - [180] = { - [aux_sym__ignore_matching_tokens] = STATE(130), - [aux_sym__html_block_1_token1] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_COMMA] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_COLON] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(954), - [anon_sym_AT] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_BSLASH] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym__] = ACTIONS(954), - [anon_sym_BQUOTE] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(956), - [anon_sym_LT_QMARK] = ACTIONS(956), - [aux_sym__html_block_4_token1] = ACTIONS(956), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(954), - [aux_sym__html_block_6_token1] = ACTIONS(956), - [aux_sym__html_block_6_token2] = ACTIONS(954), - [sym__open_tag_html_block] = ACTIONS(954), - [sym__open_tag_html_block_newline] = ACTIONS(954), - [sym__closing_tag_html_block] = ACTIONS(954), - [sym__closing_tag_html_block_newline] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [sym_uri_autolink] = ACTIONS(954), - [sym_email_autolink] = ACTIONS(954), - [sym_entity_reference] = ACTIONS(954), - [sym_numeric_character_reference] = ACTIONS(954), - [sym__whitespace_ge_2] = ACTIONS(954), - [aux_sym__whitespace_token1] = ACTIONS(956), - [sym__word_no_digit] = ACTIONS(954), - [sym__digits] = ACTIONS(954), - [aux_sym__newline_token1] = ACTIONS(954), - [sym__block_close] = ACTIONS(954), - [sym__block_continuation] = ACTIONS(958), - [sym__block_quote_start] = ACTIONS(954), - [sym__indented_chunk_start] = ACTIONS(954), - [sym_atx_h1_marker] = ACTIONS(954), - [sym_atx_h2_marker] = ACTIONS(954), - [sym_atx_h3_marker] = ACTIONS(954), - [sym_atx_h4_marker] = ACTIONS(954), - [sym_atx_h5_marker] = ACTIONS(954), - [sym_atx_h6_marker] = ACTIONS(954), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(954), - [sym__thematic_break] = ACTIONS(954), - [sym__list_marker_minus] = ACTIONS(954), - [sym__list_marker_plus] = ACTIONS(954), - [sym__list_marker_star] = ACTIONS(954), - [sym__list_marker_parenthesis] = ACTIONS(954), - [sym__list_marker_dot] = ACTIONS(954), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_star_dont_interrupt] = ACTIONS(954), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(954), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(954), - [sym__fenced_code_block_start_backtick] = ACTIONS(954), - [sym__fenced_code_block_start_tilde] = ACTIONS(954), - [sym__blank_line_start] = ACTIONS(954), - [sym__code_span_start] = ACTIONS(954), - [sym__last_token_whitespace] = ACTIONS(958), - [sym__emphasis_open_star] = ACTIONS(954), - [sym__emphasis_open_underscore] = ACTIONS(954), + [234] = { + [sym__blank_line] = STATE(226), + [sym__indented_chunk] = STATE(226), + [aux_sym_indented_code_block_repeat1] = STATE(226), + [aux_sym__html_block_1_token1] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_PERCENT] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_COLON] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_BSLASH] = ACTIONS(1235), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym__] = ACTIONS(1233), + [anon_sym_BQUOTE] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1235), + [anon_sym_LT_QMARK] = ACTIONS(1235), + [aux_sym__html_block_4_token1] = ACTIONS(1235), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1233), + [aux_sym__html_block_6_token1] = ACTIONS(1235), + [aux_sym__html_block_6_token2] = ACTIONS(1233), + [sym__open_tag_html_block] = ACTIONS(1233), + [sym__open_tag_html_block_newline] = ACTIONS(1233), + [sym__closing_tag_html_block] = ACTIONS(1233), + [sym__closing_tag_html_block_newline] = ACTIONS(1233), + [sym_backslash_escape] = ACTIONS(1233), + [sym_uri_autolink] = ACTIONS(1233), + [sym_email_autolink] = ACTIONS(1233), + [sym_entity_reference] = ACTIONS(1233), + [sym_numeric_character_reference] = ACTIONS(1233), + [sym__whitespace_ge_2] = ACTIONS(1233), + [aux_sym__whitespace_token1] = ACTIONS(1235), + [sym__word_no_digit] = ACTIONS(1233), + [sym__digits] = ACTIONS(1233), + [aux_sym__newline_token1] = ACTIONS(1233), + [sym__block_close] = ACTIONS(1233), + [sym__block_quote_start] = ACTIONS(1233), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1233), + [sym_atx_h2_marker] = ACTIONS(1233), + [sym_atx_h3_marker] = ACTIONS(1233), + [sym_atx_h4_marker] = ACTIONS(1233), + [sym_atx_h5_marker] = ACTIONS(1233), + [sym_atx_h6_marker] = ACTIONS(1233), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1233), + [sym__thematic_break] = ACTIONS(1233), + [sym__list_marker_minus] = ACTIONS(1233), + [sym__list_marker_plus] = ACTIONS(1233), + [sym__list_marker_star] = ACTIONS(1233), + [sym__list_marker_parenthesis] = ACTIONS(1233), + [sym__list_marker_dot] = ACTIONS(1233), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), + [sym__fenced_code_block_start_backtick] = ACTIONS(1233), + [sym__fenced_code_block_start_tilde] = ACTIONS(1233), + [sym__blank_line_start] = ACTIONS(107), + [sym__code_span_start] = ACTIONS(1233), + [sym__emphasis_open_star] = ACTIONS(1233), + [sym__emphasis_open_underscore] = ACTIONS(1233), }, - [181] = { - [aux_sym__ignore_matching_tokens] = STATE(132), - [aux_sym__html_block_1_token1] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_PERCENT] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_AT] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(962), - [anon_sym_RBRACK] = ACTIONS(960), - [anon_sym_CARET] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(962), - [anon_sym_LT_QMARK] = ACTIONS(962), - [aux_sym__html_block_4_token1] = ACTIONS(962), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(960), - [aux_sym__html_block_6_token1] = ACTIONS(962), - [aux_sym__html_block_6_token2] = ACTIONS(960), - [sym__open_tag_html_block] = ACTIONS(960), - [sym__open_tag_html_block_newline] = ACTIONS(960), - [sym__closing_tag_html_block] = ACTIONS(960), - [sym__closing_tag_html_block_newline] = ACTIONS(960), - [sym_backslash_escape] = ACTIONS(960), - [sym_uri_autolink] = ACTIONS(960), - [sym_email_autolink] = ACTIONS(960), - [sym_entity_reference] = ACTIONS(960), - [sym_numeric_character_reference] = ACTIONS(960), - [sym__whitespace_ge_2] = ACTIONS(960), - [aux_sym__whitespace_token1] = ACTIONS(962), - [sym__word_no_digit] = ACTIONS(960), - [sym__digits] = ACTIONS(960), - [aux_sym__newline_token1] = ACTIONS(960), - [sym__block_close] = ACTIONS(960), - [sym__block_continuation] = ACTIONS(964), - [sym__block_quote_start] = ACTIONS(960), - [sym__indented_chunk_start] = ACTIONS(960), - [sym_atx_h1_marker] = ACTIONS(960), - [sym_atx_h2_marker] = ACTIONS(960), - [sym_atx_h3_marker] = ACTIONS(960), - [sym_atx_h4_marker] = ACTIONS(960), - [sym_atx_h5_marker] = ACTIONS(960), - [sym_atx_h6_marker] = ACTIONS(960), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(960), - [sym__thematic_break] = ACTIONS(960), - [sym__list_marker_minus] = ACTIONS(960), - [sym__list_marker_plus] = ACTIONS(960), - [sym__list_marker_star] = ACTIONS(960), - [sym__list_marker_parenthesis] = ACTIONS(960), - [sym__list_marker_dot] = ACTIONS(960), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(960), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(960), - [sym__list_marker_star_dont_interrupt] = ACTIONS(960), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(960), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(960), - [sym__fenced_code_block_start_backtick] = ACTIONS(960), - [sym__fenced_code_block_start_tilde] = ACTIONS(960), - [sym__blank_line_start] = ACTIONS(960), - [sym__code_span_start] = ACTIONS(960), - [sym__last_token_whitespace] = ACTIONS(964), - [sym__emphasis_open_star] = ACTIONS(960), - [sym__emphasis_open_underscore] = ACTIONS(960), + [235] = { + [sym_shortcut_link] = STATE(125), + [sym_full_reference_link] = STATE(125), + [sym_collapsed_reference_link] = STATE(125), + [sym_inline_link] = STATE(125), + [sym_image] = STATE(125), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym__soft_line_break] = STATE(125), + [sym_hard_line_break] = STATE(125), + [sym_html_tag] = STATE(125), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(125), + [sym__word] = STATE(125), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore] = STATE(125), + [aux_sym__inline_no_underscore] = STATE(125), + [sym__text_inline_no_underscore] = STATE(125), + [sym__emphasis_star] = STATE(744), + [sym__strong_emphasis_star] = STATE(125), + [sym__emphasis_underscore] = STATE(732), + [sym__strong_emphasis_underscore] = STATE(125), + [sym__code_span] = STATE(125), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_SLASH] = ACTIONS(1240), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_RBRACK] = ACTIONS(1240), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym__] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1255), + [anon_sym_LT_QMARK] = ACTIONS(1258), + [aux_sym__html_block_4_token1] = ACTIONS(1261), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1264), + [sym_backslash_escape] = ACTIONS(1267), + [sym_uri_autolink] = ACTIONS(1267), + [sym_email_autolink] = ACTIONS(1267), + [sym_entity_reference] = ACTIONS(1267), + [sym_numeric_character_reference] = ACTIONS(1267), + [sym__whitespace_ge_2] = ACTIONS(1270), + [aux_sym__whitespace_token1] = ACTIONS(1273), + [sym__word_no_digit] = ACTIONS(1267), + [sym__digits] = ACTIONS(1267), + [aux_sym__newline_token1] = ACTIONS(1276), + [sym__code_span_start] = ACTIONS(1279), + [sym__emphasis_open_star] = ACTIONS(1282), + [sym__emphasis_open_underscore] = ACTIONS(1285), + [sym__emphasis_close_star] = ACTIONS(1288), }, - [182] = { - [aux_sym__ignore_matching_tokens] = STATE(137), - [aux_sym__html_block_1_token1] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(966), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym__] = ACTIONS(966), - [anon_sym_BQUOTE] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(968), - [anon_sym_LT_QMARK] = ACTIONS(968), - [aux_sym__html_block_4_token1] = ACTIONS(968), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(966), - [aux_sym__html_block_6_token1] = ACTIONS(968), - [aux_sym__html_block_6_token2] = ACTIONS(966), - [sym__open_tag_html_block] = ACTIONS(966), - [sym__open_tag_html_block_newline] = ACTIONS(966), - [sym__closing_tag_html_block] = ACTIONS(966), - [sym__closing_tag_html_block_newline] = ACTIONS(966), - [sym_backslash_escape] = ACTIONS(966), - [sym_uri_autolink] = ACTIONS(966), - [sym_email_autolink] = ACTIONS(966), - [sym_entity_reference] = ACTIONS(966), - [sym_numeric_character_reference] = ACTIONS(966), - [sym__whitespace_ge_2] = ACTIONS(966), - [aux_sym__whitespace_token1] = ACTIONS(968), - [sym__word_no_digit] = ACTIONS(966), - [sym__digits] = ACTIONS(966), - [aux_sym__newline_token1] = ACTIONS(966), - [sym__block_close] = ACTIONS(966), - [sym__block_continuation] = ACTIONS(970), - [sym__block_quote_start] = ACTIONS(966), - [sym__indented_chunk_start] = ACTIONS(966), - [sym_atx_h1_marker] = ACTIONS(966), - [sym_atx_h2_marker] = ACTIONS(966), - [sym_atx_h3_marker] = ACTIONS(966), - [sym_atx_h4_marker] = ACTIONS(966), - [sym_atx_h5_marker] = ACTIONS(966), - [sym_atx_h6_marker] = ACTIONS(966), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(966), - [sym__thematic_break] = ACTIONS(966), - [sym__list_marker_minus] = ACTIONS(966), - [sym__list_marker_plus] = ACTIONS(966), - [sym__list_marker_star] = ACTIONS(966), - [sym__list_marker_parenthesis] = ACTIONS(966), - [sym__list_marker_dot] = ACTIONS(966), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_star_dont_interrupt] = ACTIONS(966), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(966), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(966), - [sym__fenced_code_block_start_backtick] = ACTIONS(966), - [sym__fenced_code_block_start_tilde] = ACTIONS(966), - [sym__blank_line_start] = ACTIONS(966), - [sym__code_span_start] = ACTIONS(966), - [sym__last_token_whitespace] = ACTIONS(970), - [sym__emphasis_open_star] = ACTIONS(966), - [sym__emphasis_open_underscore] = ACTIONS(966), + [236] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(921), + [aux_sym__html_block_1_token1] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_BSLASH] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym__] = ACTIONS(921), + [anon_sym_BQUOTE] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(923), + [anon_sym_LT_QMARK] = ACTIONS(923), + [aux_sym__html_block_4_token1] = ACTIONS(923), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(921), + [aux_sym__html_block_6_token1] = ACTIONS(923), + [aux_sym__html_block_6_token2] = ACTIONS(921), + [sym__open_tag_html_block] = ACTIONS(921), + [sym__open_tag_html_block_newline] = ACTIONS(921), + [sym__closing_tag_html_block] = ACTIONS(921), + [sym__closing_tag_html_block_newline] = ACTIONS(921), + [sym_backslash_escape] = ACTIONS(921), + [sym_uri_autolink] = ACTIONS(921), + [sym_email_autolink] = ACTIONS(921), + [sym_entity_reference] = ACTIONS(921), + [sym_numeric_character_reference] = ACTIONS(921), + [sym__whitespace_ge_2] = ACTIONS(921), + [aux_sym__whitespace_token1] = ACTIONS(923), + [sym__word_no_digit] = ACTIONS(921), + [sym__digits] = ACTIONS(921), + [aux_sym__newline_token1] = ACTIONS(921), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(921), + [sym__indented_chunk_start] = ACTIONS(921), + [sym_atx_h1_marker] = ACTIONS(921), + [sym_atx_h2_marker] = ACTIONS(921), + [sym_atx_h3_marker] = ACTIONS(921), + [sym_atx_h4_marker] = ACTIONS(921), + [sym_atx_h5_marker] = ACTIONS(921), + [sym_atx_h6_marker] = ACTIONS(921), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(921), + [sym__thematic_break] = ACTIONS(921), + [sym__list_marker_minus] = ACTIONS(921), + [sym__list_marker_plus] = ACTIONS(921), + [sym__list_marker_star] = ACTIONS(921), + [sym__list_marker_parenthesis] = ACTIONS(921), + [sym__list_marker_dot] = ACTIONS(921), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(921), + [sym__list_marker_star_dont_interrupt] = ACTIONS(921), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(921), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(921), + [sym__fenced_code_block_start_backtick] = ACTIONS(921), + [sym__fenced_code_block_start_tilde] = ACTIONS(921), + [sym__blank_line_start] = ACTIONS(921), + [sym__code_span_start] = ACTIONS(921), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(921), + [sym__emphasis_open_underscore] = ACTIONS(921), }, - [183] = { - [aux_sym__ignore_matching_tokens] = STATE(140), - [aux_sym__html_block_1_token1] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_COLON] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_BSLASH] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym__] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(974), - [anon_sym_LT_QMARK] = ACTIONS(974), - [aux_sym__html_block_4_token1] = ACTIONS(974), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(972), - [aux_sym__html_block_6_token1] = ACTIONS(974), - [aux_sym__html_block_6_token2] = ACTIONS(972), - [sym__open_tag_html_block] = ACTIONS(972), - [sym__open_tag_html_block_newline] = ACTIONS(972), - [sym__closing_tag_html_block] = ACTIONS(972), - [sym__closing_tag_html_block_newline] = ACTIONS(972), - [sym_backslash_escape] = ACTIONS(972), - [sym_uri_autolink] = ACTIONS(972), - [sym_email_autolink] = ACTIONS(972), - [sym_entity_reference] = ACTIONS(972), - [sym_numeric_character_reference] = ACTIONS(972), - [sym__whitespace_ge_2] = ACTIONS(972), - [aux_sym__whitespace_token1] = ACTIONS(974), - [sym__word_no_digit] = ACTIONS(972), - [sym__digits] = ACTIONS(972), - [aux_sym__newline_token1] = ACTIONS(972), - [sym__block_close] = ACTIONS(972), - [sym__block_continuation] = ACTIONS(976), - [sym__block_quote_start] = ACTIONS(972), - [sym__indented_chunk_start] = ACTIONS(972), - [sym_atx_h1_marker] = ACTIONS(972), - [sym_atx_h2_marker] = ACTIONS(972), - [sym_atx_h3_marker] = ACTIONS(972), - [sym_atx_h4_marker] = ACTIONS(972), - [sym_atx_h5_marker] = ACTIONS(972), - [sym_atx_h6_marker] = ACTIONS(972), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(972), - [sym__thematic_break] = ACTIONS(972), - [sym__list_marker_minus] = ACTIONS(972), - [sym__list_marker_plus] = ACTIONS(972), - [sym__list_marker_star] = ACTIONS(972), - [sym__list_marker_parenthesis] = ACTIONS(972), - [sym__list_marker_dot] = ACTIONS(972), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(972), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(972), - [sym__list_marker_star_dont_interrupt] = ACTIONS(972), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(972), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(972), - [sym__fenced_code_block_start_backtick] = ACTIONS(972), - [sym__fenced_code_block_start_tilde] = ACTIONS(972), - [sym__blank_line_start] = ACTIONS(972), - [sym__code_span_start] = ACTIONS(972), - [sym__last_token_whitespace] = ACTIONS(976), - [sym__emphasis_open_star] = ACTIONS(972), - [sym__emphasis_open_underscore] = ACTIONS(972), + [237] = { + [aux_sym__ignore_matching_tokens] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(962), + [aux_sym__html_block_1_token1] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_PERCENT] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_SLASH] = ACTIONS(962), + [anon_sym_COLON] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_BSLASH] = ACTIONS(964), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_CARET] = ACTIONS(962), + [anon_sym__] = ACTIONS(962), + [anon_sym_BQUOTE] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_TILDE] = ACTIONS(962), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(964), + [anon_sym_LT_QMARK] = ACTIONS(964), + [aux_sym__html_block_4_token1] = ACTIONS(964), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(962), + [aux_sym__html_block_6_token1] = ACTIONS(964), + [aux_sym__html_block_6_token2] = ACTIONS(962), + [sym__open_tag_html_block] = ACTIONS(962), + [sym__open_tag_html_block_newline] = ACTIONS(962), + [sym__closing_tag_html_block] = ACTIONS(962), + [sym__closing_tag_html_block_newline] = ACTIONS(962), + [sym_backslash_escape] = ACTIONS(962), + [sym_uri_autolink] = ACTIONS(962), + [sym_email_autolink] = ACTIONS(962), + [sym_entity_reference] = ACTIONS(962), + [sym_numeric_character_reference] = ACTIONS(962), + [sym__whitespace_ge_2] = ACTIONS(962), + [aux_sym__whitespace_token1] = ACTIONS(964), + [sym__word_no_digit] = ACTIONS(962), + [sym__digits] = ACTIONS(962), + [aux_sym__newline_token1] = ACTIONS(962), + [sym__block_continuation] = ACTIONS(1290), + [sym__block_quote_start] = ACTIONS(962), + [sym__indented_chunk_start] = ACTIONS(962), + [sym_atx_h1_marker] = ACTIONS(962), + [sym_atx_h2_marker] = ACTIONS(962), + [sym_atx_h3_marker] = ACTIONS(962), + [sym_atx_h4_marker] = ACTIONS(962), + [sym_atx_h5_marker] = ACTIONS(962), + [sym_atx_h6_marker] = ACTIONS(962), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(962), + [sym__thematic_break] = ACTIONS(962), + [sym__list_marker_minus] = ACTIONS(962), + [sym__list_marker_plus] = ACTIONS(962), + [sym__list_marker_star] = ACTIONS(962), + [sym__list_marker_parenthesis] = ACTIONS(962), + [sym__list_marker_dot] = ACTIONS(962), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(962), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(962), + [sym__list_marker_star_dont_interrupt] = ACTIONS(962), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(962), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(962), + [sym__fenced_code_block_start_backtick] = ACTIONS(962), + [sym__fenced_code_block_start_tilde] = ACTIONS(962), + [sym__blank_line_start] = ACTIONS(962), + [sym__code_span_start] = ACTIONS(962), + [sym__last_token_whitespace] = ACTIONS(1290), + [sym__emphasis_open_star] = ACTIONS(962), + [sym__emphasis_open_underscore] = ACTIONS(962), }, - [184] = { - [sym__blank_line] = STATE(184), - [sym__indented_chunk] = STATE(184), - [aux_sym_indented_code_block_repeat1] = STATE(184), - [aux_sym__html_block_1_token1] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_COLON] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_RBRACK] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym__] = ACTIONS(978), - [anon_sym_BQUOTE] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(980), - [anon_sym_LT_QMARK] = ACTIONS(980), - [aux_sym__html_block_4_token1] = ACTIONS(980), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(978), - [aux_sym__html_block_6_token1] = ACTIONS(980), - [aux_sym__html_block_6_token2] = ACTIONS(978), - [sym__open_tag_html_block] = ACTIONS(978), - [sym__open_tag_html_block_newline] = ACTIONS(978), - [sym__closing_tag_html_block] = ACTIONS(978), - [sym__closing_tag_html_block_newline] = ACTIONS(978), - [sym_backslash_escape] = ACTIONS(978), - [sym_uri_autolink] = ACTIONS(978), - [sym_email_autolink] = ACTIONS(978), - [sym_entity_reference] = ACTIONS(978), - [sym_numeric_character_reference] = ACTIONS(978), - [sym__whitespace_ge_2] = ACTIONS(978), - [aux_sym__whitespace_token1] = ACTIONS(980), - [sym__word_no_digit] = ACTIONS(978), - [sym__digits] = ACTIONS(978), - [aux_sym__newline_token1] = ACTIONS(978), - [sym__block_close] = ACTIONS(978), - [sym__block_quote_start] = ACTIONS(978), - [sym__indented_chunk_start] = ACTIONS(982), - [sym_atx_h1_marker] = ACTIONS(978), - [sym_atx_h2_marker] = ACTIONS(978), - [sym_atx_h3_marker] = ACTIONS(978), - [sym_atx_h4_marker] = ACTIONS(978), - [sym_atx_h5_marker] = ACTIONS(978), - [sym_atx_h6_marker] = ACTIONS(978), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(978), - [sym__thematic_break] = ACTIONS(978), - [sym__list_marker_minus] = ACTIONS(978), - [sym__list_marker_plus] = ACTIONS(978), - [sym__list_marker_star] = ACTIONS(978), - [sym__list_marker_parenthesis] = ACTIONS(978), - [sym__list_marker_dot] = ACTIONS(978), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(978), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(978), - [sym__list_marker_star_dont_interrupt] = ACTIONS(978), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(978), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(978), - [sym__fenced_code_block_start_backtick] = ACTIONS(978), - [sym__fenced_code_block_start_tilde] = ACTIONS(978), - [sym__blank_line_start] = ACTIONS(985), - [sym__code_span_start] = ACTIONS(978), - [sym__emphasis_open_star] = ACTIONS(978), - [sym__emphasis_open_underscore] = ACTIONS(978), + [238] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(907), + [aux_sym__html_block_1_token1] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_BSLASH] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym__] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_TILDE] = ACTIONS(907), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(909), + [anon_sym_LT_QMARK] = ACTIONS(909), + [aux_sym__html_block_4_token1] = ACTIONS(909), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(907), + [aux_sym__html_block_6_token1] = ACTIONS(909), + [aux_sym__html_block_6_token2] = ACTIONS(907), + [sym__open_tag_html_block] = ACTIONS(907), + [sym__open_tag_html_block_newline] = ACTIONS(907), + [sym__closing_tag_html_block] = ACTIONS(907), + [sym__closing_tag_html_block_newline] = ACTIONS(907), + [sym_backslash_escape] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = ACTIONS(907), + [sym_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym__whitespace_ge_2] = ACTIONS(907), + [aux_sym__whitespace_token1] = ACTIONS(909), + [sym__word_no_digit] = ACTIONS(907), + [sym__digits] = ACTIONS(907), + [aux_sym__newline_token1] = ACTIONS(907), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(907), + [sym__indented_chunk_start] = ACTIONS(907), + [sym_atx_h1_marker] = ACTIONS(907), + [sym_atx_h2_marker] = ACTIONS(907), + [sym_atx_h3_marker] = ACTIONS(907), + [sym_atx_h4_marker] = ACTIONS(907), + [sym_atx_h5_marker] = ACTIONS(907), + [sym_atx_h6_marker] = ACTIONS(907), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(907), + [sym__thematic_break] = ACTIONS(907), + [sym__list_marker_minus] = ACTIONS(907), + [sym__list_marker_plus] = ACTIONS(907), + [sym__list_marker_star] = ACTIONS(907), + [sym__list_marker_parenthesis] = ACTIONS(907), + [sym__list_marker_dot] = ACTIONS(907), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_star_dont_interrupt] = ACTIONS(907), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(907), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(907), + [sym__fenced_code_block_start_backtick] = ACTIONS(907), + [sym__fenced_code_block_start_tilde] = ACTIONS(907), + [sym__blank_line_start] = ACTIONS(907), + [sym__code_span_start] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), }, - [185] = { - [aux_sym__ignore_matching_tokens] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(732), - [aux_sym__html_block_1_token1] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_PERCENT] = ACTIONS(732), - [anon_sym_AMP] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_COMMA] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_COLON] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_EQ] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_BSLASH] = ACTIONS(734), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [anon_sym__] = ACTIONS(732), - [anon_sym_BQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(734), - [anon_sym_LT_QMARK] = ACTIONS(734), - [aux_sym__html_block_4_token1] = ACTIONS(734), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(732), - [aux_sym__html_block_6_token1] = ACTIONS(734), - [aux_sym__html_block_6_token2] = ACTIONS(732), - [sym__open_tag_html_block] = ACTIONS(732), - [sym__open_tag_html_block_newline] = ACTIONS(732), - [sym__closing_tag_html_block] = ACTIONS(732), - [sym__closing_tag_html_block_newline] = ACTIONS(732), - [sym_backslash_escape] = ACTIONS(732), - [sym_uri_autolink] = ACTIONS(732), - [sym_email_autolink] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(732), - [sym_numeric_character_reference] = ACTIONS(732), - [sym__whitespace_ge_2] = ACTIONS(732), - [aux_sym__whitespace_token1] = ACTIONS(734), - [sym__word_no_digit] = ACTIONS(732), - [sym__digits] = ACTIONS(732), - [aux_sym__newline_token1] = ACTIONS(732), - [sym__block_continuation] = ACTIONS(988), - [sym__block_quote_start] = ACTIONS(732), - [sym__indented_chunk_start] = ACTIONS(732), - [sym_atx_h1_marker] = ACTIONS(732), - [sym_atx_h2_marker] = ACTIONS(732), - [sym_atx_h3_marker] = ACTIONS(732), - [sym_atx_h4_marker] = ACTIONS(732), - [sym_atx_h5_marker] = ACTIONS(732), - [sym_atx_h6_marker] = ACTIONS(732), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(732), - [sym__thematic_break] = ACTIONS(732), - [sym__list_marker_minus] = ACTIONS(732), - [sym__list_marker_plus] = ACTIONS(732), - [sym__list_marker_star] = ACTIONS(732), - [sym__list_marker_parenthesis] = ACTIONS(732), - [sym__list_marker_dot] = ACTIONS(732), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(732), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(732), - [sym__list_marker_star_dont_interrupt] = ACTIONS(732), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(732), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(732), - [sym__fenced_code_block_start_backtick] = ACTIONS(732), - [sym__fenced_code_block_start_tilde] = ACTIONS(732), - [sym__blank_line_start] = ACTIONS(732), - [sym__code_span_start] = ACTIONS(732), - [sym__last_token_whitespace] = ACTIONS(988), - [sym__emphasis_open_star] = ACTIONS(732), - [sym__emphasis_open_underscore] = ACTIONS(732), + [239] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(1131), + [aux_sym__html_block_1_token1] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_DQUOTE] = ACTIONS(1131), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_COMMA] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(1131), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_COLON] = ACTIONS(1131), + [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_LT] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1131), + [anon_sym_GT] = ACTIONS(1131), + [anon_sym_QMARK] = ACTIONS(1131), + [anon_sym_AT] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1131), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_RBRACK] = ACTIONS(1131), + [anon_sym_CARET] = ACTIONS(1131), + [anon_sym__] = ACTIONS(1131), + [anon_sym_BQUOTE] = ACTIONS(1131), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_PIPE] = ACTIONS(1131), + [anon_sym_RBRACE] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1131), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1133), + [anon_sym_LT_QMARK] = ACTIONS(1133), + [aux_sym__html_block_4_token1] = ACTIONS(1133), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1131), + [aux_sym__html_block_6_token1] = ACTIONS(1133), + [aux_sym__html_block_6_token2] = ACTIONS(1131), + [sym__open_tag_html_block] = ACTIONS(1131), + [sym__open_tag_html_block_newline] = ACTIONS(1131), + [sym__closing_tag_html_block] = ACTIONS(1131), + [sym__closing_tag_html_block_newline] = ACTIONS(1131), + [sym_backslash_escape] = ACTIONS(1131), + [sym_uri_autolink] = ACTIONS(1131), + [sym_email_autolink] = ACTIONS(1131), + [sym_entity_reference] = ACTIONS(1131), + [sym_numeric_character_reference] = ACTIONS(1131), + [sym__whitespace_ge_2] = ACTIONS(1131), + [aux_sym__whitespace_token1] = ACTIONS(1133), + [sym__word_no_digit] = ACTIONS(1131), + [sym__digits] = ACTIONS(1131), + [aux_sym__newline_token1] = ACTIONS(1131), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(1131), + [sym__indented_chunk_start] = ACTIONS(1131), + [sym_atx_h1_marker] = ACTIONS(1131), + [sym_atx_h2_marker] = ACTIONS(1131), + [sym_atx_h3_marker] = ACTIONS(1131), + [sym_atx_h4_marker] = ACTIONS(1131), + [sym_atx_h5_marker] = ACTIONS(1131), + [sym_atx_h6_marker] = ACTIONS(1131), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1131), + [sym__thematic_break] = ACTIONS(1131), + [sym__list_marker_minus] = ACTIONS(1131), + [sym__list_marker_plus] = ACTIONS(1131), + [sym__list_marker_star] = ACTIONS(1131), + [sym__list_marker_parenthesis] = ACTIONS(1131), + [sym__list_marker_dot] = ACTIONS(1131), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1131), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1131), + [sym__fenced_code_block_start_backtick] = ACTIONS(1131), + [sym__fenced_code_block_start_tilde] = ACTIONS(1131), + [sym__blank_line_start] = ACTIONS(1131), + [sym__code_span_start] = ACTIONS(1131), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(1131), + [sym__emphasis_open_underscore] = ACTIONS(1131), }, - [186] = { - [aux_sym__ignore_matching_tokens] = STATE(142), - [aux_sym__html_block_1_token1] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_PERCENT] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_AT] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_BSLASH] = ACTIONS(992), - [anon_sym_RBRACK] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym__] = ACTIONS(990), - [anon_sym_BQUOTE] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(992), - [anon_sym_LT_QMARK] = ACTIONS(992), - [aux_sym__html_block_4_token1] = ACTIONS(992), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(990), - [aux_sym__html_block_6_token1] = ACTIONS(992), - [aux_sym__html_block_6_token2] = ACTIONS(990), - [sym__open_tag_html_block] = ACTIONS(990), - [sym__open_tag_html_block_newline] = ACTIONS(990), - [sym__closing_tag_html_block] = ACTIONS(990), - [sym__closing_tag_html_block_newline] = ACTIONS(990), - [sym_backslash_escape] = ACTIONS(990), - [sym_uri_autolink] = ACTIONS(990), - [sym_email_autolink] = ACTIONS(990), - [sym_entity_reference] = ACTIONS(990), - [sym_numeric_character_reference] = ACTIONS(990), - [sym__whitespace_ge_2] = ACTIONS(990), - [aux_sym__whitespace_token1] = ACTIONS(992), - [sym__word_no_digit] = ACTIONS(990), - [sym__digits] = ACTIONS(990), - [aux_sym__newline_token1] = ACTIONS(990), - [sym__block_close] = ACTIONS(990), - [sym__block_continuation] = ACTIONS(994), - [sym__block_quote_start] = ACTIONS(990), - [sym__indented_chunk_start] = ACTIONS(990), - [sym_atx_h1_marker] = ACTIONS(990), - [sym_atx_h2_marker] = ACTIONS(990), - [sym_atx_h3_marker] = ACTIONS(990), - [sym_atx_h4_marker] = ACTIONS(990), - [sym_atx_h5_marker] = ACTIONS(990), - [sym_atx_h6_marker] = ACTIONS(990), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(990), - [sym__thematic_break] = ACTIONS(990), - [sym__list_marker_minus] = ACTIONS(990), - [sym__list_marker_plus] = ACTIONS(990), - [sym__list_marker_star] = ACTIONS(990), - [sym__list_marker_parenthesis] = ACTIONS(990), - [sym__list_marker_dot] = ACTIONS(990), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(990), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(990), - [sym__list_marker_star_dont_interrupt] = ACTIONS(990), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(990), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(990), - [sym__fenced_code_block_start_backtick] = ACTIONS(990), - [sym__fenced_code_block_start_tilde] = ACTIONS(990), - [sym__blank_line_start] = ACTIONS(990), - [sym__code_span_start] = ACTIONS(990), - [sym__last_token_whitespace] = ACTIONS(994), - [sym__emphasis_open_star] = ACTIONS(990), - [sym__emphasis_open_underscore] = ACTIONS(990), + [240] = { + [aux_sym__ignore_matching_tokens] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(1017), + [aux_sym__html_block_1_token1] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_PERCENT] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_DOT] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1017), + [anon_sym_COLON] = ACTIONS(1017), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1017), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(1017), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_BSLASH] = ACTIONS(1019), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_CARET] = ACTIONS(1017), + [anon_sym__] = ACTIONS(1017), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1017), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1019), + [anon_sym_LT_QMARK] = ACTIONS(1019), + [aux_sym__html_block_4_token1] = ACTIONS(1019), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1017), + [aux_sym__html_block_6_token1] = ACTIONS(1019), + [aux_sym__html_block_6_token2] = ACTIONS(1017), + [sym__open_tag_html_block] = ACTIONS(1017), + [sym__open_tag_html_block_newline] = ACTIONS(1017), + [sym__closing_tag_html_block] = ACTIONS(1017), + [sym__closing_tag_html_block_newline] = ACTIONS(1017), + [sym_backslash_escape] = ACTIONS(1017), + [sym_uri_autolink] = ACTIONS(1017), + [sym_email_autolink] = ACTIONS(1017), + [sym_entity_reference] = ACTIONS(1017), + [sym_numeric_character_reference] = ACTIONS(1017), + [sym__whitespace_ge_2] = ACTIONS(1017), + [aux_sym__whitespace_token1] = ACTIONS(1019), + [sym__word_no_digit] = ACTIONS(1017), + [sym__digits] = ACTIONS(1017), + [aux_sym__newline_token1] = ACTIONS(1017), + [sym__block_continuation] = ACTIONS(1292), + [sym__block_quote_start] = ACTIONS(1017), + [sym__indented_chunk_start] = ACTIONS(1017), + [sym_atx_h1_marker] = ACTIONS(1017), + [sym_atx_h2_marker] = ACTIONS(1017), + [sym_atx_h3_marker] = ACTIONS(1017), + [sym_atx_h4_marker] = ACTIONS(1017), + [sym_atx_h5_marker] = ACTIONS(1017), + [sym_atx_h6_marker] = ACTIONS(1017), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1017), + [sym__thematic_break] = ACTIONS(1017), + [sym__list_marker_minus] = ACTIONS(1017), + [sym__list_marker_plus] = ACTIONS(1017), + [sym__list_marker_star] = ACTIONS(1017), + [sym__list_marker_parenthesis] = ACTIONS(1017), + [sym__list_marker_dot] = ACTIONS(1017), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1017), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1017), + [sym__fenced_code_block_start_backtick] = ACTIONS(1017), + [sym__fenced_code_block_start_tilde] = ACTIONS(1017), + [sym__blank_line_start] = ACTIONS(1017), + [sym__code_span_start] = ACTIONS(1017), + [sym__last_token_whitespace] = ACTIONS(1292), + [sym__emphasis_open_star] = ACTIONS(1017), + [sym__emphasis_open_underscore] = ACTIONS(1017), }, - [187] = { - [aux_sym__ignore_matching_tokens] = STATE(144), - [aux_sym__html_block_1_token1] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_PERCENT] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_SLASH] = ACTIONS(996), - [anon_sym_COLON] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_GT] = ACTIONS(996), - [anon_sym_QMARK] = ACTIONS(996), - [anon_sym_AT] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_BSLASH] = ACTIONS(998), - [anon_sym_RBRACK] = ACTIONS(996), - [anon_sym_CARET] = ACTIONS(996), - [anon_sym__] = ACTIONS(996), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(998), - [anon_sym_LT_QMARK] = ACTIONS(998), - [aux_sym__html_block_4_token1] = ACTIONS(998), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(996), - [aux_sym__html_block_6_token1] = ACTIONS(998), - [aux_sym__html_block_6_token2] = ACTIONS(996), - [sym__open_tag_html_block] = ACTIONS(996), - [sym__open_tag_html_block_newline] = ACTIONS(996), - [sym__closing_tag_html_block] = ACTIONS(996), - [sym__closing_tag_html_block_newline] = ACTIONS(996), - [sym_backslash_escape] = ACTIONS(996), - [sym_uri_autolink] = ACTIONS(996), - [sym_email_autolink] = ACTIONS(996), - [sym_entity_reference] = ACTIONS(996), - [sym_numeric_character_reference] = ACTIONS(996), - [sym__whitespace_ge_2] = ACTIONS(996), - [aux_sym__whitespace_token1] = ACTIONS(998), - [sym__word_no_digit] = ACTIONS(996), - [sym__digits] = ACTIONS(996), - [aux_sym__newline_token1] = ACTIONS(996), - [sym__block_close] = ACTIONS(996), - [sym__block_continuation] = ACTIONS(1000), - [sym__block_quote_start] = ACTIONS(996), - [sym__indented_chunk_start] = ACTIONS(996), - [sym_atx_h1_marker] = ACTIONS(996), - [sym_atx_h2_marker] = ACTIONS(996), - [sym_atx_h3_marker] = ACTIONS(996), - [sym_atx_h4_marker] = ACTIONS(996), - [sym_atx_h5_marker] = ACTIONS(996), - [sym_atx_h6_marker] = ACTIONS(996), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(996), - [sym__thematic_break] = ACTIONS(996), - [sym__list_marker_minus] = ACTIONS(996), - [sym__list_marker_plus] = ACTIONS(996), - [sym__list_marker_star] = ACTIONS(996), - [sym__list_marker_parenthesis] = ACTIONS(996), - [sym__list_marker_dot] = ACTIONS(996), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(996), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(996), - [sym__list_marker_star_dont_interrupt] = ACTIONS(996), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(996), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(996), - [sym__fenced_code_block_start_backtick] = ACTIONS(996), - [sym__fenced_code_block_start_tilde] = ACTIONS(996), - [sym__blank_line_start] = ACTIONS(996), - [sym__code_span_start] = ACTIONS(996), - [sym__last_token_whitespace] = ACTIONS(1000), - [sym__emphasis_open_star] = ACTIONS(996), - [sym__emphasis_open_underscore] = ACTIONS(996), + [241] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(1124), + [aux_sym__html_block_1_token1] = ACTIONS(1124), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1124), + [anon_sym_DOLLAR] = ACTIONS(1124), + [anon_sym_PERCENT] = ACTIONS(1124), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1124), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_DASH] = ACTIONS(1124), + [anon_sym_DOT] = ACTIONS(1124), + [anon_sym_SLASH] = ACTIONS(1124), + [anon_sym_COLON] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1124), + [anon_sym_GT] = ACTIONS(1124), + [anon_sym_QMARK] = ACTIONS(1124), + [anon_sym_AT] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_BSLASH] = ACTIONS(1126), + [anon_sym_RBRACK] = ACTIONS(1124), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym__] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_TILDE] = ACTIONS(1124), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1126), + [anon_sym_LT_QMARK] = ACTIONS(1126), + [aux_sym__html_block_4_token1] = ACTIONS(1126), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1124), + [aux_sym__html_block_6_token1] = ACTIONS(1126), + [aux_sym__html_block_6_token2] = ACTIONS(1124), + [sym__open_tag_html_block] = ACTIONS(1124), + [sym__open_tag_html_block_newline] = ACTIONS(1124), + [sym__closing_tag_html_block] = ACTIONS(1124), + [sym__closing_tag_html_block_newline] = ACTIONS(1124), + [sym_backslash_escape] = ACTIONS(1124), + [sym_uri_autolink] = ACTIONS(1124), + [sym_email_autolink] = ACTIONS(1124), + [sym_entity_reference] = ACTIONS(1124), + [sym_numeric_character_reference] = ACTIONS(1124), + [sym__whitespace_ge_2] = ACTIONS(1124), + [aux_sym__whitespace_token1] = ACTIONS(1126), + [sym__word_no_digit] = ACTIONS(1124), + [sym__digits] = ACTIONS(1124), + [aux_sym__newline_token1] = ACTIONS(1124), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(1124), + [sym__indented_chunk_start] = ACTIONS(1124), + [sym_atx_h1_marker] = ACTIONS(1124), + [sym_atx_h2_marker] = ACTIONS(1124), + [sym_atx_h3_marker] = ACTIONS(1124), + [sym_atx_h4_marker] = ACTIONS(1124), + [sym_atx_h5_marker] = ACTIONS(1124), + [sym_atx_h6_marker] = ACTIONS(1124), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1124), + [sym__thematic_break] = ACTIONS(1124), + [sym__list_marker_minus] = ACTIONS(1124), + [sym__list_marker_plus] = ACTIONS(1124), + [sym__list_marker_star] = ACTIONS(1124), + [sym__list_marker_parenthesis] = ACTIONS(1124), + [sym__list_marker_dot] = ACTIONS(1124), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1124), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1124), + [sym__fenced_code_block_start_backtick] = ACTIONS(1124), + [sym__fenced_code_block_start_tilde] = ACTIONS(1124), + [sym__blank_line_start] = ACTIONS(1124), + [sym__code_span_start] = ACTIONS(1124), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(1124), + [sym__emphasis_open_underscore] = ACTIONS(1124), }, - [188] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(732), - [aux_sym__html_block_1_token1] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_PERCENT] = ACTIONS(732), - [anon_sym_AMP] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_COMMA] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_COLON] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_EQ] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_BSLASH] = ACTIONS(734), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [anon_sym__] = ACTIONS(732), - [anon_sym_BQUOTE] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_TILDE] = ACTIONS(732), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(734), - [anon_sym_LT_QMARK] = ACTIONS(734), - [aux_sym__html_block_4_token1] = ACTIONS(734), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(732), - [aux_sym__html_block_6_token1] = ACTIONS(734), - [aux_sym__html_block_6_token2] = ACTIONS(732), - [sym__open_tag_html_block] = ACTIONS(732), - [sym__open_tag_html_block_newline] = ACTIONS(732), - [sym__closing_tag_html_block] = ACTIONS(732), - [sym__closing_tag_html_block_newline] = ACTIONS(732), - [sym_backslash_escape] = ACTIONS(732), - [sym_uri_autolink] = ACTIONS(732), - [sym_email_autolink] = ACTIONS(732), - [sym_entity_reference] = ACTIONS(732), - [sym_numeric_character_reference] = ACTIONS(732), - [sym__whitespace_ge_2] = ACTIONS(732), - [aux_sym__whitespace_token1] = ACTIONS(734), - [sym__word_no_digit] = ACTIONS(732), - [sym__digits] = ACTIONS(732), - [aux_sym__newline_token1] = ACTIONS(732), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(732), - [sym__indented_chunk_start] = ACTIONS(732), - [sym_atx_h1_marker] = ACTIONS(732), - [sym_atx_h2_marker] = ACTIONS(732), - [sym_atx_h3_marker] = ACTIONS(732), - [sym_atx_h4_marker] = ACTIONS(732), - [sym_atx_h5_marker] = ACTIONS(732), - [sym_atx_h6_marker] = ACTIONS(732), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(732), - [sym__thematic_break] = ACTIONS(732), - [sym__list_marker_minus] = ACTIONS(732), - [sym__list_marker_plus] = ACTIONS(732), - [sym__list_marker_star] = ACTIONS(732), - [sym__list_marker_parenthesis] = ACTIONS(732), - [sym__list_marker_dot] = ACTIONS(732), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(732), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(732), - [sym__list_marker_star_dont_interrupt] = ACTIONS(732), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(732), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(732), - [sym__fenced_code_block_start_backtick] = ACTIONS(732), - [sym__fenced_code_block_start_tilde] = ACTIONS(732), - [sym__blank_line_start] = ACTIONS(732), - [sym__code_span_start] = ACTIONS(732), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(732), - [sym__emphasis_open_underscore] = ACTIONS(732), + [242] = { + [sym_link_title] = STATE(2134), + [sym__whitespace] = STATE(2049), + [ts_builtin_sym_end] = ACTIONS(968), + [aux_sym__html_block_1_token1] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_AT] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_BSLASH] = ACTIONS(973), + [anon_sym_RBRACK] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym__] = ACTIONS(968), + [anon_sym_BQUOTE] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(973), + [anon_sym_LT_QMARK] = ACTIONS(973), + [aux_sym__html_block_4_token1] = ACTIONS(973), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(968), + [aux_sym__html_block_6_token1] = ACTIONS(973), + [aux_sym__html_block_6_token2] = ACTIONS(968), + [sym__open_tag_html_block] = ACTIONS(968), + [sym__open_tag_html_block_newline] = ACTIONS(968), + [sym__closing_tag_html_block] = ACTIONS(968), + [sym__closing_tag_html_block_newline] = ACTIONS(968), + [sym_backslash_escape] = ACTIONS(968), + [sym_uri_autolink] = ACTIONS(968), + [sym_email_autolink] = ACTIONS(968), + [sym_entity_reference] = ACTIONS(968), + [sym_numeric_character_reference] = ACTIONS(968), + [sym__whitespace_ge_2] = ACTIONS(981), + [aux_sym__whitespace_token1] = ACTIONS(984), + [sym__word_no_digit] = ACTIONS(968), + [sym__digits] = ACTIONS(968), + [aux_sym__newline_token1] = ACTIONS(968), + [sym__block_quote_start] = ACTIONS(968), + [sym__indented_chunk_start] = ACTIONS(968), + [sym_atx_h1_marker] = ACTIONS(968), + [sym_atx_h2_marker] = ACTIONS(968), + [sym_atx_h3_marker] = ACTIONS(968), + [sym_atx_h4_marker] = ACTIONS(968), + [sym_atx_h5_marker] = ACTIONS(968), + [sym_atx_h6_marker] = ACTIONS(968), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(968), + [sym__thematic_break] = ACTIONS(968), + [sym__list_marker_minus] = ACTIONS(968), + [sym__list_marker_plus] = ACTIONS(968), + [sym__list_marker_star] = ACTIONS(968), + [sym__list_marker_parenthesis] = ACTIONS(968), + [sym__list_marker_dot] = ACTIONS(968), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(968), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(968), + [sym__list_marker_star_dont_interrupt] = ACTIONS(968), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(968), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(968), + [sym__fenced_code_block_start_backtick] = ACTIONS(968), + [sym__fenced_code_block_start_tilde] = ACTIONS(968), + [sym__blank_line_start] = ACTIONS(968), + [sym__code_span_start] = ACTIONS(968), + [sym__emphasis_open_star] = ACTIONS(968), + [sym__emphasis_open_underscore] = ACTIONS(968), + [sym__no_indented_chunk] = ACTIONS(1294), }, - [189] = { - [aux_sym__ignore_matching_tokens] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(740), - [aux_sym__html_block_1_token1] = ACTIONS(740), - [anon_sym_BANG] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [anon_sym_POUND] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [anon_sym_PERCENT] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_SQUOTE] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_COMMA] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(740), - [anon_sym_COLON] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LT] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_QMARK] = ACTIONS(740), - [anon_sym_AT] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_BSLASH] = ACTIONS(742), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_CARET] = ACTIONS(740), - [anon_sym__] = ACTIONS(740), - [anon_sym_BQUOTE] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_TILDE] = ACTIONS(740), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(742), - [anon_sym_LT_QMARK] = ACTIONS(742), - [aux_sym__html_block_4_token1] = ACTIONS(742), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(740), - [aux_sym__html_block_6_token1] = ACTIONS(742), - [aux_sym__html_block_6_token2] = ACTIONS(740), - [sym__open_tag_html_block] = ACTIONS(740), - [sym__open_tag_html_block_newline] = ACTIONS(740), - [sym__closing_tag_html_block] = ACTIONS(740), - [sym__closing_tag_html_block_newline] = ACTIONS(740), - [sym_backslash_escape] = ACTIONS(740), - [sym_uri_autolink] = ACTIONS(740), - [sym_email_autolink] = ACTIONS(740), - [sym_entity_reference] = ACTIONS(740), - [sym_numeric_character_reference] = ACTIONS(740), - [sym__whitespace_ge_2] = ACTIONS(740), - [aux_sym__whitespace_token1] = ACTIONS(742), - [sym__word_no_digit] = ACTIONS(740), - [sym__digits] = ACTIONS(740), - [aux_sym__newline_token1] = ACTIONS(740), - [sym__block_continuation] = ACTIONS(1002), - [sym__block_quote_start] = ACTIONS(740), - [sym__indented_chunk_start] = ACTIONS(740), - [sym_atx_h1_marker] = ACTIONS(740), - [sym_atx_h2_marker] = ACTIONS(740), - [sym_atx_h3_marker] = ACTIONS(740), - [sym_atx_h4_marker] = ACTIONS(740), - [sym_atx_h5_marker] = ACTIONS(740), - [sym_atx_h6_marker] = ACTIONS(740), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(740), - [sym__thematic_break] = ACTIONS(740), - [sym__list_marker_minus] = ACTIONS(740), - [sym__list_marker_plus] = ACTIONS(740), - [sym__list_marker_star] = ACTIONS(740), - [sym__list_marker_parenthesis] = ACTIONS(740), - [sym__list_marker_dot] = ACTIONS(740), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(740), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(740), - [sym__list_marker_star_dont_interrupt] = ACTIONS(740), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(740), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(740), - [sym__fenced_code_block_start_backtick] = ACTIONS(740), - [sym__fenced_code_block_start_tilde] = ACTIONS(740), - [sym__blank_line_start] = ACTIONS(740), - [sym__code_span_start] = ACTIONS(740), - [sym__last_token_whitespace] = ACTIONS(1002), - [sym__emphasis_open_star] = ACTIONS(740), - [sym__emphasis_open_underscore] = ACTIONS(740), + [243] = { + [aux_sym__ignore_matching_tokens] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(907), + [aux_sym__html_block_1_token1] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_BSLASH] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym__] = ACTIONS(907), + [anon_sym_BQUOTE] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_TILDE] = ACTIONS(907), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(909), + [anon_sym_LT_QMARK] = ACTIONS(909), + [aux_sym__html_block_4_token1] = ACTIONS(909), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(907), + [aux_sym__html_block_6_token1] = ACTIONS(909), + [aux_sym__html_block_6_token2] = ACTIONS(907), + [sym__open_tag_html_block] = ACTIONS(907), + [sym__open_tag_html_block_newline] = ACTIONS(907), + [sym__closing_tag_html_block] = ACTIONS(907), + [sym__closing_tag_html_block_newline] = ACTIONS(907), + [sym_backslash_escape] = ACTIONS(907), + [sym_uri_autolink] = ACTIONS(907), + [sym_email_autolink] = ACTIONS(907), + [sym_entity_reference] = ACTIONS(907), + [sym_numeric_character_reference] = ACTIONS(907), + [sym__whitespace_ge_2] = ACTIONS(907), + [aux_sym__whitespace_token1] = ACTIONS(909), + [sym__word_no_digit] = ACTIONS(907), + [sym__digits] = ACTIONS(907), + [aux_sym__newline_token1] = ACTIONS(907), + [sym__block_continuation] = ACTIONS(1296), + [sym__block_quote_start] = ACTIONS(907), + [sym__indented_chunk_start] = ACTIONS(907), + [sym_atx_h1_marker] = ACTIONS(907), + [sym_atx_h2_marker] = ACTIONS(907), + [sym_atx_h3_marker] = ACTIONS(907), + [sym_atx_h4_marker] = ACTIONS(907), + [sym_atx_h5_marker] = ACTIONS(907), + [sym_atx_h6_marker] = ACTIONS(907), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(907), + [sym__thematic_break] = ACTIONS(907), + [sym__list_marker_minus] = ACTIONS(907), + [sym__list_marker_plus] = ACTIONS(907), + [sym__list_marker_star] = ACTIONS(907), + [sym__list_marker_parenthesis] = ACTIONS(907), + [sym__list_marker_dot] = ACTIONS(907), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(907), + [sym__list_marker_star_dont_interrupt] = ACTIONS(907), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(907), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(907), + [sym__fenced_code_block_start_backtick] = ACTIONS(907), + [sym__fenced_code_block_start_tilde] = ACTIONS(907), + [sym__blank_line_start] = ACTIONS(907), + [sym__code_span_start] = ACTIONS(907), + [sym__last_token_whitespace] = ACTIONS(1296), + [sym__emphasis_open_star] = ACTIONS(907), + [sym__emphasis_open_underscore] = ACTIONS(907), }, - [190] = { - [aux_sym__ignore_matching_tokens] = STATE(147), - [aux_sym__html_block_1_token1] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1004), - [anon_sym_AT] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_BSLASH] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym__] = ACTIONS(1004), - [anon_sym_BQUOTE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1006), - [anon_sym_LT_QMARK] = ACTIONS(1006), - [aux_sym__html_block_4_token1] = ACTIONS(1006), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1004), - [aux_sym__html_block_6_token1] = ACTIONS(1006), - [aux_sym__html_block_6_token2] = ACTIONS(1004), - [sym__open_tag_html_block] = ACTIONS(1004), - [sym__open_tag_html_block_newline] = ACTIONS(1004), - [sym__closing_tag_html_block] = ACTIONS(1004), - [sym__closing_tag_html_block_newline] = ACTIONS(1004), - [sym_backslash_escape] = ACTIONS(1004), - [sym_uri_autolink] = ACTIONS(1004), - [sym_email_autolink] = ACTIONS(1004), - [sym_entity_reference] = ACTIONS(1004), - [sym_numeric_character_reference] = ACTIONS(1004), - [sym__whitespace_ge_2] = ACTIONS(1004), - [aux_sym__whitespace_token1] = ACTIONS(1006), - [sym__word_no_digit] = ACTIONS(1004), - [sym__digits] = ACTIONS(1004), - [aux_sym__newline_token1] = ACTIONS(1004), - [sym__block_close] = ACTIONS(1004), - [sym__block_continuation] = ACTIONS(1008), - [sym__block_quote_start] = ACTIONS(1004), - [sym__indented_chunk_start] = ACTIONS(1004), - [sym_atx_h1_marker] = ACTIONS(1004), - [sym_atx_h2_marker] = ACTIONS(1004), - [sym_atx_h3_marker] = ACTIONS(1004), - [sym_atx_h4_marker] = ACTIONS(1004), - [sym_atx_h5_marker] = ACTIONS(1004), - [sym_atx_h6_marker] = ACTIONS(1004), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1004), - [sym__thematic_break] = ACTIONS(1004), - [sym__list_marker_minus] = ACTIONS(1004), - [sym__list_marker_plus] = ACTIONS(1004), - [sym__list_marker_star] = ACTIONS(1004), - [sym__list_marker_parenthesis] = ACTIONS(1004), - [sym__list_marker_dot] = ACTIONS(1004), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1004), - [sym__fenced_code_block_start_backtick] = ACTIONS(1004), - [sym__fenced_code_block_start_tilde] = ACTIONS(1004), - [sym__blank_line_start] = ACTIONS(1004), - [sym__code_span_start] = ACTIONS(1004), - [sym__last_token_whitespace] = ACTIONS(1008), - [sym__emphasis_open_star] = ACTIONS(1004), - [sym__emphasis_open_underscore] = ACTIONS(1004), + [244] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(867), + [aux_sym__html_block_1_token1] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_RPAREN] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_COLON] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_BSLASH] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym__] = ACTIONS(867), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), + [anon_sym_LT_QMARK] = ACTIONS(869), + [aux_sym__html_block_4_token1] = ACTIONS(869), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), + [aux_sym__html_block_6_token1] = ACTIONS(869), + [aux_sym__html_block_6_token2] = ACTIONS(867), + [sym__open_tag_html_block] = ACTIONS(867), + [sym__open_tag_html_block_newline] = ACTIONS(867), + [sym__closing_tag_html_block] = ACTIONS(867), + [sym__closing_tag_html_block_newline] = ACTIONS(867), + [sym_backslash_escape] = ACTIONS(867), + [sym_uri_autolink] = ACTIONS(867), + [sym_email_autolink] = ACTIONS(867), + [sym_entity_reference] = ACTIONS(867), + [sym_numeric_character_reference] = ACTIONS(867), + [sym__whitespace_ge_2] = ACTIONS(867), + [aux_sym__whitespace_token1] = ACTIONS(869), + [sym__word_no_digit] = ACTIONS(867), + [sym__digits] = ACTIONS(867), + [aux_sym__newline_token1] = ACTIONS(867), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(867), + [sym__indented_chunk_start] = ACTIONS(867), + [sym_atx_h1_marker] = ACTIONS(867), + [sym_atx_h2_marker] = ACTIONS(867), + [sym_atx_h3_marker] = ACTIONS(867), + [sym_atx_h4_marker] = ACTIONS(867), + [sym_atx_h5_marker] = ACTIONS(867), + [sym_atx_h6_marker] = ACTIONS(867), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(867), + [sym__thematic_break] = ACTIONS(867), + [sym__list_marker_minus] = ACTIONS(867), + [sym__list_marker_plus] = ACTIONS(867), + [sym__list_marker_star] = ACTIONS(867), + [sym__list_marker_parenthesis] = ACTIONS(867), + [sym__list_marker_dot] = ACTIONS(867), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_star_dont_interrupt] = ACTIONS(867), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), + [sym__fenced_code_block_start_backtick] = ACTIONS(867), + [sym__fenced_code_block_start_tilde] = ACTIONS(867), + [sym__blank_line_start] = ACTIONS(867), + [sym__code_span_start] = ACTIONS(867), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(867), + [sym__emphasis_open_underscore] = ACTIONS(867), }, - [191] = { - [aux_sym__ignore_matching_tokens] = STATE(149), - [aux_sym__html_block_1_token1] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(625), - [anon_sym_SQUOTE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(625), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(623), - [anon_sym_BSLASH] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym__] = ACTIONS(623), - [anon_sym_BQUOTE] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(625), - [anon_sym_LT_QMARK] = ACTIONS(625), - [aux_sym__html_block_4_token1] = ACTIONS(625), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(623), - [aux_sym__html_block_6_token1] = ACTIONS(625), - [aux_sym__html_block_6_token2] = ACTIONS(623), - [sym__open_tag_html_block] = ACTIONS(623), - [sym__open_tag_html_block_newline] = ACTIONS(623), - [sym__closing_tag_html_block] = ACTIONS(623), - [sym__closing_tag_html_block_newline] = ACTIONS(623), - [sym_backslash_escape] = ACTIONS(623), - [sym_uri_autolink] = ACTIONS(623), - [sym_email_autolink] = ACTIONS(623), - [sym_entity_reference] = ACTIONS(623), - [sym_numeric_character_reference] = ACTIONS(623), - [sym__whitespace_ge_2] = ACTIONS(623), - [aux_sym__whitespace_token1] = ACTIONS(625), - [sym__word_no_digit] = ACTIONS(623), - [sym__digits] = ACTIONS(623), - [aux_sym__newline_token1] = ACTIONS(623), - [sym__block_close] = ACTIONS(623), - [sym__block_continuation] = ACTIONS(1010), - [sym__block_quote_start] = ACTIONS(623), - [sym__indented_chunk_start] = ACTIONS(623), - [sym_atx_h1_marker] = ACTIONS(623), - [sym_atx_h2_marker] = ACTIONS(623), - [sym_atx_h3_marker] = ACTIONS(623), - [sym_atx_h4_marker] = ACTIONS(623), - [sym_atx_h5_marker] = ACTIONS(623), - [sym_atx_h6_marker] = ACTIONS(623), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(623), - [sym__thematic_break] = ACTIONS(623), - [sym__list_marker_minus] = ACTIONS(623), - [sym__list_marker_plus] = ACTIONS(623), - [sym__list_marker_star] = ACTIONS(623), - [sym__list_marker_parenthesis] = ACTIONS(623), - [sym__list_marker_dot] = ACTIONS(623), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(623), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(623), - [sym__list_marker_star_dont_interrupt] = ACTIONS(623), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(623), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(623), - [sym__fenced_code_block_start_backtick] = ACTIONS(623), - [sym__fenced_code_block_start_tilde] = ACTIONS(623), - [sym__blank_line_start] = ACTIONS(623), - [sym__code_span_start] = ACTIONS(623), - [sym__last_token_whitespace] = ACTIONS(1010), - [sym__emphasis_open_star] = ACTIONS(623), - [sym__emphasis_open_underscore] = ACTIONS(623), + [245] = { + [sym_shortcut_link] = STATE(245), + [sym_full_reference_link] = STATE(245), + [sym_collapsed_reference_link] = STATE(245), + [sym_inline_link] = STATE(245), + [sym_image] = STATE(245), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym__soft_line_break] = STATE(245), + [sym_hard_line_break] = STATE(245), + [sym_html_tag] = STATE(245), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(245), + [sym__word] = STATE(245), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star] = STATE(245), + [aux_sym__inline_no_star] = STATE(245), + [sym__text_inline_no_star] = STATE(245), + [sym__emphasis_star] = STATE(747), + [sym__strong_emphasis_star] = STATE(245), + [sym__emphasis_underscore] = STATE(747), + [sym__strong_emphasis_underscore] = STATE(245), + [sym__code_span] = STATE(245), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1301), + [anon_sym_PERCENT] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_SLASH] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1301), + [anon_sym_AT] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_BSLASH] = ACTIONS(1313), + [anon_sym_RBRACK] = ACTIONS(1301), + [anon_sym_CARET] = ACTIONS(1301), + [anon_sym__] = ACTIONS(1301), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1316), + [anon_sym_LT_QMARK] = ACTIONS(1319), + [aux_sym__html_block_4_token1] = ACTIONS(1322), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1325), + [sym_backslash_escape] = ACTIONS(1328), + [sym_uri_autolink] = ACTIONS(1328), + [sym_email_autolink] = ACTIONS(1328), + [sym_entity_reference] = ACTIONS(1328), + [sym_numeric_character_reference] = ACTIONS(1328), + [sym__whitespace_ge_2] = ACTIONS(1331), + [aux_sym__whitespace_token1] = ACTIONS(1334), + [sym__word_no_digit] = ACTIONS(1328), + [sym__digits] = ACTIONS(1328), + [aux_sym__newline_token1] = ACTIONS(1337), + [sym__code_span_start] = ACTIONS(1340), + [sym__emphasis_open_star] = ACTIONS(1343), + [sym__emphasis_open_underscore] = ACTIONS(1346), + [sym__emphasis_close_star] = ACTIONS(1349), }, - [192] = { - [aux_sym__ignore_matching_tokens] = STATE(152), - [aux_sym__html_block_1_token1] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_PERCENT] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_COLON] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1012), - [anon_sym_AT] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_BSLASH] = ACTIONS(1014), - [anon_sym_RBRACK] = ACTIONS(1012), - [anon_sym_CARET] = ACTIONS(1012), - [anon_sym__] = ACTIONS(1012), - [anon_sym_BQUOTE] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_TILDE] = ACTIONS(1012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1014), - [anon_sym_LT_QMARK] = ACTIONS(1014), - [aux_sym__html_block_4_token1] = ACTIONS(1014), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1012), - [aux_sym__html_block_6_token1] = ACTIONS(1014), - [aux_sym__html_block_6_token2] = ACTIONS(1012), - [sym__open_tag_html_block] = ACTIONS(1012), - [sym__open_tag_html_block_newline] = ACTIONS(1012), - [sym__closing_tag_html_block] = ACTIONS(1012), - [sym__closing_tag_html_block_newline] = ACTIONS(1012), - [sym_backslash_escape] = ACTIONS(1012), - [sym_uri_autolink] = ACTIONS(1012), - [sym_email_autolink] = ACTIONS(1012), - [sym_entity_reference] = ACTIONS(1012), - [sym_numeric_character_reference] = ACTIONS(1012), - [sym__whitespace_ge_2] = ACTIONS(1012), - [aux_sym__whitespace_token1] = ACTIONS(1014), - [sym__word_no_digit] = ACTIONS(1012), - [sym__digits] = ACTIONS(1012), - [aux_sym__newline_token1] = ACTIONS(1012), - [sym__block_close] = ACTIONS(1012), - [sym__block_continuation] = ACTIONS(1016), - [sym__block_quote_start] = ACTIONS(1012), - [sym__indented_chunk_start] = ACTIONS(1012), - [sym_atx_h1_marker] = ACTIONS(1012), - [sym_atx_h2_marker] = ACTIONS(1012), - [sym_atx_h3_marker] = ACTIONS(1012), - [sym_atx_h4_marker] = ACTIONS(1012), - [sym_atx_h5_marker] = ACTIONS(1012), - [sym_atx_h6_marker] = ACTIONS(1012), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1012), - [sym__thematic_break] = ACTIONS(1012), - [sym__list_marker_minus] = ACTIONS(1012), - [sym__list_marker_plus] = ACTIONS(1012), - [sym__list_marker_star] = ACTIONS(1012), - [sym__list_marker_parenthesis] = ACTIONS(1012), - [sym__list_marker_dot] = ACTIONS(1012), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1012), - [sym__fenced_code_block_start_backtick] = ACTIONS(1012), - [sym__fenced_code_block_start_tilde] = ACTIONS(1012), - [sym__blank_line_start] = ACTIONS(1012), - [sym__code_span_start] = ACTIONS(1012), - [sym__last_token_whitespace] = ACTIONS(1016), - [sym__emphasis_open_star] = ACTIONS(1012), - [sym__emphasis_open_underscore] = ACTIONS(1012), + [246] = { + [aux_sym__ignore_matching_tokens] = STATE(239), + [ts_builtin_sym_end] = ACTIONS(956), + [aux_sym__html_block_1_token1] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_BSLASH] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym__] = ACTIONS(956), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(958), + [anon_sym_LT_QMARK] = ACTIONS(958), + [aux_sym__html_block_4_token1] = ACTIONS(958), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(956), + [aux_sym__html_block_6_token1] = ACTIONS(958), + [aux_sym__html_block_6_token2] = ACTIONS(956), + [sym__open_tag_html_block] = ACTIONS(956), + [sym__open_tag_html_block_newline] = ACTIONS(956), + [sym__closing_tag_html_block] = ACTIONS(956), + [sym__closing_tag_html_block_newline] = ACTIONS(956), + [sym_backslash_escape] = ACTIONS(956), + [sym_uri_autolink] = ACTIONS(956), + [sym_email_autolink] = ACTIONS(956), + [sym_entity_reference] = ACTIONS(956), + [sym_numeric_character_reference] = ACTIONS(956), + [sym__whitespace_ge_2] = ACTIONS(956), + [aux_sym__whitespace_token1] = ACTIONS(958), + [sym__word_no_digit] = ACTIONS(956), + [sym__digits] = ACTIONS(956), + [aux_sym__newline_token1] = ACTIONS(956), + [sym__block_continuation] = ACTIONS(1351), + [sym__block_quote_start] = ACTIONS(956), + [sym__indented_chunk_start] = ACTIONS(956), + [sym_atx_h1_marker] = ACTIONS(956), + [sym_atx_h2_marker] = ACTIONS(956), + [sym_atx_h3_marker] = ACTIONS(956), + [sym_atx_h4_marker] = ACTIONS(956), + [sym_atx_h5_marker] = ACTIONS(956), + [sym_atx_h6_marker] = ACTIONS(956), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(956), + [sym__thematic_break] = ACTIONS(956), + [sym__list_marker_minus] = ACTIONS(956), + [sym__list_marker_plus] = ACTIONS(956), + [sym__list_marker_star] = ACTIONS(956), + [sym__list_marker_parenthesis] = ACTIONS(956), + [sym__list_marker_dot] = ACTIONS(956), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_star_dont_interrupt] = ACTIONS(956), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(956), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(956), + [sym__fenced_code_block_start_backtick] = ACTIONS(956), + [sym__fenced_code_block_start_tilde] = ACTIONS(956), + [sym__blank_line_start] = ACTIONS(956), + [sym__code_span_start] = ACTIONS(956), + [sym__last_token_whitespace] = ACTIONS(1351), + [sym__emphasis_open_star] = ACTIONS(956), + [sym__emphasis_open_underscore] = ACTIONS(956), }, - [193] = { - [aux_sym__ignore_matching_tokens] = STATE(197), + [247] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(956), + [aux_sym__html_block_1_token1] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(956), + [anon_sym_AMP] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DASH] = ACTIONS(956), + [anon_sym_DOT] = ACTIONS(956), + [anon_sym_SLASH] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LT] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_BSLASH] = ACTIONS(958), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_CARET] = ACTIONS(956), + [anon_sym__] = ACTIONS(956), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(958), + [anon_sym_LT_QMARK] = ACTIONS(958), + [aux_sym__html_block_4_token1] = ACTIONS(958), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(956), + [aux_sym__html_block_6_token1] = ACTIONS(958), + [aux_sym__html_block_6_token2] = ACTIONS(956), + [sym__open_tag_html_block] = ACTIONS(956), + [sym__open_tag_html_block_newline] = ACTIONS(956), + [sym__closing_tag_html_block] = ACTIONS(956), + [sym__closing_tag_html_block_newline] = ACTIONS(956), + [sym_backslash_escape] = ACTIONS(956), + [sym_uri_autolink] = ACTIONS(956), + [sym_email_autolink] = ACTIONS(956), + [sym_entity_reference] = ACTIONS(956), + [sym_numeric_character_reference] = ACTIONS(956), + [sym__whitespace_ge_2] = ACTIONS(956), + [aux_sym__whitespace_token1] = ACTIONS(958), + [sym__word_no_digit] = ACTIONS(956), + [sym__digits] = ACTIONS(956), + [aux_sym__newline_token1] = ACTIONS(956), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(956), + [sym__indented_chunk_start] = ACTIONS(956), + [sym_atx_h1_marker] = ACTIONS(956), + [sym_atx_h2_marker] = ACTIONS(956), + [sym_atx_h3_marker] = ACTIONS(956), + [sym_atx_h4_marker] = ACTIONS(956), + [sym_atx_h5_marker] = ACTIONS(956), + [sym_atx_h6_marker] = ACTIONS(956), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(956), + [sym__thematic_break] = ACTIONS(956), + [sym__list_marker_minus] = ACTIONS(956), + [sym__list_marker_plus] = ACTIONS(956), + [sym__list_marker_star] = ACTIONS(956), + [sym__list_marker_parenthesis] = ACTIONS(956), + [sym__list_marker_dot] = ACTIONS(956), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(956), + [sym__list_marker_star_dont_interrupt] = ACTIONS(956), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(956), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(956), + [sym__fenced_code_block_start_backtick] = ACTIONS(956), + [sym__fenced_code_block_start_tilde] = ACTIONS(956), + [sym__blank_line_start] = ACTIONS(956), + [sym__code_span_start] = ACTIONS(956), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(956), + [sym__emphasis_open_underscore] = ACTIONS(956), + }, + [248] = { + [aux_sym__ignore_matching_tokens] = STATE(241), + [ts_builtin_sym_end] = ACTIONS(950), + [aux_sym__html_block_1_token1] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_LT] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_BSLASH] = ACTIONS(952), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(952), + [anon_sym_LT_QMARK] = ACTIONS(952), + [aux_sym__html_block_4_token1] = ACTIONS(952), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(950), + [aux_sym__html_block_6_token1] = ACTIONS(952), + [aux_sym__html_block_6_token2] = ACTIONS(950), + [sym__open_tag_html_block] = ACTIONS(950), + [sym__open_tag_html_block_newline] = ACTIONS(950), + [sym__closing_tag_html_block] = ACTIONS(950), + [sym__closing_tag_html_block_newline] = ACTIONS(950), + [sym_backslash_escape] = ACTIONS(950), + [sym_uri_autolink] = ACTIONS(950), + [sym_email_autolink] = ACTIONS(950), + [sym_entity_reference] = ACTIONS(950), + [sym_numeric_character_reference] = ACTIONS(950), + [sym__whitespace_ge_2] = ACTIONS(950), + [aux_sym__whitespace_token1] = ACTIONS(952), + [sym__word_no_digit] = ACTIONS(950), + [sym__digits] = ACTIONS(950), + [aux_sym__newline_token1] = ACTIONS(950), + [sym__block_continuation] = ACTIONS(1353), + [sym__block_quote_start] = ACTIONS(950), + [sym__indented_chunk_start] = ACTIONS(950), + [sym_atx_h1_marker] = ACTIONS(950), + [sym_atx_h2_marker] = ACTIONS(950), + [sym_atx_h3_marker] = ACTIONS(950), + [sym_atx_h4_marker] = ACTIONS(950), + [sym_atx_h5_marker] = ACTIONS(950), + [sym_atx_h6_marker] = ACTIONS(950), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(950), + [sym__thematic_break] = ACTIONS(950), + [sym__list_marker_minus] = ACTIONS(950), + [sym__list_marker_plus] = ACTIONS(950), + [sym__list_marker_star] = ACTIONS(950), + [sym__list_marker_parenthesis] = ACTIONS(950), + [sym__list_marker_dot] = ACTIONS(950), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_star_dont_interrupt] = ACTIONS(950), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(950), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(950), + [sym__fenced_code_block_start_backtick] = ACTIONS(950), + [sym__fenced_code_block_start_tilde] = ACTIONS(950), + [sym__blank_line_start] = ACTIONS(950), + [sym__code_span_start] = ACTIONS(950), + [sym__last_token_whitespace] = ACTIONS(1353), + [sym__emphasis_open_star] = ACTIONS(950), + [sym__emphasis_open_underscore] = ACTIONS(950), + }, + [249] = { + [sym_shortcut_link] = STATE(249), + [sym_full_reference_link] = STATE(249), + [sym_collapsed_reference_link] = STATE(249), + [sym_inline_link] = STATE(249), + [sym_image] = STATE(249), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym__soft_line_break] = STATE(249), + [sym_hard_line_break] = STATE(249), + [sym_html_tag] = STATE(249), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(249), + [sym__word] = STATE(249), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore] = STATE(249), + [aux_sym__inline_no_underscore] = STATE(249), + [sym__text_inline_no_underscore] = STATE(249), + [sym__emphasis_star] = STATE(744), + [sym__strong_emphasis_star] = STATE(249), + [sym__emphasis_underscore] = STATE(744), + [sym__strong_emphasis_underscore] = STATE(249), + [sym__code_span] = STATE(249), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_BSLASH] = ACTIONS(1370), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym__] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1373), + [anon_sym_LT_QMARK] = ACTIONS(1376), + [aux_sym__html_block_4_token1] = ACTIONS(1379), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1382), + [sym_backslash_escape] = ACTIONS(1385), + [sym_uri_autolink] = ACTIONS(1385), + [sym_email_autolink] = ACTIONS(1385), + [sym_entity_reference] = ACTIONS(1385), + [sym_numeric_character_reference] = ACTIONS(1385), + [sym__whitespace_ge_2] = ACTIONS(1388), + [aux_sym__whitespace_token1] = ACTIONS(1391), + [sym__word_no_digit] = ACTIONS(1385), + [sym__digits] = ACTIONS(1385), + [aux_sym__newline_token1] = ACTIONS(1394), + [sym__code_span_start] = ACTIONS(1397), + [sym__emphasis_open_star] = ACTIONS(1400), + [sym__emphasis_open_underscore] = ACTIONS(1403), + [sym__emphasis_close_underscore] = ACTIONS(1406), + }, + [250] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(950), + [aux_sym__html_block_1_token1] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_COLON] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_LT] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_GT] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_BSLASH] = ACTIONS(952), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(952), + [anon_sym_LT_QMARK] = ACTIONS(952), + [aux_sym__html_block_4_token1] = ACTIONS(952), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(950), + [aux_sym__html_block_6_token1] = ACTIONS(952), + [aux_sym__html_block_6_token2] = ACTIONS(950), + [sym__open_tag_html_block] = ACTIONS(950), + [sym__open_tag_html_block_newline] = ACTIONS(950), + [sym__closing_tag_html_block] = ACTIONS(950), + [sym__closing_tag_html_block_newline] = ACTIONS(950), + [sym_backslash_escape] = ACTIONS(950), + [sym_uri_autolink] = ACTIONS(950), + [sym_email_autolink] = ACTIONS(950), + [sym_entity_reference] = ACTIONS(950), + [sym_numeric_character_reference] = ACTIONS(950), + [sym__whitespace_ge_2] = ACTIONS(950), + [aux_sym__whitespace_token1] = ACTIONS(952), + [sym__word_no_digit] = ACTIONS(950), + [sym__digits] = ACTIONS(950), + [aux_sym__newline_token1] = ACTIONS(950), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(950), + [sym__indented_chunk_start] = ACTIONS(950), + [sym_atx_h1_marker] = ACTIONS(950), + [sym_atx_h2_marker] = ACTIONS(950), + [sym_atx_h3_marker] = ACTIONS(950), + [sym_atx_h4_marker] = ACTIONS(950), + [sym_atx_h5_marker] = ACTIONS(950), + [sym_atx_h6_marker] = ACTIONS(950), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(950), + [sym__thematic_break] = ACTIONS(950), + [sym__list_marker_minus] = ACTIONS(950), + [sym__list_marker_plus] = ACTIONS(950), + [sym__list_marker_star] = ACTIONS(950), + [sym__list_marker_parenthesis] = ACTIONS(950), + [sym__list_marker_dot] = ACTIONS(950), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(950), + [sym__list_marker_star_dont_interrupt] = ACTIONS(950), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(950), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(950), + [sym__fenced_code_block_start_backtick] = ACTIONS(950), + [sym__fenced_code_block_start_tilde] = ACTIONS(950), + [sym__blank_line_start] = ACTIONS(950), + [sym__code_span_start] = ACTIONS(950), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(950), + [sym__emphasis_open_underscore] = ACTIONS(950), + }, + [251] = { + [aux_sym__ignore_matching_tokens] = STATE(238), + [ts_builtin_sym_end] = ACTIONS(1053), + [aux_sym__html_block_1_token1] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [anon_sym_POUND] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_PERCENT] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_RPAREN] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_COLON] = ACTIONS(1053), + [anon_sym_SEMI] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_BSLASH] = ACTIONS(1055), + [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1053), + [anon_sym_BQUOTE] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_TILDE] = ACTIONS(1053), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1055), + [anon_sym_LT_QMARK] = ACTIONS(1055), + [aux_sym__html_block_4_token1] = ACTIONS(1055), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1053), + [aux_sym__html_block_6_token1] = ACTIONS(1055), + [aux_sym__html_block_6_token2] = ACTIONS(1053), + [sym__open_tag_html_block] = ACTIONS(1053), + [sym__open_tag_html_block_newline] = ACTIONS(1053), + [sym__closing_tag_html_block] = ACTIONS(1053), + [sym__closing_tag_html_block_newline] = ACTIONS(1053), + [sym_backslash_escape] = ACTIONS(1053), + [sym_uri_autolink] = ACTIONS(1053), + [sym_email_autolink] = ACTIONS(1053), + [sym_entity_reference] = ACTIONS(1053), + [sym_numeric_character_reference] = ACTIONS(1053), + [sym__whitespace_ge_2] = ACTIONS(1053), + [aux_sym__whitespace_token1] = ACTIONS(1055), + [sym__word_no_digit] = ACTIONS(1053), + [sym__digits] = ACTIONS(1053), + [aux_sym__newline_token1] = ACTIONS(1053), + [sym__block_continuation] = ACTIONS(1408), + [sym__block_quote_start] = ACTIONS(1053), + [sym__indented_chunk_start] = ACTIONS(1053), + [sym_atx_h1_marker] = ACTIONS(1053), + [sym_atx_h2_marker] = ACTIONS(1053), + [sym_atx_h3_marker] = ACTIONS(1053), + [sym_atx_h4_marker] = ACTIONS(1053), + [sym_atx_h5_marker] = ACTIONS(1053), + [sym_atx_h6_marker] = ACTIONS(1053), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1053), + [sym__thematic_break] = ACTIONS(1053), + [sym__list_marker_minus] = ACTIONS(1053), + [sym__list_marker_plus] = ACTIONS(1053), + [sym__list_marker_star] = ACTIONS(1053), + [sym__list_marker_parenthesis] = ACTIONS(1053), + [sym__list_marker_dot] = ACTIONS(1053), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1053), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1053), + [sym__fenced_code_block_start_backtick] = ACTIONS(1053), + [sym__fenced_code_block_start_tilde] = ACTIONS(1053), + [sym__blank_line_start] = ACTIONS(1053), + [sym__code_span_start] = ACTIONS(1053), + [sym__last_token_whitespace] = ACTIONS(1408), + [sym__emphasis_open_star] = ACTIONS(1053), + [sym__emphasis_open_underscore] = ACTIONS(1053), + }, + [252] = { + [sym_link_title] = STATE(2135), + [sym__whitespace] = STATE(2047), + [ts_builtin_sym_end] = ACTIONS(929), + [aux_sym__html_block_1_token1] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(934), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_BSLASH] = ACTIONS(934), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym__] = ACTIONS(929), + [anon_sym_BQUOTE] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(934), + [anon_sym_LT_QMARK] = ACTIONS(934), + [aux_sym__html_block_4_token1] = ACTIONS(934), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(929), + [aux_sym__html_block_6_token1] = ACTIONS(934), + [aux_sym__html_block_6_token2] = ACTIONS(929), + [sym__open_tag_html_block] = ACTIONS(929), + [sym__open_tag_html_block_newline] = ACTIONS(929), + [sym__closing_tag_html_block] = ACTIONS(929), + [sym__closing_tag_html_block_newline] = ACTIONS(929), + [sym_backslash_escape] = ACTIONS(929), + [sym_uri_autolink] = ACTIONS(929), + [sym_email_autolink] = ACTIONS(929), + [sym_entity_reference] = ACTIONS(929), + [sym_numeric_character_reference] = ACTIONS(929), + [sym__whitespace_ge_2] = ACTIONS(942), + [aux_sym__whitespace_token1] = ACTIONS(945), + [sym__word_no_digit] = ACTIONS(929), + [sym__digits] = ACTIONS(929), + [aux_sym__newline_token1] = ACTIONS(929), + [sym__block_quote_start] = ACTIONS(929), + [sym__indented_chunk_start] = ACTIONS(929), + [sym_atx_h1_marker] = ACTIONS(929), + [sym_atx_h2_marker] = ACTIONS(929), + [sym_atx_h3_marker] = ACTIONS(929), + [sym_atx_h4_marker] = ACTIONS(929), + [sym_atx_h5_marker] = ACTIONS(929), + [sym_atx_h6_marker] = ACTIONS(929), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(929), + [sym__thematic_break] = ACTIONS(929), + [sym__list_marker_minus] = ACTIONS(929), + [sym__list_marker_plus] = ACTIONS(929), + [sym__list_marker_star] = ACTIONS(929), + [sym__list_marker_parenthesis] = ACTIONS(929), + [sym__list_marker_dot] = ACTIONS(929), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(929), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(929), + [sym__list_marker_star_dont_interrupt] = ACTIONS(929), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(929), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(929), + [sym__fenced_code_block_start_backtick] = ACTIONS(929), + [sym__fenced_code_block_start_tilde] = ACTIONS(929), + [sym__blank_line_start] = ACTIONS(929), + [sym__code_span_start] = ACTIONS(929), + [sym__emphasis_open_star] = ACTIONS(929), + [sym__emphasis_open_underscore] = ACTIONS(929), + [sym__no_indented_chunk] = ACTIONS(1410), + }, + [253] = { + [aux_sym__ignore_matching_tokens] = STATE(313), + [ts_builtin_sym_end] = ACTIONS(1023), + [aux_sym__html_block_1_token1] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_PERCENT] = ACTIONS(1023), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_BSLASH] = ACTIONS(1025), + [anon_sym_RBRACK] = ACTIONS(1023), + [anon_sym_CARET] = ACTIONS(1023), + [anon_sym__] = ACTIONS(1023), + [anon_sym_BQUOTE] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1023), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1025), + [anon_sym_LT_QMARK] = ACTIONS(1025), + [aux_sym__html_block_4_token1] = ACTIONS(1025), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1023), + [aux_sym__html_block_6_token1] = ACTIONS(1025), + [aux_sym__html_block_6_token2] = ACTIONS(1023), + [sym__open_tag_html_block] = ACTIONS(1023), + [sym__open_tag_html_block_newline] = ACTIONS(1023), + [sym__closing_tag_html_block] = ACTIONS(1023), + [sym__closing_tag_html_block_newline] = ACTIONS(1023), + [sym_backslash_escape] = ACTIONS(1023), + [sym_uri_autolink] = ACTIONS(1023), + [sym_email_autolink] = ACTIONS(1023), + [sym_entity_reference] = ACTIONS(1023), + [sym_numeric_character_reference] = ACTIONS(1023), + [sym__whitespace_ge_2] = ACTIONS(1023), + [aux_sym__whitespace_token1] = ACTIONS(1025), + [sym__word_no_digit] = ACTIONS(1023), + [sym__digits] = ACTIONS(1023), + [aux_sym__newline_token1] = ACTIONS(1023), + [sym__block_continuation] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1023), + [sym__indented_chunk_start] = ACTIONS(1023), + [sym_atx_h1_marker] = ACTIONS(1023), + [sym_atx_h2_marker] = ACTIONS(1023), + [sym_atx_h3_marker] = ACTIONS(1023), + [sym_atx_h4_marker] = ACTIONS(1023), + [sym_atx_h5_marker] = ACTIONS(1023), + [sym_atx_h6_marker] = ACTIONS(1023), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1023), + [sym__thematic_break] = ACTIONS(1023), + [sym__list_marker_minus] = ACTIONS(1023), + [sym__list_marker_plus] = ACTIONS(1023), + [sym__list_marker_star] = ACTIONS(1023), + [sym__list_marker_parenthesis] = ACTIONS(1023), + [sym__list_marker_dot] = ACTIONS(1023), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1023), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1023), + [sym__fenced_code_block_start_backtick] = ACTIONS(1023), + [sym__fenced_code_block_start_tilde] = ACTIONS(1023), + [sym__blank_line_start] = ACTIONS(1023), + [sym__code_span_start] = ACTIONS(1023), + [sym__last_token_whitespace] = ACTIONS(1412), + [sym__emphasis_open_star] = ACTIONS(1023), + [sym__emphasis_open_underscore] = ACTIONS(1023), + }, + [254] = { + [aux_sym__ignore_matching_tokens] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(612), + [aux_sym__html_block_1_token1] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(612), + [anon_sym_DOLLAR] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_COLON] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_BSLASH] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym__] = ACTIONS(612), + [anon_sym_BQUOTE] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(612), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(612), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(614), + [anon_sym_LT_QMARK] = ACTIONS(614), + [aux_sym__html_block_4_token1] = ACTIONS(614), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(612), + [aux_sym__html_block_6_token1] = ACTIONS(614), + [aux_sym__html_block_6_token2] = ACTIONS(612), + [sym__open_tag_html_block] = ACTIONS(612), + [sym__open_tag_html_block_newline] = ACTIONS(612), + [sym__closing_tag_html_block] = ACTIONS(612), + [sym__closing_tag_html_block_newline] = ACTIONS(612), + [sym_backslash_escape] = ACTIONS(612), + [sym_uri_autolink] = ACTIONS(612), + [sym_email_autolink] = ACTIONS(612), + [sym_entity_reference] = ACTIONS(612), + [sym_numeric_character_reference] = ACTIONS(612), + [sym__whitespace_ge_2] = ACTIONS(612), + [aux_sym__whitespace_token1] = ACTIONS(614), + [sym__word_no_digit] = ACTIONS(612), + [sym__digits] = ACTIONS(612), + [aux_sym__newline_token1] = ACTIONS(612), + [sym__block_continuation] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(612), + [sym__indented_chunk_start] = ACTIONS(612), + [sym_atx_h1_marker] = ACTIONS(612), + [sym_atx_h2_marker] = ACTIONS(612), + [sym_atx_h3_marker] = ACTIONS(612), + [sym_atx_h4_marker] = ACTIONS(612), + [sym_atx_h5_marker] = ACTIONS(612), + [sym_atx_h6_marker] = ACTIONS(612), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(612), + [sym__thematic_break] = ACTIONS(612), + [sym__list_marker_minus] = ACTIONS(612), + [sym__list_marker_plus] = ACTIONS(612), + [sym__list_marker_star] = ACTIONS(612), + [sym__list_marker_parenthesis] = ACTIONS(612), + [sym__list_marker_dot] = ACTIONS(612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(612), + [sym__fenced_code_block_start_backtick] = ACTIONS(612), + [sym__fenced_code_block_start_tilde] = ACTIONS(612), + [sym__blank_line_start] = ACTIONS(612), + [sym__code_span_start] = ACTIONS(612), + [sym__last_token_whitespace] = ACTIONS(1414), + [sym__emphasis_open_star] = ACTIONS(612), + [sym__emphasis_open_underscore] = ACTIONS(612), + }, + [255] = { + [aux_sym__ignore_matching_tokens] = STATE(213), + [ts_builtin_sym_end] = ACTIONS(616), + [aux_sym__html_block_1_token1] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_DOLLAR] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(618), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(616), + [anon_sym_BSLASH] = ACTIONS(618), + [anon_sym_RBRACK] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym__] = ACTIONS(616), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(618), + [anon_sym_LT_QMARK] = ACTIONS(618), + [aux_sym__html_block_4_token1] = ACTIONS(618), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(616), + [aux_sym__html_block_6_token1] = ACTIONS(618), + [aux_sym__html_block_6_token2] = ACTIONS(616), + [sym__open_tag_html_block] = ACTIONS(616), + [sym__open_tag_html_block_newline] = ACTIONS(616), + [sym__closing_tag_html_block] = ACTIONS(616), + [sym__closing_tag_html_block_newline] = ACTIONS(616), + [sym_backslash_escape] = ACTIONS(616), + [sym_uri_autolink] = ACTIONS(616), + [sym_email_autolink] = ACTIONS(616), + [sym_entity_reference] = ACTIONS(616), + [sym_numeric_character_reference] = ACTIONS(616), + [sym__whitespace_ge_2] = ACTIONS(616), + [aux_sym__whitespace_token1] = ACTIONS(618), + [sym__word_no_digit] = ACTIONS(616), + [sym__digits] = ACTIONS(616), + [aux_sym__newline_token1] = ACTIONS(616), + [sym__block_continuation] = ACTIONS(1416), + [sym__block_quote_start] = ACTIONS(616), + [sym__indented_chunk_start] = ACTIONS(616), + [sym_atx_h1_marker] = ACTIONS(616), + [sym_atx_h2_marker] = ACTIONS(616), + [sym_atx_h3_marker] = ACTIONS(616), + [sym_atx_h4_marker] = ACTIONS(616), + [sym_atx_h5_marker] = ACTIONS(616), + [sym_atx_h6_marker] = ACTIONS(616), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(616), + [sym__thematic_break] = ACTIONS(616), + [sym__list_marker_minus] = ACTIONS(616), + [sym__list_marker_plus] = ACTIONS(616), + [sym__list_marker_star] = ACTIONS(616), + [sym__list_marker_parenthesis] = ACTIONS(616), + [sym__list_marker_dot] = ACTIONS(616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(616), + [sym__fenced_code_block_start_backtick] = ACTIONS(616), + [sym__fenced_code_block_start_tilde] = ACTIONS(616), + [sym__blank_line_start] = ACTIONS(616), + [sym__code_span_start] = ACTIONS(616), + [sym__last_token_whitespace] = ACTIONS(1416), + [sym__emphasis_open_star] = ACTIONS(616), + [sym__emphasis_open_underscore] = ACTIONS(616), + }, + [256] = { + [aux_sym__ignore_matching_tokens] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(867), + [aux_sym__html_block_1_token1] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(867), + [anon_sym_POUND] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(867), + [anon_sym_RPAREN] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_COMMA] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_COLON] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(867), + [anon_sym_AT] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_BSLASH] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym__] = ACTIONS(867), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(867), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), + [anon_sym_LT_QMARK] = ACTIONS(869), + [aux_sym__html_block_4_token1] = ACTIONS(869), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(867), + [aux_sym__html_block_6_token1] = ACTIONS(869), + [aux_sym__html_block_6_token2] = ACTIONS(867), + [sym__open_tag_html_block] = ACTIONS(867), + [sym__open_tag_html_block_newline] = ACTIONS(867), + [sym__closing_tag_html_block] = ACTIONS(867), + [sym__closing_tag_html_block_newline] = ACTIONS(867), + [sym_backslash_escape] = ACTIONS(867), + [sym_uri_autolink] = ACTIONS(867), + [sym_email_autolink] = ACTIONS(867), + [sym_entity_reference] = ACTIONS(867), + [sym_numeric_character_reference] = ACTIONS(867), + [sym__whitespace_ge_2] = ACTIONS(867), + [aux_sym__whitespace_token1] = ACTIONS(869), + [sym__word_no_digit] = ACTIONS(867), + [sym__digits] = ACTIONS(867), + [aux_sym__newline_token1] = ACTIONS(867), + [sym__block_continuation] = ACTIONS(1418), + [sym__block_quote_start] = ACTIONS(867), + [sym__indented_chunk_start] = ACTIONS(867), + [sym_atx_h1_marker] = ACTIONS(867), + [sym_atx_h2_marker] = ACTIONS(867), + [sym_atx_h3_marker] = ACTIONS(867), + [sym_atx_h4_marker] = ACTIONS(867), + [sym_atx_h5_marker] = ACTIONS(867), + [sym_atx_h6_marker] = ACTIONS(867), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(867), + [sym__thematic_break] = ACTIONS(867), + [sym__list_marker_minus] = ACTIONS(867), + [sym__list_marker_plus] = ACTIONS(867), + [sym__list_marker_star] = ACTIONS(867), + [sym__list_marker_parenthesis] = ACTIONS(867), + [sym__list_marker_dot] = ACTIONS(867), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(867), + [sym__list_marker_star_dont_interrupt] = ACTIONS(867), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(867), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(867), + [sym__fenced_code_block_start_backtick] = ACTIONS(867), + [sym__fenced_code_block_start_tilde] = ACTIONS(867), + [sym__blank_line_start] = ACTIONS(867), + [sym__code_span_start] = ACTIONS(867), + [sym__last_token_whitespace] = ACTIONS(1418), + [sym__emphasis_open_star] = ACTIONS(867), + [sym__emphasis_open_underscore] = ACTIONS(867), + }, + [257] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(861), + [aux_sym__html_block_1_token1] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_BSLASH] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym__] = ACTIONS(861), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), + [anon_sym_LT_QMARK] = ACTIONS(863), + [aux_sym__html_block_4_token1] = ACTIONS(863), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), + [aux_sym__html_block_6_token1] = ACTIONS(863), + [aux_sym__html_block_6_token2] = ACTIONS(861), + [sym__open_tag_html_block] = ACTIONS(861), + [sym__open_tag_html_block_newline] = ACTIONS(861), + [sym__closing_tag_html_block] = ACTIONS(861), + [sym__closing_tag_html_block_newline] = ACTIONS(861), + [sym_backslash_escape] = ACTIONS(861), + [sym_uri_autolink] = ACTIONS(861), + [sym_email_autolink] = ACTIONS(861), + [sym_entity_reference] = ACTIONS(861), + [sym_numeric_character_reference] = ACTIONS(861), + [sym__whitespace_ge_2] = ACTIONS(861), + [aux_sym__whitespace_token1] = ACTIONS(863), + [sym__word_no_digit] = ACTIONS(861), + [sym__digits] = ACTIONS(861), + [aux_sym__newline_token1] = ACTIONS(861), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(861), + [sym__indented_chunk_start] = ACTIONS(861), + [sym_atx_h1_marker] = ACTIONS(861), + [sym_atx_h2_marker] = ACTIONS(861), + [sym_atx_h3_marker] = ACTIONS(861), + [sym_atx_h4_marker] = ACTIONS(861), + [sym_atx_h5_marker] = ACTIONS(861), + [sym_atx_h6_marker] = ACTIONS(861), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(861), + [sym__thematic_break] = ACTIONS(861), + [sym__list_marker_minus] = ACTIONS(861), + [sym__list_marker_plus] = ACTIONS(861), + [sym__list_marker_star] = ACTIONS(861), + [sym__list_marker_parenthesis] = ACTIONS(861), + [sym__list_marker_dot] = ACTIONS(861), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_star_dont_interrupt] = ACTIONS(861), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), + [sym__fenced_code_block_start_backtick] = ACTIONS(861), + [sym__fenced_code_block_start_tilde] = ACTIONS(861), + [sym__blank_line_start] = ACTIONS(861), + [sym__code_span_start] = ACTIONS(861), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(861), + [sym__emphasis_open_underscore] = ACTIONS(861), + }, + [258] = { + [aux_sym__ignore_matching_tokens] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(1207), + [aux_sym__html_block_1_token1] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1207), + [anon_sym_POUND] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PERCENT] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1207), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_COMMA] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1207), + [anon_sym_COLON] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1209), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1207), + [anon_sym_AT] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_BSLASH] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1207), + [anon_sym__] = ACTIONS(1207), + [anon_sym_BQUOTE] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1209), + [anon_sym_LT_QMARK] = ACTIONS(1209), + [aux_sym__html_block_4_token1] = ACTIONS(1209), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1207), + [aux_sym__html_block_6_token1] = ACTIONS(1209), + [aux_sym__html_block_6_token2] = ACTIONS(1207), + [sym__open_tag_html_block] = ACTIONS(1207), + [sym__open_tag_html_block_newline] = ACTIONS(1207), + [sym__closing_tag_html_block] = ACTIONS(1207), + [sym__closing_tag_html_block_newline] = ACTIONS(1207), + [sym_backslash_escape] = ACTIONS(1207), + [sym_uri_autolink] = ACTIONS(1207), + [sym_email_autolink] = ACTIONS(1207), + [sym_entity_reference] = ACTIONS(1207), + [sym_numeric_character_reference] = ACTIONS(1207), + [sym__whitespace_ge_2] = ACTIONS(1207), + [aux_sym__whitespace_token1] = ACTIONS(1209), + [sym__word_no_digit] = ACTIONS(1207), + [sym__digits] = ACTIONS(1207), + [aux_sym__newline_token1] = ACTIONS(1207), + [sym__block_continuation] = ACTIONS(1420), + [sym__block_quote_start] = ACTIONS(1207), + [sym__indented_chunk_start] = ACTIONS(1207), + [sym_atx_h1_marker] = ACTIONS(1207), + [sym_atx_h2_marker] = ACTIONS(1207), + [sym_atx_h3_marker] = ACTIONS(1207), + [sym_atx_h4_marker] = ACTIONS(1207), + [sym_atx_h5_marker] = ACTIONS(1207), + [sym_atx_h6_marker] = ACTIONS(1207), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1207), + [sym__thematic_break] = ACTIONS(1207), + [sym__list_marker_minus] = ACTIONS(1207), + [sym__list_marker_plus] = ACTIONS(1207), + [sym__list_marker_star] = ACTIONS(1207), + [sym__list_marker_parenthesis] = ACTIONS(1207), + [sym__list_marker_dot] = ACTIONS(1207), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1207), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1207), + [sym__fenced_code_block_start_backtick] = ACTIONS(1207), + [sym__fenced_code_block_start_tilde] = ACTIONS(1207), + [sym__blank_line_start] = ACTIONS(1207), + [sym__code_span_start] = ACTIONS(1207), + [sym__last_token_whitespace] = ACTIONS(1420), + [sym__emphasis_open_star] = ACTIONS(1207), + [sym__emphasis_open_underscore] = ACTIONS(1207), + }, + [259] = { + [sym_list_marker_parenthesis] = STATE(42), + [sym__list_item_parenthesis] = STATE(209), + [aux_sym__list_parenthesis_repeat1] = STATE(209), + [ts_builtin_sym_end] = ACTIONS(1213), + [aux_sym__html_block_1_token1] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [anon_sym_POUND] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_PERCENT] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_SQUOTE] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_AT] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BQUOTE] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1215), + [anon_sym_LT_QMARK] = ACTIONS(1215), + [aux_sym__html_block_4_token1] = ACTIONS(1215), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1213), + [aux_sym__html_block_6_token1] = ACTIONS(1215), + [aux_sym__html_block_6_token2] = ACTIONS(1213), + [sym__open_tag_html_block] = ACTIONS(1213), + [sym__open_tag_html_block_newline] = ACTIONS(1213), + [sym__closing_tag_html_block] = ACTIONS(1213), + [sym__closing_tag_html_block_newline] = ACTIONS(1213), + [sym_backslash_escape] = ACTIONS(1213), + [sym_uri_autolink] = ACTIONS(1213), + [sym_email_autolink] = ACTIONS(1213), + [sym_entity_reference] = ACTIONS(1213), + [sym_numeric_character_reference] = ACTIONS(1213), + [sym__whitespace_ge_2] = ACTIONS(1213), + [aux_sym__whitespace_token1] = ACTIONS(1215), + [sym__word_no_digit] = ACTIONS(1213), + [sym__digits] = ACTIONS(1213), + [aux_sym__newline_token1] = ACTIONS(1213), + [sym__block_quote_start] = ACTIONS(1213), + [sym__indented_chunk_start] = ACTIONS(1213), + [sym_atx_h1_marker] = ACTIONS(1213), + [sym_atx_h2_marker] = ACTIONS(1213), + [sym_atx_h3_marker] = ACTIONS(1213), + [sym_atx_h4_marker] = ACTIONS(1213), + [sym_atx_h5_marker] = ACTIONS(1213), + [sym_atx_h6_marker] = ACTIONS(1213), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1213), + [sym__thematic_break] = ACTIONS(1213), + [sym__list_marker_minus] = ACTIONS(1213), + [sym__list_marker_plus] = ACTIONS(1213), + [sym__list_marker_star] = ACTIONS(1213), + [sym__list_marker_parenthesis] = ACTIONS(59), + [sym__list_marker_dot] = ACTIONS(1213), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1213), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1213), + [sym__fenced_code_block_start_backtick] = ACTIONS(1213), + [sym__fenced_code_block_start_tilde] = ACTIONS(1213), + [sym__blank_line_start] = ACTIONS(1213), + [sym__code_span_start] = ACTIONS(1213), + [sym__emphasis_open_star] = ACTIONS(1213), + [sym__emphasis_open_underscore] = ACTIONS(1213), + }, + [260] = { + [aux_sym__ignore_matching_tokens] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(622), + [aux_sym__html_block_1_token1] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(624), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_BSLASH] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym__] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(624), + [anon_sym_LT_QMARK] = ACTIONS(624), + [aux_sym__html_block_4_token1] = ACTIONS(624), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(622), + [aux_sym__html_block_6_token1] = ACTIONS(624), + [aux_sym__html_block_6_token2] = ACTIONS(622), + [sym__open_tag_html_block] = ACTIONS(622), + [sym__open_tag_html_block_newline] = ACTIONS(622), + [sym__closing_tag_html_block] = ACTIONS(622), + [sym__closing_tag_html_block_newline] = ACTIONS(622), + [sym_backslash_escape] = ACTIONS(622), + [sym_uri_autolink] = ACTIONS(622), + [sym_email_autolink] = ACTIONS(622), + [sym_entity_reference] = ACTIONS(622), + [sym_numeric_character_reference] = ACTIONS(622), + [sym__whitespace_ge_2] = ACTIONS(622), + [aux_sym__whitespace_token1] = ACTIONS(624), + [sym__word_no_digit] = ACTIONS(622), + [sym__digits] = ACTIONS(622), + [aux_sym__newline_token1] = ACTIONS(622), + [sym__block_continuation] = ACTIONS(1422), + [sym__block_quote_start] = ACTIONS(622), + [sym__indented_chunk_start] = ACTIONS(622), + [sym_atx_h1_marker] = ACTIONS(622), + [sym_atx_h2_marker] = ACTIONS(622), + [sym_atx_h3_marker] = ACTIONS(622), + [sym_atx_h4_marker] = ACTIONS(622), + [sym_atx_h5_marker] = ACTIONS(622), + [sym_atx_h6_marker] = ACTIONS(622), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(622), + [sym__thematic_break] = ACTIONS(622), + [sym__list_marker_minus] = ACTIONS(622), + [sym__list_marker_plus] = ACTIONS(622), + [sym__list_marker_star] = ACTIONS(622), + [sym__list_marker_parenthesis] = ACTIONS(622), + [sym__list_marker_dot] = ACTIONS(622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(622), + [sym__fenced_code_block_start_backtick] = ACTIONS(622), + [sym__fenced_code_block_start_tilde] = ACTIONS(622), + [sym__blank_line_start] = ACTIONS(622), + [sym__code_span_start] = ACTIONS(622), + [sym__last_token_whitespace] = ACTIONS(1422), + [sym__emphasis_open_star] = ACTIONS(622), + [sym__emphasis_open_underscore] = ACTIONS(622), + }, + [261] = { + [sym_list_marker_dot] = STATE(41), + [sym__list_item_dot] = STATE(208), + [aux_sym__list_dot_repeat1] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(1217), + [aux_sym__html_block_1_token1] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_POUND] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_PERCENT] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_COLON] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_QMARK] = ACTIONS(1217), + [anon_sym_AT] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_BSLASH] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym__] = ACTIONS(1217), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1219), + [anon_sym_LT_QMARK] = ACTIONS(1219), + [aux_sym__html_block_4_token1] = ACTIONS(1219), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1217), + [aux_sym__html_block_6_token1] = ACTIONS(1219), + [aux_sym__html_block_6_token2] = ACTIONS(1217), + [sym__open_tag_html_block] = ACTIONS(1217), + [sym__open_tag_html_block_newline] = ACTIONS(1217), + [sym__closing_tag_html_block] = ACTIONS(1217), + [sym__closing_tag_html_block_newline] = ACTIONS(1217), + [sym_backslash_escape] = ACTIONS(1217), + [sym_uri_autolink] = ACTIONS(1217), + [sym_email_autolink] = ACTIONS(1217), + [sym_entity_reference] = ACTIONS(1217), + [sym_numeric_character_reference] = ACTIONS(1217), + [sym__whitespace_ge_2] = ACTIONS(1217), + [aux_sym__whitespace_token1] = ACTIONS(1219), + [sym__word_no_digit] = ACTIONS(1217), + [sym__digits] = ACTIONS(1217), + [aux_sym__newline_token1] = ACTIONS(1217), + [sym__block_quote_start] = ACTIONS(1217), + [sym__indented_chunk_start] = ACTIONS(1217), + [sym_atx_h1_marker] = ACTIONS(1217), + [sym_atx_h2_marker] = ACTIONS(1217), + [sym_atx_h3_marker] = ACTIONS(1217), + [sym_atx_h4_marker] = ACTIONS(1217), + [sym_atx_h5_marker] = ACTIONS(1217), + [sym_atx_h6_marker] = ACTIONS(1217), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1217), + [sym__thematic_break] = ACTIONS(1217), + [sym__list_marker_minus] = ACTIONS(1217), + [sym__list_marker_plus] = ACTIONS(1217), + [sym__list_marker_star] = ACTIONS(1217), + [sym__list_marker_parenthesis] = ACTIONS(1217), + [sym__list_marker_dot] = ACTIONS(61), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1217), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), + [sym__fenced_code_block_start_backtick] = ACTIONS(1217), + [sym__fenced_code_block_start_tilde] = ACTIONS(1217), + [sym__blank_line_start] = ACTIONS(1217), + [sym__code_span_start] = ACTIONS(1217), + [sym__emphasis_open_star] = ACTIONS(1217), + [sym__emphasis_open_underscore] = ACTIONS(1217), + }, + [262] = { + [sym_list_marker_star] = STATE(40), + [sym__list_item_star] = STATE(207), + [aux_sym__list_star_repeat1] = STATE(207), + [ts_builtin_sym_end] = ACTIONS(1221), + [aux_sym__html_block_1_token1] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [anon_sym_POUND] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_COLON] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_AT] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_BSLASH] = ACTIONS(1223), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym__] = ACTIONS(1221), + [anon_sym_BQUOTE] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1223), + [anon_sym_LT_QMARK] = ACTIONS(1223), + [aux_sym__html_block_4_token1] = ACTIONS(1223), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1221), + [aux_sym__html_block_6_token1] = ACTIONS(1223), + [aux_sym__html_block_6_token2] = ACTIONS(1221), + [sym__open_tag_html_block] = ACTIONS(1221), + [sym__open_tag_html_block_newline] = ACTIONS(1221), + [sym__closing_tag_html_block] = ACTIONS(1221), + [sym__closing_tag_html_block_newline] = ACTIONS(1221), + [sym_backslash_escape] = ACTIONS(1221), + [sym_uri_autolink] = ACTIONS(1221), + [sym_email_autolink] = ACTIONS(1221), + [sym_entity_reference] = ACTIONS(1221), + [sym_numeric_character_reference] = ACTIONS(1221), + [sym__whitespace_ge_2] = ACTIONS(1221), + [aux_sym__whitespace_token1] = ACTIONS(1223), + [sym__word_no_digit] = ACTIONS(1221), + [sym__digits] = ACTIONS(1221), + [aux_sym__newline_token1] = ACTIONS(1221), + [sym__block_quote_start] = ACTIONS(1221), + [sym__indented_chunk_start] = ACTIONS(1221), + [sym_atx_h1_marker] = ACTIONS(1221), + [sym_atx_h2_marker] = ACTIONS(1221), + [sym_atx_h3_marker] = ACTIONS(1221), + [sym_atx_h4_marker] = ACTIONS(1221), + [sym_atx_h5_marker] = ACTIONS(1221), + [sym_atx_h6_marker] = ACTIONS(1221), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1221), + [sym__thematic_break] = ACTIONS(1221), + [sym__list_marker_minus] = ACTIONS(1221), + [sym__list_marker_plus] = ACTIONS(1221), + [sym__list_marker_star] = ACTIONS(57), + [sym__list_marker_parenthesis] = ACTIONS(1221), + [sym__list_marker_dot] = ACTIONS(1221), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1221), + [sym__list_marker_star_dont_interrupt] = ACTIONS(57), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1221), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1221), + [sym__fenced_code_block_start_backtick] = ACTIONS(1221), + [sym__fenced_code_block_start_tilde] = ACTIONS(1221), + [sym__blank_line_start] = ACTIONS(1221), + [sym__code_span_start] = ACTIONS(1221), + [sym__emphasis_open_star] = ACTIONS(1221), + [sym__emphasis_open_underscore] = ACTIONS(1221), + }, + [263] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(622), + [aux_sym__html_block_1_token1] = ACTIONS(622), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_POUND] = ACTIONS(622), + [anon_sym_DOLLAR] = ACTIONS(622), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(624), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(622), + [anon_sym_DOT] = ACTIONS(622), + [anon_sym_SLASH] = ACTIONS(622), + [anon_sym_COLON] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_QMARK] = ACTIONS(622), + [anon_sym_AT] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(622), + [anon_sym_BSLASH] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym__] = ACTIONS(622), + [anon_sym_BQUOTE] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(624), + [anon_sym_LT_QMARK] = ACTIONS(624), + [aux_sym__html_block_4_token1] = ACTIONS(624), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(622), + [aux_sym__html_block_6_token1] = ACTIONS(624), + [aux_sym__html_block_6_token2] = ACTIONS(622), + [sym__open_tag_html_block] = ACTIONS(622), + [sym__open_tag_html_block_newline] = ACTIONS(622), + [sym__closing_tag_html_block] = ACTIONS(622), + [sym__closing_tag_html_block_newline] = ACTIONS(622), + [sym_backslash_escape] = ACTIONS(622), + [sym_uri_autolink] = ACTIONS(622), + [sym_email_autolink] = ACTIONS(622), + [sym_entity_reference] = ACTIONS(622), + [sym_numeric_character_reference] = ACTIONS(622), + [sym__whitespace_ge_2] = ACTIONS(622), + [aux_sym__whitespace_token1] = ACTIONS(624), + [sym__word_no_digit] = ACTIONS(622), + [sym__digits] = ACTIONS(622), + [aux_sym__newline_token1] = ACTIONS(622), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(622), + [sym__indented_chunk_start] = ACTIONS(622), + [sym_atx_h1_marker] = ACTIONS(622), + [sym_atx_h2_marker] = ACTIONS(622), + [sym_atx_h3_marker] = ACTIONS(622), + [sym_atx_h4_marker] = ACTIONS(622), + [sym_atx_h5_marker] = ACTIONS(622), + [sym_atx_h6_marker] = ACTIONS(622), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(622), + [sym__thematic_break] = ACTIONS(622), + [sym__list_marker_minus] = ACTIONS(622), + [sym__list_marker_plus] = ACTIONS(622), + [sym__list_marker_star] = ACTIONS(622), + [sym__list_marker_parenthesis] = ACTIONS(622), + [sym__list_marker_dot] = ACTIONS(622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(622), + [sym__fenced_code_block_start_backtick] = ACTIONS(622), + [sym__fenced_code_block_start_tilde] = ACTIONS(622), + [sym__blank_line_start] = ACTIONS(622), + [sym__code_span_start] = ACTIONS(622), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(622), + [sym__emphasis_open_underscore] = ACTIONS(622), + }, + [264] = { + [sym_list_marker_minus] = STATE(39), + [sym__list_item_minus] = STATE(206), + [aux_sym__list_minus_repeat1] = STATE(206), + [ts_builtin_sym_end] = ACTIONS(1225), + [aux_sym__html_block_1_token1] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [anon_sym_POUND] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1225), + [anon_sym_AT] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym__] = ACTIONS(1225), + [anon_sym_BQUOTE] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1227), + [anon_sym_LT_QMARK] = ACTIONS(1227), + [aux_sym__html_block_4_token1] = ACTIONS(1227), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1225), + [aux_sym__html_block_6_token1] = ACTIONS(1227), + [aux_sym__html_block_6_token2] = ACTIONS(1225), + [sym__open_tag_html_block] = ACTIONS(1225), + [sym__open_tag_html_block_newline] = ACTIONS(1225), + [sym__closing_tag_html_block] = ACTIONS(1225), + [sym__closing_tag_html_block_newline] = ACTIONS(1225), + [sym_backslash_escape] = ACTIONS(1225), + [sym_uri_autolink] = ACTIONS(1225), + [sym_email_autolink] = ACTIONS(1225), + [sym_entity_reference] = ACTIONS(1225), + [sym_numeric_character_reference] = ACTIONS(1225), + [sym__whitespace_ge_2] = ACTIONS(1225), + [aux_sym__whitespace_token1] = ACTIONS(1227), + [sym__word_no_digit] = ACTIONS(1225), + [sym__digits] = ACTIONS(1225), + [aux_sym__newline_token1] = ACTIONS(1225), + [sym__block_quote_start] = ACTIONS(1225), + [sym__indented_chunk_start] = ACTIONS(1225), + [sym_atx_h1_marker] = ACTIONS(1225), + [sym_atx_h2_marker] = ACTIONS(1225), + [sym_atx_h3_marker] = ACTIONS(1225), + [sym_atx_h4_marker] = ACTIONS(1225), + [sym_atx_h5_marker] = ACTIONS(1225), + [sym_atx_h6_marker] = ACTIONS(1225), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1225), + [sym__thematic_break] = ACTIONS(1225), + [sym__list_marker_minus] = ACTIONS(53), + [sym__list_marker_plus] = ACTIONS(1225), + [sym__list_marker_star] = ACTIONS(1225), + [sym__list_marker_parenthesis] = ACTIONS(1225), + [sym__list_marker_dot] = ACTIONS(1225), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1225), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1225), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1225), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1225), + [sym__fenced_code_block_start_backtick] = ACTIONS(1225), + [sym__fenced_code_block_start_tilde] = ACTIONS(1225), + [sym__blank_line_start] = ACTIONS(1225), + [sym__code_span_start] = ACTIONS(1225), + [sym__emphasis_open_star] = ACTIONS(1225), + [sym__emphasis_open_underscore] = ACTIONS(1225), + }, + [265] = { + [sym_link_title] = STATE(2142), + [sym__whitespace] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(662), + [aux_sym__html_block_1_token1] = ACTIONS(662), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(662), + [anon_sym_DOLLAR] = ACTIONS(662), + [anon_sym_PERCENT] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_SQUOTE] = ACTIONS(669), + [anon_sym_LPAREN] = ACTIONS(672), + [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(662), + [anon_sym_COMMA] = ACTIONS(662), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_DOT] = ACTIONS(662), + [anon_sym_SLASH] = ACTIONS(662), + [anon_sym_COLON] = ACTIONS(662), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_EQ] = ACTIONS(662), + [anon_sym_GT] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_BSLASH] = ACTIONS(667), + [anon_sym_RBRACK] = ACTIONS(662), + [anon_sym_CARET] = ACTIONS(662), + [anon_sym__] = ACTIONS(662), + [anon_sym_BQUOTE] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(667), + [anon_sym_LT_QMARK] = ACTIONS(667), + [aux_sym__html_block_4_token1] = ACTIONS(667), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(662), + [aux_sym__html_block_6_token1] = ACTIONS(667), + [aux_sym__html_block_6_token2] = ACTIONS(662), + [sym__open_tag_html_block] = ACTIONS(662), + [sym__open_tag_html_block_newline] = ACTIONS(662), + [sym__closing_tag_html_block] = ACTIONS(662), + [sym__closing_tag_html_block_newline] = ACTIONS(662), + [sym_backslash_escape] = ACTIONS(662), + [sym_uri_autolink] = ACTIONS(662), + [sym_email_autolink] = ACTIONS(662), + [sym_entity_reference] = ACTIONS(662), + [sym_numeric_character_reference] = ACTIONS(662), + [sym__whitespace_ge_2] = ACTIONS(675), + [aux_sym__whitespace_token1] = ACTIONS(678), + [sym__word_no_digit] = ACTIONS(662), + [sym__digits] = ACTIONS(662), + [aux_sym__newline_token1] = ACTIONS(662), + [sym__block_quote_start] = ACTIONS(662), + [sym__indented_chunk_start] = ACTIONS(662), + [sym_atx_h1_marker] = ACTIONS(662), + [sym_atx_h2_marker] = ACTIONS(662), + [sym_atx_h3_marker] = ACTIONS(662), + [sym_atx_h4_marker] = ACTIONS(662), + [sym_atx_h5_marker] = ACTIONS(662), + [sym_atx_h6_marker] = ACTIONS(662), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(662), + [sym__thematic_break] = ACTIONS(662), + [sym__list_marker_minus] = ACTIONS(662), + [sym__list_marker_plus] = ACTIONS(662), + [sym__list_marker_star] = ACTIONS(662), + [sym__list_marker_parenthesis] = ACTIONS(662), + [sym__list_marker_dot] = ACTIONS(662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(662), + [sym__fenced_code_block_start_backtick] = ACTIONS(662), + [sym__fenced_code_block_start_tilde] = ACTIONS(662), + [sym__blank_line_start] = ACTIONS(662), + [sym__code_span_start] = ACTIONS(662), + [sym__emphasis_open_star] = ACTIONS(662), + [sym__emphasis_open_underscore] = ACTIONS(662), + [sym__no_indented_chunk] = ACTIONS(1424), + }, + [266] = { + [sym_list_marker_plus] = STATE(38), + [sym__list_item_plus] = STATE(205), + [aux_sym__list_plus_repeat1] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(1229), + [aux_sym__html_block_1_token1] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_AT] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_BSLASH] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym__] = ACTIONS(1229), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1231), + [anon_sym_LT_QMARK] = ACTIONS(1231), + [aux_sym__html_block_4_token1] = ACTIONS(1231), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1229), + [aux_sym__html_block_6_token1] = ACTIONS(1231), + [aux_sym__html_block_6_token2] = ACTIONS(1229), + [sym__open_tag_html_block] = ACTIONS(1229), + [sym__open_tag_html_block_newline] = ACTIONS(1229), + [sym__closing_tag_html_block] = ACTIONS(1229), + [sym__closing_tag_html_block_newline] = ACTIONS(1229), + [sym_backslash_escape] = ACTIONS(1229), + [sym_uri_autolink] = ACTIONS(1229), + [sym_email_autolink] = ACTIONS(1229), + [sym_entity_reference] = ACTIONS(1229), + [sym_numeric_character_reference] = ACTIONS(1229), + [sym__whitespace_ge_2] = ACTIONS(1229), + [aux_sym__whitespace_token1] = ACTIONS(1231), + [sym__word_no_digit] = ACTIONS(1229), + [sym__digits] = ACTIONS(1229), + [aux_sym__newline_token1] = ACTIONS(1229), + [sym__block_quote_start] = ACTIONS(1229), + [sym__indented_chunk_start] = ACTIONS(1229), + [sym_atx_h1_marker] = ACTIONS(1229), + [sym_atx_h2_marker] = ACTIONS(1229), + [sym_atx_h3_marker] = ACTIONS(1229), + [sym_atx_h4_marker] = ACTIONS(1229), + [sym_atx_h5_marker] = ACTIONS(1229), + [sym_atx_h6_marker] = ACTIONS(1229), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1229), + [sym__thematic_break] = ACTIONS(1229), + [sym__list_marker_minus] = ACTIONS(1229), + [sym__list_marker_plus] = ACTIONS(55), + [sym__list_marker_star] = ACTIONS(1229), + [sym__list_marker_parenthesis] = ACTIONS(1229), + [sym__list_marker_dot] = ACTIONS(1229), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1229), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1229), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1229), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1229), + [sym__fenced_code_block_start_backtick] = ACTIONS(1229), + [sym__fenced_code_block_start_tilde] = ACTIONS(1229), + [sym__blank_line_start] = ACTIONS(1229), + [sym__code_span_start] = ACTIONS(1229), + [sym__emphasis_open_star] = ACTIONS(1229), + [sym__emphasis_open_underscore] = ACTIONS(1229), + }, + [267] = { + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym__paragraph_end_newline] = STATE(336), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(92), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(11), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(9), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(9), + [anon_sym_GT] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_BSLASH] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(9), + [anon_sym_CARET] = ACTIONS(9), + [anon_sym__] = ACTIONS(9), + [anon_sym_BQUOTE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PIPE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(9), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(1426), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), + }, + [268] = { + [aux_sym__ignore_matching_tokens] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(861), + [aux_sym__html_block_1_token1] = ACTIONS(861), + [anon_sym_BANG] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PERCENT] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DOT] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_BSLASH] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym__] = ACTIONS(861), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(863), + [anon_sym_LT_QMARK] = ACTIONS(863), + [aux_sym__html_block_4_token1] = ACTIONS(863), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(861), + [aux_sym__html_block_6_token1] = ACTIONS(863), + [aux_sym__html_block_6_token2] = ACTIONS(861), + [sym__open_tag_html_block] = ACTIONS(861), + [sym__open_tag_html_block_newline] = ACTIONS(861), + [sym__closing_tag_html_block] = ACTIONS(861), + [sym__closing_tag_html_block_newline] = ACTIONS(861), + [sym_backslash_escape] = ACTIONS(861), + [sym_uri_autolink] = ACTIONS(861), + [sym_email_autolink] = ACTIONS(861), + [sym_entity_reference] = ACTIONS(861), + [sym_numeric_character_reference] = ACTIONS(861), + [sym__whitespace_ge_2] = ACTIONS(861), + [aux_sym__whitespace_token1] = ACTIONS(863), + [sym__word_no_digit] = ACTIONS(861), + [sym__digits] = ACTIONS(861), + [aux_sym__newline_token1] = ACTIONS(861), + [sym__block_continuation] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(861), + [sym__indented_chunk_start] = ACTIONS(861), + [sym_atx_h1_marker] = ACTIONS(861), + [sym_atx_h2_marker] = ACTIONS(861), + [sym_atx_h3_marker] = ACTIONS(861), + [sym_atx_h4_marker] = ACTIONS(861), + [sym_atx_h5_marker] = ACTIONS(861), + [sym_atx_h6_marker] = ACTIONS(861), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(861), + [sym__thematic_break] = ACTIONS(861), + [sym__list_marker_minus] = ACTIONS(861), + [sym__list_marker_plus] = ACTIONS(861), + [sym__list_marker_star] = ACTIONS(861), + [sym__list_marker_parenthesis] = ACTIONS(861), + [sym__list_marker_dot] = ACTIONS(861), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(861), + [sym__list_marker_star_dont_interrupt] = ACTIONS(861), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(861), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(861), + [sym__fenced_code_block_start_backtick] = ACTIONS(861), + [sym__fenced_code_block_start_tilde] = ACTIONS(861), + [sym__blank_line_start] = ACTIONS(861), + [sym__code_span_start] = ACTIONS(861), + [sym__last_token_whitespace] = ACTIONS(1428), + [sym__emphasis_open_star] = ACTIONS(861), + [sym__emphasis_open_underscore] = ACTIONS(861), + }, + [269] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(683), + [aux_sym__html_block_1_token1] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(683), + [anon_sym_POUND] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PERCENT] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(683), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(683), + [anon_sym__] = ACTIONS(683), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(685), + [anon_sym_LT_QMARK] = ACTIONS(685), + [aux_sym__html_block_4_token1] = ACTIONS(685), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(683), + [aux_sym__html_block_6_token1] = ACTIONS(685), + [aux_sym__html_block_6_token2] = ACTIONS(683), + [sym__open_tag_html_block] = ACTIONS(683), + [sym__open_tag_html_block_newline] = ACTIONS(683), + [sym__closing_tag_html_block] = ACTIONS(683), + [sym__closing_tag_html_block_newline] = ACTIONS(683), + [sym_backslash_escape] = ACTIONS(683), + [sym_uri_autolink] = ACTIONS(683), + [sym_email_autolink] = ACTIONS(683), + [sym_entity_reference] = ACTIONS(683), + [sym_numeric_character_reference] = ACTIONS(683), + [sym__whitespace_ge_2] = ACTIONS(683), + [aux_sym__whitespace_token1] = ACTIONS(685), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [aux_sym__newline_token1] = ACTIONS(683), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(683), + [sym__indented_chunk_start] = ACTIONS(683), + [sym_atx_h1_marker] = ACTIONS(683), + [sym_atx_h2_marker] = ACTIONS(683), + [sym_atx_h3_marker] = ACTIONS(683), + [sym_atx_h4_marker] = ACTIONS(683), + [sym_atx_h5_marker] = ACTIONS(683), + [sym_atx_h6_marker] = ACTIONS(683), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(683), + [sym__thematic_break] = ACTIONS(683), + [sym__list_marker_minus] = ACTIONS(683), + [sym__list_marker_plus] = ACTIONS(683), + [sym__list_marker_star] = ACTIONS(683), + [sym__list_marker_parenthesis] = ACTIONS(683), + [sym__list_marker_dot] = ACTIONS(683), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_star_dont_interrupt] = ACTIONS(683), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(683), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(683), + [sym__fenced_code_block_start_backtick] = ACTIONS(683), + [sym__fenced_code_block_start_tilde] = ACTIONS(683), + [sym__blank_line_start] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(683), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(683), + [sym__emphasis_open_underscore] = ACTIONS(683), + }, + [270] = { + [aux_sym__ignore_matching_tokens] = STATE(114), + [ts_builtin_sym_end] = ACTIONS(683), + [aux_sym__html_block_1_token1] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(683), + [anon_sym_POUND] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_PERCENT] = ACTIONS(683), + [anon_sym_AMP] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(683), + [anon_sym_PLUS] = ACTIONS(683), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(683), + [anon_sym_DOT] = ACTIONS(683), + [anon_sym_SLASH] = ACTIONS(683), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_QMARK] = ACTIONS(683), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LBRACK] = ACTIONS(683), + [anon_sym_BSLASH] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_CARET] = ACTIONS(683), + [anon_sym__] = ACTIONS(683), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(683), + [anon_sym_PIPE] = ACTIONS(683), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(685), + [anon_sym_LT_QMARK] = ACTIONS(685), + [aux_sym__html_block_4_token1] = ACTIONS(685), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(683), + [aux_sym__html_block_6_token1] = ACTIONS(685), + [aux_sym__html_block_6_token2] = ACTIONS(683), + [sym__open_tag_html_block] = ACTIONS(683), + [sym__open_tag_html_block_newline] = ACTIONS(683), + [sym__closing_tag_html_block] = ACTIONS(683), + [sym__closing_tag_html_block_newline] = ACTIONS(683), + [sym_backslash_escape] = ACTIONS(683), + [sym_uri_autolink] = ACTIONS(683), + [sym_email_autolink] = ACTIONS(683), + [sym_entity_reference] = ACTIONS(683), + [sym_numeric_character_reference] = ACTIONS(683), + [sym__whitespace_ge_2] = ACTIONS(683), + [aux_sym__whitespace_token1] = ACTIONS(685), + [sym__word_no_digit] = ACTIONS(683), + [sym__digits] = ACTIONS(683), + [aux_sym__newline_token1] = ACTIONS(683), + [sym__block_continuation] = ACTIONS(1430), + [sym__block_quote_start] = ACTIONS(683), + [sym__indented_chunk_start] = ACTIONS(683), + [sym_atx_h1_marker] = ACTIONS(683), + [sym_atx_h2_marker] = ACTIONS(683), + [sym_atx_h3_marker] = ACTIONS(683), + [sym_atx_h4_marker] = ACTIONS(683), + [sym_atx_h5_marker] = ACTIONS(683), + [sym_atx_h6_marker] = ACTIONS(683), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(683), + [sym__thematic_break] = ACTIONS(683), + [sym__list_marker_minus] = ACTIONS(683), + [sym__list_marker_plus] = ACTIONS(683), + [sym__list_marker_star] = ACTIONS(683), + [sym__list_marker_parenthesis] = ACTIONS(683), + [sym__list_marker_dot] = ACTIONS(683), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(683), + [sym__list_marker_star_dont_interrupt] = ACTIONS(683), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(683), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(683), + [sym__fenced_code_block_start_backtick] = ACTIONS(683), + [sym__fenced_code_block_start_tilde] = ACTIONS(683), + [sym__blank_line_start] = ACTIONS(683), + [sym__code_span_start] = ACTIONS(683), + [sym__last_token_whitespace] = ACTIONS(1430), + [sym__emphasis_open_star] = ACTIONS(683), + [sym__emphasis_open_underscore] = ACTIONS(683), + }, + [271] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(695), + [aux_sym__html_block_1_token1] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + [anon_sym_SQUOTE] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_AT] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_RBRACK] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym__] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(695), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(697), + [anon_sym_LT_QMARK] = ACTIONS(697), + [aux_sym__html_block_4_token1] = ACTIONS(697), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(695), + [aux_sym__html_block_6_token1] = ACTIONS(697), + [aux_sym__html_block_6_token2] = ACTIONS(695), + [sym__open_tag_html_block] = ACTIONS(695), + [sym__open_tag_html_block_newline] = ACTIONS(695), + [sym__closing_tag_html_block] = ACTIONS(695), + [sym__closing_tag_html_block_newline] = ACTIONS(695), + [sym_backslash_escape] = ACTIONS(695), + [sym_uri_autolink] = ACTIONS(695), + [sym_email_autolink] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(695), + [sym_numeric_character_reference] = ACTIONS(695), + [sym__whitespace_ge_2] = ACTIONS(695), + [aux_sym__whitespace_token1] = ACTIONS(697), + [sym__word_no_digit] = ACTIONS(695), + [sym__digits] = ACTIONS(695), + [aux_sym__newline_token1] = ACTIONS(695), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(695), + [sym__indented_chunk_start] = ACTIONS(695), + [sym_atx_h1_marker] = ACTIONS(695), + [sym_atx_h2_marker] = ACTIONS(695), + [sym_atx_h3_marker] = ACTIONS(695), + [sym_atx_h4_marker] = ACTIONS(695), + [sym_atx_h5_marker] = ACTIONS(695), + [sym_atx_h6_marker] = ACTIONS(695), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(695), + [sym__thematic_break] = ACTIONS(695), + [sym__list_marker_minus] = ACTIONS(695), + [sym__list_marker_plus] = ACTIONS(695), + [sym__list_marker_star] = ACTIONS(695), + [sym__list_marker_parenthesis] = ACTIONS(695), + [sym__list_marker_dot] = ACTIONS(695), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_star_dont_interrupt] = ACTIONS(695), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(695), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(695), + [sym__fenced_code_block_start_backtick] = ACTIONS(695), + [sym__fenced_code_block_start_tilde] = ACTIONS(695), + [sym__blank_line_start] = ACTIONS(695), + [sym__code_span_start] = ACTIONS(695), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(695), + [sym__emphasis_open_underscore] = ACTIONS(695), + }, + [272] = { + [aux_sym__ignore_matching_tokens] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(695), + [aux_sym__html_block_1_token1] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_DQUOTE] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(697), + [anon_sym_SQUOTE] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(695), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_AT] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_BSLASH] = ACTIONS(697), + [anon_sym_RBRACK] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym__] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_TILDE] = ACTIONS(695), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(697), + [anon_sym_LT_QMARK] = ACTIONS(697), + [aux_sym__html_block_4_token1] = ACTIONS(697), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(695), + [aux_sym__html_block_6_token1] = ACTIONS(697), + [aux_sym__html_block_6_token2] = ACTIONS(695), + [sym__open_tag_html_block] = ACTIONS(695), + [sym__open_tag_html_block_newline] = ACTIONS(695), + [sym__closing_tag_html_block] = ACTIONS(695), + [sym__closing_tag_html_block_newline] = ACTIONS(695), + [sym_backslash_escape] = ACTIONS(695), + [sym_uri_autolink] = ACTIONS(695), + [sym_email_autolink] = ACTIONS(695), + [sym_entity_reference] = ACTIONS(695), + [sym_numeric_character_reference] = ACTIONS(695), + [sym__whitespace_ge_2] = ACTIONS(695), + [aux_sym__whitespace_token1] = ACTIONS(697), + [sym__word_no_digit] = ACTIONS(695), + [sym__digits] = ACTIONS(695), + [aux_sym__newline_token1] = ACTIONS(695), + [sym__block_continuation] = ACTIONS(1432), + [sym__block_quote_start] = ACTIONS(695), + [sym__indented_chunk_start] = ACTIONS(695), + [sym_atx_h1_marker] = ACTIONS(695), + [sym_atx_h2_marker] = ACTIONS(695), + [sym_atx_h3_marker] = ACTIONS(695), + [sym_atx_h4_marker] = ACTIONS(695), + [sym_atx_h5_marker] = ACTIONS(695), + [sym_atx_h6_marker] = ACTIONS(695), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(695), + [sym__thematic_break] = ACTIONS(695), + [sym__list_marker_minus] = ACTIONS(695), + [sym__list_marker_plus] = ACTIONS(695), + [sym__list_marker_star] = ACTIONS(695), + [sym__list_marker_parenthesis] = ACTIONS(695), + [sym__list_marker_dot] = ACTIONS(695), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(695), + [sym__list_marker_star_dont_interrupt] = ACTIONS(695), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(695), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(695), + [sym__fenced_code_block_start_backtick] = ACTIONS(695), + [sym__fenced_code_block_start_tilde] = ACTIONS(695), + [sym__blank_line_start] = ACTIONS(695), + [sym__code_span_start] = ACTIONS(695), + [sym__last_token_whitespace] = ACTIONS(1432), + [sym__emphasis_open_star] = ACTIONS(695), + [sym__emphasis_open_underscore] = ACTIONS(695), + }, + [273] = { + [sym_link_title] = STATE(2149), + [sym__whitespace] = STATE(2040), + [ts_builtin_sym_end] = ACTIONS(703), + [aux_sym__html_block_1_token1] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(705), + [anon_sym_POUND] = ACTIONS(703), + [anon_sym_DOLLAR] = ACTIONS(703), + [anon_sym_PERCENT] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(708), + [anon_sym_SQUOTE] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_COMMA] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(703), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(703), + [anon_sym_AT] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_BSLASH] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(703), + [anon_sym_CARET] = ACTIONS(703), + [anon_sym__] = ACTIONS(703), + [anon_sym_BQUOTE] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_RBRACE] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(703), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(708), + [anon_sym_LT_QMARK] = ACTIONS(708), + [aux_sym__html_block_4_token1] = ACTIONS(708), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(703), + [aux_sym__html_block_6_token1] = ACTIONS(708), + [aux_sym__html_block_6_token2] = ACTIONS(703), + [sym__open_tag_html_block] = ACTIONS(703), + [sym__open_tag_html_block_newline] = ACTIONS(703), + [sym__closing_tag_html_block] = ACTIONS(703), + [sym__closing_tag_html_block_newline] = ACTIONS(703), + [sym_backslash_escape] = ACTIONS(703), + [sym_uri_autolink] = ACTIONS(703), + [sym_email_autolink] = ACTIONS(703), + [sym_entity_reference] = ACTIONS(703), + [sym_numeric_character_reference] = ACTIONS(703), + [sym__whitespace_ge_2] = ACTIONS(716), + [aux_sym__whitespace_token1] = ACTIONS(719), + [sym__word_no_digit] = ACTIONS(703), + [sym__digits] = ACTIONS(703), + [aux_sym__newline_token1] = ACTIONS(703), + [sym__block_quote_start] = ACTIONS(703), + [sym__indented_chunk_start] = ACTIONS(703), + [sym_atx_h1_marker] = ACTIONS(703), + [sym_atx_h2_marker] = ACTIONS(703), + [sym_atx_h3_marker] = ACTIONS(703), + [sym_atx_h4_marker] = ACTIONS(703), + [sym_atx_h5_marker] = ACTIONS(703), + [sym_atx_h6_marker] = ACTIONS(703), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(703), + [sym__thematic_break] = ACTIONS(703), + [sym__list_marker_minus] = ACTIONS(703), + [sym__list_marker_plus] = ACTIONS(703), + [sym__list_marker_star] = ACTIONS(703), + [sym__list_marker_parenthesis] = ACTIONS(703), + [sym__list_marker_dot] = ACTIONS(703), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(703), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(703), + [sym__list_marker_star_dont_interrupt] = ACTIONS(703), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(703), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(703), + [sym__fenced_code_block_start_backtick] = ACTIONS(703), + [sym__fenced_code_block_start_tilde] = ACTIONS(703), + [sym__blank_line_start] = ACTIONS(703), + [sym__code_span_start] = ACTIONS(703), + [sym__emphasis_open_star] = ACTIONS(703), + [sym__emphasis_open_underscore] = ACTIONS(703), + [sym__no_indented_chunk] = ACTIONS(1434), + }, + [274] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(855), + [aux_sym__html_block_1_token1] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_BSLASH] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym__] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), + [anon_sym_LT_QMARK] = ACTIONS(857), + [aux_sym__html_block_4_token1] = ACTIONS(857), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), + [aux_sym__html_block_6_token1] = ACTIONS(857), + [aux_sym__html_block_6_token2] = ACTIONS(855), + [sym__open_tag_html_block] = ACTIONS(855), + [sym__open_tag_html_block_newline] = ACTIONS(855), + [sym__closing_tag_html_block] = ACTIONS(855), + [sym__closing_tag_html_block_newline] = ACTIONS(855), + [sym_backslash_escape] = ACTIONS(855), + [sym_uri_autolink] = ACTIONS(855), + [sym_email_autolink] = ACTIONS(855), + [sym_entity_reference] = ACTIONS(855), + [sym_numeric_character_reference] = ACTIONS(855), + [sym__whitespace_ge_2] = ACTIONS(855), + [aux_sym__whitespace_token1] = ACTIONS(857), + [sym__word_no_digit] = ACTIONS(855), + [sym__digits] = ACTIONS(855), + [aux_sym__newline_token1] = ACTIONS(855), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(855), + [sym__indented_chunk_start] = ACTIONS(855), + [sym_atx_h1_marker] = ACTIONS(855), + [sym_atx_h2_marker] = ACTIONS(855), + [sym_atx_h3_marker] = ACTIONS(855), + [sym_atx_h4_marker] = ACTIONS(855), + [sym_atx_h5_marker] = ACTIONS(855), + [sym_atx_h6_marker] = ACTIONS(855), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(855), + [sym__thematic_break] = ACTIONS(855), + [sym__list_marker_minus] = ACTIONS(855), + [sym__list_marker_plus] = ACTIONS(855), + [sym__list_marker_star] = ACTIONS(855), + [sym__list_marker_parenthesis] = ACTIONS(855), + [sym__list_marker_dot] = ACTIONS(855), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_star_dont_interrupt] = ACTIONS(855), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), + [sym__fenced_code_block_start_backtick] = ACTIONS(855), + [sym__fenced_code_block_start_tilde] = ACTIONS(855), + [sym__blank_line_start] = ACTIONS(855), + [sym__code_span_start] = ACTIONS(855), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(855), + [sym__emphasis_open_underscore] = ACTIONS(855), + }, + [275] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(724), + [aux_sym__html_block_1_token1] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_POUND] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(724), + [anon_sym_AMP] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_DOT] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_COLON] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_EQ] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_BSLASH] = ACTIONS(726), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_CARET] = ACTIONS(724), + [anon_sym__] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(724), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(726), + [anon_sym_LT_QMARK] = ACTIONS(726), + [aux_sym__html_block_4_token1] = ACTIONS(726), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(724), + [aux_sym__html_block_6_token1] = ACTIONS(726), + [aux_sym__html_block_6_token2] = ACTIONS(724), + [sym__open_tag_html_block] = ACTIONS(724), + [sym__open_tag_html_block_newline] = ACTIONS(724), + [sym__closing_tag_html_block] = ACTIONS(724), + [sym__closing_tag_html_block_newline] = ACTIONS(724), + [sym_backslash_escape] = ACTIONS(724), + [sym_uri_autolink] = ACTIONS(724), + [sym_email_autolink] = ACTIONS(724), + [sym_entity_reference] = ACTIONS(724), + [sym_numeric_character_reference] = ACTIONS(724), + [sym__whitespace_ge_2] = ACTIONS(724), + [aux_sym__whitespace_token1] = ACTIONS(726), + [sym__word_no_digit] = ACTIONS(724), + [sym__digits] = ACTIONS(724), + [aux_sym__newline_token1] = ACTIONS(724), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(724), + [sym__indented_chunk_start] = ACTIONS(724), + [sym_atx_h1_marker] = ACTIONS(724), + [sym_atx_h2_marker] = ACTIONS(724), + [sym_atx_h3_marker] = ACTIONS(724), + [sym_atx_h4_marker] = ACTIONS(724), + [sym_atx_h5_marker] = ACTIONS(724), + [sym_atx_h6_marker] = ACTIONS(724), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(724), + [sym__thematic_break] = ACTIONS(724), + [sym__list_marker_minus] = ACTIONS(724), + [sym__list_marker_plus] = ACTIONS(724), + [sym__list_marker_star] = ACTIONS(724), + [sym__list_marker_parenthesis] = ACTIONS(724), + [sym__list_marker_dot] = ACTIONS(724), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(724), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(724), + [sym__list_marker_star_dont_interrupt] = ACTIONS(724), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(724), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(724), + [sym__fenced_code_block_start_backtick] = ACTIONS(724), + [sym__fenced_code_block_start_tilde] = ACTIONS(724), + [sym__blank_line_start] = ACTIONS(724), + [sym__code_span_start] = ACTIONS(724), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(724), + [sym__emphasis_open_underscore] = ACTIONS(724), + }, + [276] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(728), + [aux_sym__html_block_1_token1] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_POUND] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_PERCENT] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_DOT] = ACTIONS(728), + [anon_sym_SLASH] = ACTIONS(728), + [anon_sym_COLON] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_QMARK] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(728), + [anon_sym_BSLASH] = ACTIONS(730), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_CARET] = ACTIONS(728), + [anon_sym__] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_TILDE] = ACTIONS(728), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(730), + [anon_sym_LT_QMARK] = ACTIONS(730), + [aux_sym__html_block_4_token1] = ACTIONS(730), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(728), + [aux_sym__html_block_6_token1] = ACTIONS(730), + [aux_sym__html_block_6_token2] = ACTIONS(728), + [sym__open_tag_html_block] = ACTIONS(728), + [sym__open_tag_html_block_newline] = ACTIONS(728), + [sym__closing_tag_html_block] = ACTIONS(728), + [sym__closing_tag_html_block_newline] = ACTIONS(728), + [sym_backslash_escape] = ACTIONS(728), + [sym_uri_autolink] = ACTIONS(728), + [sym_email_autolink] = ACTIONS(728), + [sym_entity_reference] = ACTIONS(728), + [sym_numeric_character_reference] = ACTIONS(728), + [sym__whitespace_ge_2] = ACTIONS(728), + [aux_sym__whitespace_token1] = ACTIONS(730), + [sym__word_no_digit] = ACTIONS(728), + [sym__digits] = ACTIONS(728), + [aux_sym__newline_token1] = ACTIONS(728), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(728), + [sym__indented_chunk_start] = ACTIONS(728), + [sym_atx_h1_marker] = ACTIONS(728), + [sym_atx_h2_marker] = ACTIONS(728), + [sym_atx_h3_marker] = ACTIONS(728), + [sym_atx_h4_marker] = ACTIONS(728), + [sym_atx_h5_marker] = ACTIONS(728), + [sym_atx_h6_marker] = ACTIONS(728), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(728), + [sym__thematic_break] = ACTIONS(728), + [sym__list_marker_minus] = ACTIONS(728), + [sym__list_marker_plus] = ACTIONS(728), + [sym__list_marker_star] = ACTIONS(728), + [sym__list_marker_parenthesis] = ACTIONS(728), + [sym__list_marker_dot] = ACTIONS(728), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(728), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(728), + [sym__list_marker_star_dont_interrupt] = ACTIONS(728), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(728), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(728), + [sym__fenced_code_block_start_backtick] = ACTIONS(728), + [sym__fenced_code_block_start_tilde] = ACTIONS(728), + [sym__blank_line_start] = ACTIONS(728), + [sym__code_span_start] = ACTIONS(728), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(728), + [sym__emphasis_open_underscore] = ACTIONS(728), + }, + [277] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(732), + [aux_sym__html_block_1_token1] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_POUND] = ACTIONS(732), + [anon_sym_DOLLAR] = ACTIONS(732), + [anon_sym_PERCENT] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_COMMA] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_DOT] = ACTIONS(732), + [anon_sym_SLASH] = ACTIONS(732), + [anon_sym_COLON] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_QMARK] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_BSLASH] = ACTIONS(734), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_CARET] = ACTIONS(732), + [anon_sym__] = ACTIONS(732), + [anon_sym_BQUOTE] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(732), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(734), + [anon_sym_LT_QMARK] = ACTIONS(734), + [aux_sym__html_block_4_token1] = ACTIONS(734), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(732), + [aux_sym__html_block_6_token1] = ACTIONS(734), + [aux_sym__html_block_6_token2] = ACTIONS(732), + [sym__open_tag_html_block] = ACTIONS(732), + [sym__open_tag_html_block_newline] = ACTIONS(732), + [sym__closing_tag_html_block] = ACTIONS(732), + [sym__closing_tag_html_block_newline] = ACTIONS(732), + [sym_backslash_escape] = ACTIONS(732), + [sym_uri_autolink] = ACTIONS(732), + [sym_email_autolink] = ACTIONS(732), + [sym_entity_reference] = ACTIONS(732), + [sym_numeric_character_reference] = ACTIONS(732), + [sym__whitespace_ge_2] = ACTIONS(732), + [aux_sym__whitespace_token1] = ACTIONS(734), + [sym__word_no_digit] = ACTIONS(732), + [sym__digits] = ACTIONS(732), + [aux_sym__newline_token1] = ACTIONS(732), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(732), + [sym__indented_chunk_start] = ACTIONS(732), + [sym_atx_h1_marker] = ACTIONS(732), + [sym_atx_h2_marker] = ACTIONS(732), + [sym_atx_h3_marker] = ACTIONS(732), + [sym_atx_h4_marker] = ACTIONS(732), + [sym_atx_h5_marker] = ACTIONS(732), + [sym_atx_h6_marker] = ACTIONS(732), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(732), + [sym__thematic_break] = ACTIONS(732), + [sym__list_marker_minus] = ACTIONS(732), + [sym__list_marker_plus] = ACTIONS(732), + [sym__list_marker_star] = ACTIONS(732), + [sym__list_marker_parenthesis] = ACTIONS(732), + [sym__list_marker_dot] = ACTIONS(732), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(732), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(732), + [sym__list_marker_star_dont_interrupt] = ACTIONS(732), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(732), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(732), + [sym__fenced_code_block_start_backtick] = ACTIONS(732), + [sym__fenced_code_block_start_tilde] = ACTIONS(732), + [sym__blank_line_start] = ACTIONS(732), + [sym__code_span_start] = ACTIONS(732), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(732), + [sym__emphasis_open_underscore] = ACTIONS(732), + }, + [278] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(736), + [aux_sym__html_block_1_token1] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_POUND] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_PERCENT] = ACTIONS(736), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_SQUOTE] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_COMMA] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_COLON] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_EQ] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_QMARK] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_BSLASH] = ACTIONS(738), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(736), + [anon_sym__] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_TILDE] = ACTIONS(736), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(738), + [anon_sym_LT_QMARK] = ACTIONS(738), + [aux_sym__html_block_4_token1] = ACTIONS(738), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(736), + [aux_sym__html_block_6_token1] = ACTIONS(738), + [aux_sym__html_block_6_token2] = ACTIONS(736), + [sym__open_tag_html_block] = ACTIONS(736), + [sym__open_tag_html_block_newline] = ACTIONS(736), + [sym__closing_tag_html_block] = ACTIONS(736), + [sym__closing_tag_html_block_newline] = ACTIONS(736), + [sym_backslash_escape] = ACTIONS(736), + [sym_uri_autolink] = ACTIONS(736), + [sym_email_autolink] = ACTIONS(736), + [sym_entity_reference] = ACTIONS(736), + [sym_numeric_character_reference] = ACTIONS(736), + [sym__whitespace_ge_2] = ACTIONS(736), + [aux_sym__whitespace_token1] = ACTIONS(738), + [sym__word_no_digit] = ACTIONS(736), + [sym__digits] = ACTIONS(736), + [aux_sym__newline_token1] = ACTIONS(736), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(736), + [sym__indented_chunk_start] = ACTIONS(736), + [sym_atx_h1_marker] = ACTIONS(736), + [sym_atx_h2_marker] = ACTIONS(736), + [sym_atx_h3_marker] = ACTIONS(736), + [sym_atx_h4_marker] = ACTIONS(736), + [sym_atx_h5_marker] = ACTIONS(736), + [sym_atx_h6_marker] = ACTIONS(736), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(736), + [sym__thematic_break] = ACTIONS(736), + [sym__list_marker_minus] = ACTIONS(736), + [sym__list_marker_plus] = ACTIONS(736), + [sym__list_marker_star] = ACTIONS(736), + [sym__list_marker_parenthesis] = ACTIONS(736), + [sym__list_marker_dot] = ACTIONS(736), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(736), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(736), + [sym__list_marker_star_dont_interrupt] = ACTIONS(736), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(736), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(736), + [sym__fenced_code_block_start_backtick] = ACTIONS(736), + [sym__fenced_code_block_start_tilde] = ACTIONS(736), + [sym__blank_line_start] = ACTIONS(736), + [sym__code_span_start] = ACTIONS(736), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(736), + [sym__emphasis_open_underscore] = ACTIONS(736), + }, + [279] = { + [aux_sym__ignore_matching_tokens] = STATE(199), [ts_builtin_sym_end] = ACTIONS(740), [aux_sym__html_block_1_token1] = ACTIONS(740), [anon_sym_BANG] = ACTIONS(740), @@ -49176,7 +56502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(740), [sym__digits] = ACTIONS(740), [aux_sym__newline_token1] = ACTIONS(740), - [sym__block_continuation] = ACTIONS(177), + [sym__block_continuation] = ACTIONS(183), [sym__block_quote_start] = ACTIONS(740), [sym__indented_chunk_start] = ACTIONS(740), [sym_atx_h1_marker] = ACTIONS(740), @@ -49201,437 +56527,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(740), [sym__blank_line_start] = ACTIONS(740), [sym__code_span_start] = ACTIONS(740), - [sym__last_token_whitespace] = ACTIONS(177), + [sym__last_token_whitespace] = ACTIONS(183), [sym__emphasis_open_star] = ACTIONS(740), [sym__emphasis_open_underscore] = ACTIONS(740), }, - [194] = { - [aux_sym__ignore_matching_tokens] = STATE(154), - [aux_sym__html_block_1_token1] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_PERCENT] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_COLON] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_LT] = ACTIONS(1020), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_AT] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_BSLASH] = ACTIONS(1020), - [anon_sym_RBRACK] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), - [anon_sym__] = ACTIONS(1018), - [anon_sym_BQUOTE] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1020), - [anon_sym_LT_QMARK] = ACTIONS(1020), - [aux_sym__html_block_4_token1] = ACTIONS(1020), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1018), - [aux_sym__html_block_6_token1] = ACTIONS(1020), - [aux_sym__html_block_6_token2] = ACTIONS(1018), - [sym__open_tag_html_block] = ACTIONS(1018), - [sym__open_tag_html_block_newline] = ACTIONS(1018), - [sym__closing_tag_html_block] = ACTIONS(1018), - [sym__closing_tag_html_block_newline] = ACTIONS(1018), - [sym_backslash_escape] = ACTIONS(1018), - [sym_uri_autolink] = ACTIONS(1018), - [sym_email_autolink] = ACTIONS(1018), - [sym_entity_reference] = ACTIONS(1018), - [sym_numeric_character_reference] = ACTIONS(1018), - [sym__whitespace_ge_2] = ACTIONS(1018), - [aux_sym__whitespace_token1] = ACTIONS(1020), - [sym__word_no_digit] = ACTIONS(1018), - [sym__digits] = ACTIONS(1018), - [aux_sym__newline_token1] = ACTIONS(1018), - [sym__block_close] = ACTIONS(1018), - [sym__block_continuation] = ACTIONS(1022), - [sym__block_quote_start] = ACTIONS(1018), - [sym__indented_chunk_start] = ACTIONS(1018), - [sym_atx_h1_marker] = ACTIONS(1018), - [sym_atx_h2_marker] = ACTIONS(1018), - [sym_atx_h3_marker] = ACTIONS(1018), - [sym_atx_h4_marker] = ACTIONS(1018), - [sym_atx_h5_marker] = ACTIONS(1018), - [sym_atx_h6_marker] = ACTIONS(1018), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1018), - [sym__thematic_break] = ACTIONS(1018), - [sym__list_marker_minus] = ACTIONS(1018), - [sym__list_marker_plus] = ACTIONS(1018), - [sym__list_marker_star] = ACTIONS(1018), - [sym__list_marker_parenthesis] = ACTIONS(1018), - [sym__list_marker_dot] = ACTIONS(1018), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1018), - [sym__fenced_code_block_start_backtick] = ACTIONS(1018), - [sym__fenced_code_block_start_tilde] = ACTIONS(1018), - [sym__blank_line_start] = ACTIONS(1018), - [sym__code_span_start] = ACTIONS(1018), - [sym__last_token_whitespace] = ACTIONS(1022), - [sym__emphasis_open_star] = ACTIONS(1018), - [sym__emphasis_open_underscore] = ACTIONS(1018), - }, - [195] = { - [aux_sym__ignore_matching_tokens] = STATE(256), - [ts_builtin_sym_end] = ACTIONS(1024), - [aux_sym__html_block_1_token1] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_PERCENT] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1024), - [anon_sym_SLASH] = ACTIONS(1024), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1024), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_BSLASH] = ACTIONS(1026), - [anon_sym_RBRACK] = ACTIONS(1024), - [anon_sym_CARET] = ACTIONS(1024), - [anon_sym__] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1026), - [anon_sym_LT_QMARK] = ACTIONS(1026), - [aux_sym__html_block_4_token1] = ACTIONS(1026), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1024), - [aux_sym__html_block_6_token1] = ACTIONS(1026), - [aux_sym__html_block_6_token2] = ACTIONS(1024), - [sym__open_tag_html_block] = ACTIONS(1024), - [sym__open_tag_html_block_newline] = ACTIONS(1024), - [sym__closing_tag_html_block] = ACTIONS(1024), - [sym__closing_tag_html_block_newline] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [sym_uri_autolink] = ACTIONS(1024), - [sym_email_autolink] = ACTIONS(1024), - [sym_entity_reference] = ACTIONS(1024), - [sym_numeric_character_reference] = ACTIONS(1024), - [sym__whitespace_ge_2] = ACTIONS(1024), - [aux_sym__whitespace_token1] = ACTIONS(1026), - [sym__word_no_digit] = ACTIONS(1024), - [sym__digits] = ACTIONS(1024), - [aux_sym__newline_token1] = ACTIONS(1024), - [sym__block_continuation] = ACTIONS(1028), - [sym__block_quote_start] = ACTIONS(1024), - [sym__indented_chunk_start] = ACTIONS(1024), - [sym_atx_h1_marker] = ACTIONS(1024), - [sym_atx_h2_marker] = ACTIONS(1024), - [sym_atx_h3_marker] = ACTIONS(1024), - [sym_atx_h4_marker] = ACTIONS(1024), - [sym_atx_h5_marker] = ACTIONS(1024), - [sym_atx_h6_marker] = ACTIONS(1024), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1024), - [sym__thematic_break] = ACTIONS(1024), - [sym__list_marker_minus] = ACTIONS(1024), - [sym__list_marker_plus] = ACTIONS(1024), - [sym__list_marker_star] = ACTIONS(1024), - [sym__list_marker_parenthesis] = ACTIONS(1024), - [sym__list_marker_dot] = ACTIONS(1024), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1024), - [sym__fenced_code_block_start_backtick] = ACTIONS(1024), - [sym__fenced_code_block_start_tilde] = ACTIONS(1024), - [sym__blank_line_start] = ACTIONS(1024), - [sym__code_span_start] = ACTIONS(1024), - [sym__last_token_whitespace] = ACTIONS(1028), - [sym__emphasis_open_star] = ACTIONS(1024), - [sym__emphasis_open_underscore] = ACTIONS(1024), - }, - [196] = { - [aux_sym__ignore_matching_tokens] = STATE(156), - [aux_sym__html_block_1_token1] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_PERCENT] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_SLASH] = ACTIONS(1030), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1030), - [anon_sym_GT] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1030), - [anon_sym_AT] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_BSLASH] = ACTIONS(1032), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1030), - [anon_sym__] = ACTIONS(1030), - [anon_sym_BQUOTE] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1032), - [anon_sym_LT_QMARK] = ACTIONS(1032), - [aux_sym__html_block_4_token1] = ACTIONS(1032), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1030), - [aux_sym__html_block_6_token1] = ACTIONS(1032), - [aux_sym__html_block_6_token2] = ACTIONS(1030), - [sym__open_tag_html_block] = ACTIONS(1030), - [sym__open_tag_html_block_newline] = ACTIONS(1030), - [sym__closing_tag_html_block] = ACTIONS(1030), - [sym__closing_tag_html_block_newline] = ACTIONS(1030), - [sym_backslash_escape] = ACTIONS(1030), - [sym_uri_autolink] = ACTIONS(1030), - [sym_email_autolink] = ACTIONS(1030), - [sym_entity_reference] = ACTIONS(1030), - [sym_numeric_character_reference] = ACTIONS(1030), - [sym__whitespace_ge_2] = ACTIONS(1030), - [aux_sym__whitespace_token1] = ACTIONS(1032), - [sym__word_no_digit] = ACTIONS(1030), - [sym__digits] = ACTIONS(1030), - [aux_sym__newline_token1] = ACTIONS(1030), - [sym__block_close] = ACTIONS(1030), - [sym__block_continuation] = ACTIONS(1034), - [sym__block_quote_start] = ACTIONS(1030), - [sym__indented_chunk_start] = ACTIONS(1030), - [sym_atx_h1_marker] = ACTIONS(1030), - [sym_atx_h2_marker] = ACTIONS(1030), - [sym_atx_h3_marker] = ACTIONS(1030), - [sym_atx_h4_marker] = ACTIONS(1030), - [sym_atx_h5_marker] = ACTIONS(1030), - [sym_atx_h6_marker] = ACTIONS(1030), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1030), - [sym__thematic_break] = ACTIONS(1030), - [sym__list_marker_minus] = ACTIONS(1030), - [sym__list_marker_plus] = ACTIONS(1030), - [sym__list_marker_star] = ACTIONS(1030), - [sym__list_marker_parenthesis] = ACTIONS(1030), - [sym__list_marker_dot] = ACTIONS(1030), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1030), - [sym__fenced_code_block_start_backtick] = ACTIONS(1030), - [sym__fenced_code_block_start_tilde] = ACTIONS(1030), - [sym__blank_line_start] = ACTIONS(1030), - [sym__code_span_start] = ACTIONS(1030), - [sym__last_token_whitespace] = ACTIONS(1034), - [sym__emphasis_open_star] = ACTIONS(1030), - [sym__emphasis_open_underscore] = ACTIONS(1030), + [280] = { + [aux_sym__ignore_matching_tokens] = STATE(285), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_close] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(1436), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), }, - [197] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(520), - [aux_sym__html_block_1_token1] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(522), - [anon_sym_LT_QMARK] = ACTIONS(522), - [aux_sym__html_block_4_token1] = ACTIONS(522), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(520), - [aux_sym__html_block_6_token1] = ACTIONS(522), - [aux_sym__html_block_6_token2] = ACTIONS(520), - [sym__open_tag_html_block] = ACTIONS(520), - [sym__open_tag_html_block_newline] = ACTIONS(520), - [sym__closing_tag_html_block] = ACTIONS(520), - [sym__closing_tag_html_block_newline] = ACTIONS(520), - [sym_backslash_escape] = ACTIONS(520), - [sym_uri_autolink] = ACTIONS(520), - [sym_email_autolink] = ACTIONS(520), - [sym_entity_reference] = ACTIONS(520), - [sym_numeric_character_reference] = ACTIONS(520), - [sym__whitespace_ge_2] = ACTIONS(520), - [aux_sym__whitespace_token1] = ACTIONS(522), - [sym__word_no_digit] = ACTIONS(520), - [sym__digits] = ACTIONS(520), - [aux_sym__newline_token1] = ACTIONS(520), - [sym__block_continuation] = ACTIONS(1036), - [sym__block_quote_start] = ACTIONS(520), - [sym__indented_chunk_start] = ACTIONS(520), - [sym_atx_h1_marker] = ACTIONS(520), - [sym_atx_h2_marker] = ACTIONS(520), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(520), - [sym_atx_h5_marker] = ACTIONS(520), - [sym_atx_h6_marker] = ACTIONS(520), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), - [sym__thematic_break] = ACTIONS(520), - [sym__list_marker_minus] = ACTIONS(520), - [sym__list_marker_plus] = ACTIONS(520), - [sym__list_marker_star] = ACTIONS(520), - [sym__list_marker_parenthesis] = ACTIONS(520), - [sym__list_marker_dot] = ACTIONS(520), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_star_dont_interrupt] = ACTIONS(520), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(520), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(520), - [sym__fenced_code_block_start_backtick] = ACTIONS(520), - [sym__fenced_code_block_start_tilde] = ACTIONS(520), - [sym__blank_line_start] = ACTIONS(520), - [sym__code_span_start] = ACTIONS(520), - [sym__last_token_whitespace] = ACTIONS(1036), - [sym__emphasis_open_star] = ACTIONS(520), - [sym__emphasis_open_underscore] = ACTIONS(520), + [281] = { + [aux_sym__ignore_matching_tokens] = STATE(269), + [ts_builtin_sym_end] = ACTIONS(744), + [aux_sym__html_block_1_token1] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_BSLASH] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym__] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(746), + [anon_sym_LT_QMARK] = ACTIONS(746), + [aux_sym__html_block_4_token1] = ACTIONS(746), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(744), + [aux_sym__html_block_6_token1] = ACTIONS(746), + [aux_sym__html_block_6_token2] = ACTIONS(744), + [sym__open_tag_html_block] = ACTIONS(744), + [sym__open_tag_html_block_newline] = ACTIONS(744), + [sym__closing_tag_html_block] = ACTIONS(744), + [sym__closing_tag_html_block_newline] = ACTIONS(744), + [sym_backslash_escape] = ACTIONS(744), + [sym_uri_autolink] = ACTIONS(744), + [sym_email_autolink] = ACTIONS(744), + [sym_entity_reference] = ACTIONS(744), + [sym_numeric_character_reference] = ACTIONS(744), + [sym__whitespace_ge_2] = ACTIONS(744), + [aux_sym__whitespace_token1] = ACTIONS(746), + [sym__word_no_digit] = ACTIONS(744), + [sym__digits] = ACTIONS(744), + [aux_sym__newline_token1] = ACTIONS(744), + [sym__block_continuation] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(744), + [sym__indented_chunk_start] = ACTIONS(744), + [sym_atx_h1_marker] = ACTIONS(744), + [sym_atx_h2_marker] = ACTIONS(744), + [sym_atx_h3_marker] = ACTIONS(744), + [sym_atx_h4_marker] = ACTIONS(744), + [sym_atx_h5_marker] = ACTIONS(744), + [sym_atx_h6_marker] = ACTIONS(744), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(744), + [sym__thematic_break] = ACTIONS(744), + [sym__list_marker_minus] = ACTIONS(744), + [sym__list_marker_plus] = ACTIONS(744), + [sym__list_marker_star] = ACTIONS(744), + [sym__list_marker_parenthesis] = ACTIONS(744), + [sym__list_marker_dot] = ACTIONS(744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(744), + [sym__fenced_code_block_start_backtick] = ACTIONS(744), + [sym__fenced_code_block_start_tilde] = ACTIONS(744), + [sym__blank_line_start] = ACTIONS(744), + [sym__code_span_start] = ACTIONS(744), + [sym__last_token_whitespace] = ACTIONS(1438), + [sym__emphasis_open_star] = ACTIONS(744), + [sym__emphasis_open_underscore] = ACTIONS(744), }, - [198] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1024), - [aux_sym__html_block_1_token1] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_PERCENT] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1024), - [anon_sym_SLASH] = ACTIONS(1024), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1024), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_BSLASH] = ACTIONS(1026), - [anon_sym_RBRACK] = ACTIONS(1024), - [anon_sym_CARET] = ACTIONS(1024), - [anon_sym__] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1026), - [anon_sym_LT_QMARK] = ACTIONS(1026), - [aux_sym__html_block_4_token1] = ACTIONS(1026), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1024), - [aux_sym__html_block_6_token1] = ACTIONS(1026), - [aux_sym__html_block_6_token2] = ACTIONS(1024), - [sym__open_tag_html_block] = ACTIONS(1024), - [sym__open_tag_html_block_newline] = ACTIONS(1024), - [sym__closing_tag_html_block] = ACTIONS(1024), - [sym__closing_tag_html_block_newline] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [sym_uri_autolink] = ACTIONS(1024), - [sym_email_autolink] = ACTIONS(1024), - [sym_entity_reference] = ACTIONS(1024), - [sym_numeric_character_reference] = ACTIONS(1024), - [sym__whitespace_ge_2] = ACTIONS(1024), - [aux_sym__whitespace_token1] = ACTIONS(1026), - [sym__word_no_digit] = ACTIONS(1024), - [sym__digits] = ACTIONS(1024), - [aux_sym__newline_token1] = ACTIONS(1024), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1024), - [sym__indented_chunk_start] = ACTIONS(1024), - [sym_atx_h1_marker] = ACTIONS(1024), - [sym_atx_h2_marker] = ACTIONS(1024), - [sym_atx_h3_marker] = ACTIONS(1024), - [sym_atx_h4_marker] = ACTIONS(1024), - [sym_atx_h5_marker] = ACTIONS(1024), - [sym_atx_h6_marker] = ACTIONS(1024), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1024), - [sym__thematic_break] = ACTIONS(1024), - [sym__list_marker_minus] = ACTIONS(1024), - [sym__list_marker_plus] = ACTIONS(1024), - [sym__list_marker_star] = ACTIONS(1024), - [sym__list_marker_parenthesis] = ACTIONS(1024), - [sym__list_marker_dot] = ACTIONS(1024), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1024), - [sym__fenced_code_block_start_backtick] = ACTIONS(1024), - [sym__fenced_code_block_start_tilde] = ACTIONS(1024), - [sym__blank_line_start] = ACTIONS(1024), - [sym__code_span_start] = ACTIONS(1024), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1024), - [sym__emphasis_open_underscore] = ACTIONS(1024), + [282] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(744), + [aux_sym__html_block_1_token1] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_COLON] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_BSLASH] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym__] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(744), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(746), + [anon_sym_LT_QMARK] = ACTIONS(746), + [aux_sym__html_block_4_token1] = ACTIONS(746), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(744), + [aux_sym__html_block_6_token1] = ACTIONS(746), + [aux_sym__html_block_6_token2] = ACTIONS(744), + [sym__open_tag_html_block] = ACTIONS(744), + [sym__open_tag_html_block_newline] = ACTIONS(744), + [sym__closing_tag_html_block] = ACTIONS(744), + [sym__closing_tag_html_block_newline] = ACTIONS(744), + [sym_backslash_escape] = ACTIONS(744), + [sym_uri_autolink] = ACTIONS(744), + [sym_email_autolink] = ACTIONS(744), + [sym_entity_reference] = ACTIONS(744), + [sym_numeric_character_reference] = ACTIONS(744), + [sym__whitespace_ge_2] = ACTIONS(744), + [aux_sym__whitespace_token1] = ACTIONS(746), + [sym__word_no_digit] = ACTIONS(744), + [sym__digits] = ACTIONS(744), + [aux_sym__newline_token1] = ACTIONS(744), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(744), + [sym__indented_chunk_start] = ACTIONS(744), + [sym_atx_h1_marker] = ACTIONS(744), + [sym_atx_h2_marker] = ACTIONS(744), + [sym_atx_h3_marker] = ACTIONS(744), + [sym_atx_h4_marker] = ACTIONS(744), + [sym_atx_h5_marker] = ACTIONS(744), + [sym_atx_h6_marker] = ACTIONS(744), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(744), + [sym__thematic_break] = ACTIONS(744), + [sym__list_marker_minus] = ACTIONS(744), + [sym__list_marker_plus] = ACTIONS(744), + [sym__list_marker_star] = ACTIONS(744), + [sym__list_marker_parenthesis] = ACTIONS(744), + [sym__list_marker_dot] = ACTIONS(744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(744), + [sym__fenced_code_block_start_backtick] = ACTIONS(744), + [sym__fenced_code_block_start_tilde] = ACTIONS(744), + [sym__blank_line_start] = ACTIONS(744), + [sym__code_span_start] = ACTIONS(744), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(744), + [sym__emphasis_open_underscore] = ACTIONS(744), }, - [199] = { - [aux_sym__ignore_matching_tokens] = STATE(145), + [283] = { + [aux_sym__ignore_matching_tokens] = STATE(271), [ts_builtin_sym_end] = ACTIONS(750), [aux_sym__html_block_1_token1] = ACTIONS(750), [anon_sym_BANG] = ACTIONS(750), @@ -49686,7 +56842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(750), [sym__digits] = ACTIONS(750), [aux_sym__newline_token1] = ACTIONS(750), - [sym__block_continuation] = ACTIONS(1039), + [sym__block_continuation] = ACTIONS(1440), [sym__block_quote_start] = ACTIONS(750), [sym__indented_chunk_start] = ACTIONS(750), [sym_atx_h1_marker] = ACTIONS(750), @@ -49711,12 +56867,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(750), [sym__blank_line_start] = ACTIONS(750), [sym__code_span_start] = ACTIONS(750), - [sym__last_token_whitespace] = ACTIONS(1039), + [sym__last_token_whitespace] = ACTIONS(1440), [sym__emphasis_open_star] = ACTIONS(750), [sym__emphasis_open_underscore] = ACTIONS(750), }, - [200] = { - [aux_sym__ignore_matching_tokens] = STATE(197), + [284] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_COLON] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_AT] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(484), + [anon_sym_LT_QMARK] = ACTIONS(484), + [aux_sym__html_block_4_token1] = ACTIONS(484), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(482), + [aux_sym__html_block_6_token1] = ACTIONS(484), + [aux_sym__html_block_6_token2] = ACTIONS(482), + [sym__open_tag_html_block] = ACTIONS(482), + [sym__open_tag_html_block_newline] = ACTIONS(482), + [sym__closing_tag_html_block] = ACTIONS(482), + [sym__closing_tag_html_block_newline] = ACTIONS(482), + [sym_backslash_escape] = ACTIONS(482), + [sym_uri_autolink] = ACTIONS(482), + [sym_email_autolink] = ACTIONS(482), + [sym_entity_reference] = ACTIONS(482), + [sym_numeric_character_reference] = ACTIONS(482), + [sym__whitespace_ge_2] = ACTIONS(482), + [aux_sym__whitespace_token1] = ACTIONS(484), + [sym__word_no_digit] = ACTIONS(482), + [sym__digits] = ACTIONS(482), + [aux_sym__newline_token1] = ACTIONS(482), + [sym__block_close] = ACTIONS(482), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(482), + [sym__indented_chunk_start] = ACTIONS(482), + [sym_atx_h1_marker] = ACTIONS(482), + [sym_atx_h2_marker] = ACTIONS(482), + [sym_atx_h3_marker] = ACTIONS(482), + [sym_atx_h4_marker] = ACTIONS(482), + [sym_atx_h5_marker] = ACTIONS(482), + [sym_atx_h6_marker] = ACTIONS(482), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(482), + [sym__thematic_break] = ACTIONS(482), + [sym__list_marker_minus] = ACTIONS(482), + [sym__list_marker_plus] = ACTIONS(482), + [sym__list_marker_star] = ACTIONS(482), + [sym__list_marker_parenthesis] = ACTIONS(482), + [sym__list_marker_dot] = ACTIONS(482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(482), + [sym__fenced_code_block_start_backtick] = ACTIONS(482), + [sym__fenced_code_block_start_tilde] = ACTIONS(482), + [sym__blank_line_start] = ACTIONS(482), + [sym__code_span_start] = ACTIONS(482), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(482), + [sym__emphasis_open_underscore] = ACTIONS(482), + }, + [285] = { + [aux_sym__ignore_matching_tokens] = STATE(225), + [aux_sym__html_block_1_token1] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PERCENT] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_BSLASH] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym__] = ACTIONS(492), + [anon_sym_BQUOTE] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(494), + [anon_sym_LT_QMARK] = ACTIONS(494), + [aux_sym__html_block_4_token1] = ACTIONS(494), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(492), + [aux_sym__html_block_6_token1] = ACTIONS(494), + [aux_sym__html_block_6_token2] = ACTIONS(492), + [sym__open_tag_html_block] = ACTIONS(492), + [sym__open_tag_html_block_newline] = ACTIONS(492), + [sym__closing_tag_html_block] = ACTIONS(492), + [sym__closing_tag_html_block_newline] = ACTIONS(492), + [sym_backslash_escape] = ACTIONS(492), + [sym_uri_autolink] = ACTIONS(492), + [sym_email_autolink] = ACTIONS(492), + [sym_entity_reference] = ACTIONS(492), + [sym_numeric_character_reference] = ACTIONS(492), + [sym__whitespace_ge_2] = ACTIONS(492), + [aux_sym__whitespace_token1] = ACTIONS(494), + [sym__word_no_digit] = ACTIONS(492), + [sym__digits] = ACTIONS(492), + [aux_sym__newline_token1] = ACTIONS(492), + [sym__block_close] = ACTIONS(492), + [sym__block_continuation] = ACTIONS(111), + [sym__block_quote_start] = ACTIONS(492), + [sym__indented_chunk_start] = ACTIONS(492), + [sym_atx_h1_marker] = ACTIONS(492), + [sym_atx_h2_marker] = ACTIONS(492), + [sym_atx_h3_marker] = ACTIONS(492), + [sym_atx_h4_marker] = ACTIONS(492), + [sym_atx_h5_marker] = ACTIONS(492), + [sym_atx_h6_marker] = ACTIONS(492), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(492), + [sym__thematic_break] = ACTIONS(492), + [sym__list_marker_minus] = ACTIONS(492), + [sym__list_marker_plus] = ACTIONS(492), + [sym__list_marker_star] = ACTIONS(492), + [sym__list_marker_parenthesis] = ACTIONS(492), + [sym__list_marker_dot] = ACTIONS(492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(492), + [sym__fenced_code_block_start_backtick] = ACTIONS(492), + [sym__fenced_code_block_start_tilde] = ACTIONS(492), + [sym__blank_line_start] = ACTIONS(492), + [sym__code_span_start] = ACTIONS(492), + [sym__last_token_whitespace] = ACTIONS(111), + [sym__emphasis_open_star] = ACTIONS(492), + [sym__emphasis_open_underscore] = ACTIONS(492), + }, + [286] = { + [aux_sym__ignore_matching_tokens] = STATE(199), [ts_builtin_sym_end] = ACTIONS(750), [aux_sym__html_block_1_token1] = ACTIONS(750), [anon_sym_BANG] = ACTIONS(750), @@ -49746,8137 +57072,1678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(750), [anon_sym_CARET] = ACTIONS(750), [anon_sym__] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_RBRACE] = ACTIONS(750), - [anon_sym_TILDE] = ACTIONS(750), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), - [anon_sym_LT_QMARK] = ACTIONS(752), - [aux_sym__html_block_4_token1] = ACTIONS(752), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(750), - [aux_sym__html_block_6_token1] = ACTIONS(752), - [aux_sym__html_block_6_token2] = ACTIONS(750), - [sym__open_tag_html_block] = ACTIONS(750), - [sym__open_tag_html_block_newline] = ACTIONS(750), - [sym__closing_tag_html_block] = ACTIONS(750), - [sym__closing_tag_html_block_newline] = ACTIONS(750), - [sym_backslash_escape] = ACTIONS(750), - [sym_uri_autolink] = ACTIONS(750), - [sym_email_autolink] = ACTIONS(750), - [sym_entity_reference] = ACTIONS(750), - [sym_numeric_character_reference] = ACTIONS(750), - [sym__whitespace_ge_2] = ACTIONS(750), - [aux_sym__whitespace_token1] = ACTIONS(752), - [sym__word_no_digit] = ACTIONS(750), - [sym__digits] = ACTIONS(750), - [aux_sym__newline_token1] = ACTIONS(750), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(750), - [sym__indented_chunk_start] = ACTIONS(750), - [sym_atx_h1_marker] = ACTIONS(750), - [sym_atx_h2_marker] = ACTIONS(750), - [sym_atx_h3_marker] = ACTIONS(750), - [sym_atx_h4_marker] = ACTIONS(750), - [sym_atx_h5_marker] = ACTIONS(750), - [sym_atx_h6_marker] = ACTIONS(750), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(750), - [sym__thematic_break] = ACTIONS(750), - [sym__list_marker_minus] = ACTIONS(750), - [sym__list_marker_plus] = ACTIONS(750), - [sym__list_marker_star] = ACTIONS(750), - [sym__list_marker_parenthesis] = ACTIONS(750), - [sym__list_marker_dot] = ACTIONS(750), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(750), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(750), - [sym__list_marker_star_dont_interrupt] = ACTIONS(750), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(750), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(750), - [sym__fenced_code_block_start_backtick] = ACTIONS(750), - [sym__fenced_code_block_start_tilde] = ACTIONS(750), - [sym__blank_line_start] = ACTIONS(750), - [sym__code_span_start] = ACTIONS(750), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(750), - [sym__emphasis_open_underscore] = ACTIONS(750), - }, - [201] = { - [aux_sym__ignore_matching_tokens] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(1041), - [aux_sym__html_block_1_token1] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_POUND] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_BSLASH] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1041), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1043), - [anon_sym_LT_QMARK] = ACTIONS(1043), - [aux_sym__html_block_4_token1] = ACTIONS(1043), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1041), - [aux_sym__html_block_6_token1] = ACTIONS(1043), - [aux_sym__html_block_6_token2] = ACTIONS(1041), - [sym__open_tag_html_block] = ACTIONS(1041), - [sym__open_tag_html_block_newline] = ACTIONS(1041), - [sym__closing_tag_html_block] = ACTIONS(1041), - [sym__closing_tag_html_block_newline] = ACTIONS(1041), - [sym_backslash_escape] = ACTIONS(1041), - [sym_uri_autolink] = ACTIONS(1041), - [sym_email_autolink] = ACTIONS(1041), - [sym_entity_reference] = ACTIONS(1041), - [sym_numeric_character_reference] = ACTIONS(1041), - [sym__whitespace_ge_2] = ACTIONS(1041), - [aux_sym__whitespace_token1] = ACTIONS(1043), - [sym__word_no_digit] = ACTIONS(1041), - [sym__digits] = ACTIONS(1041), - [aux_sym__newline_token1] = ACTIONS(1041), - [sym__block_continuation] = ACTIONS(1045), - [sym__block_quote_start] = ACTIONS(1041), - [sym__indented_chunk_start] = ACTIONS(1041), - [sym_atx_h1_marker] = ACTIONS(1041), - [sym_atx_h2_marker] = ACTIONS(1041), - [sym_atx_h3_marker] = ACTIONS(1041), - [sym_atx_h4_marker] = ACTIONS(1041), - [sym_atx_h5_marker] = ACTIONS(1041), - [sym_atx_h6_marker] = ACTIONS(1041), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1041), - [sym__thematic_break] = ACTIONS(1041), - [sym__list_marker_minus] = ACTIONS(1041), - [sym__list_marker_plus] = ACTIONS(1041), - [sym__list_marker_star] = ACTIONS(1041), - [sym__list_marker_parenthesis] = ACTIONS(1041), - [sym__list_marker_dot] = ACTIONS(1041), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1041), - [sym__fenced_code_block_start_backtick] = ACTIONS(1041), - [sym__fenced_code_block_start_tilde] = ACTIONS(1041), - [sym__blank_line_start] = ACTIONS(1041), - [sym__code_span_start] = ACTIONS(1041), - [sym__last_token_whitespace] = ACTIONS(1045), - [sym__emphasis_open_star] = ACTIONS(1041), - [sym__emphasis_open_underscore] = ACTIONS(1041), - }, - [202] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1041), - [aux_sym__html_block_1_token1] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_POUND] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_BSLASH] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1041), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1043), - [anon_sym_LT_QMARK] = ACTIONS(1043), - [aux_sym__html_block_4_token1] = ACTIONS(1043), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1041), - [aux_sym__html_block_6_token1] = ACTIONS(1043), - [aux_sym__html_block_6_token2] = ACTIONS(1041), - [sym__open_tag_html_block] = ACTIONS(1041), - [sym__open_tag_html_block_newline] = ACTIONS(1041), - [sym__closing_tag_html_block] = ACTIONS(1041), - [sym__closing_tag_html_block_newline] = ACTIONS(1041), - [sym_backslash_escape] = ACTIONS(1041), - [sym_uri_autolink] = ACTIONS(1041), - [sym_email_autolink] = ACTIONS(1041), - [sym_entity_reference] = ACTIONS(1041), - [sym_numeric_character_reference] = ACTIONS(1041), - [sym__whitespace_ge_2] = ACTIONS(1041), - [aux_sym__whitespace_token1] = ACTIONS(1043), - [sym__word_no_digit] = ACTIONS(1041), - [sym__digits] = ACTIONS(1041), - [aux_sym__newline_token1] = ACTIONS(1041), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1041), - [sym__indented_chunk_start] = ACTIONS(1041), - [sym_atx_h1_marker] = ACTIONS(1041), - [sym_atx_h2_marker] = ACTIONS(1041), - [sym_atx_h3_marker] = ACTIONS(1041), - [sym_atx_h4_marker] = ACTIONS(1041), - [sym_atx_h5_marker] = ACTIONS(1041), - [sym_atx_h6_marker] = ACTIONS(1041), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1041), - [sym__thematic_break] = ACTIONS(1041), - [sym__list_marker_minus] = ACTIONS(1041), - [sym__list_marker_plus] = ACTIONS(1041), - [sym__list_marker_star] = ACTIONS(1041), - [sym__list_marker_parenthesis] = ACTIONS(1041), - [sym__list_marker_dot] = ACTIONS(1041), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1041), - [sym__fenced_code_block_start_backtick] = ACTIONS(1041), - [sym__fenced_code_block_start_tilde] = ACTIONS(1041), - [sym__blank_line_start] = ACTIONS(1041), - [sym__code_span_start] = ACTIONS(1041), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1041), - [sym__emphasis_open_underscore] = ACTIONS(1041), - }, - [203] = { - [sym_list_marker_plus] = STATE(38), - [sym__list_item_plus] = STATE(203), - [aux_sym__list_plus_repeat1] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(1047), - [aux_sym__html_block_1_token1] = ACTIONS(1047), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PERCENT] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_STAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_DASH] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1047), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1047), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_AT] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_BSLASH] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_CARET] = ACTIONS(1047), - [anon_sym__] = ACTIONS(1047), - [anon_sym_BQUOTE] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_PIPE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1049), - [anon_sym_LT_QMARK] = ACTIONS(1049), - [aux_sym__html_block_4_token1] = ACTIONS(1049), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1047), - [aux_sym__html_block_6_token1] = ACTIONS(1049), - [aux_sym__html_block_6_token2] = ACTIONS(1047), - [sym__open_tag_html_block] = ACTIONS(1047), - [sym__open_tag_html_block_newline] = ACTIONS(1047), - [sym__closing_tag_html_block] = ACTIONS(1047), - [sym__closing_tag_html_block_newline] = ACTIONS(1047), - [sym_backslash_escape] = ACTIONS(1047), - [sym_uri_autolink] = ACTIONS(1047), - [sym_email_autolink] = ACTIONS(1047), - [sym_entity_reference] = ACTIONS(1047), - [sym_numeric_character_reference] = ACTIONS(1047), - [sym__whitespace_ge_2] = ACTIONS(1047), - [aux_sym__whitespace_token1] = ACTIONS(1049), - [sym__word_no_digit] = ACTIONS(1047), - [sym__digits] = ACTIONS(1047), - [aux_sym__newline_token1] = ACTIONS(1047), - [sym__block_quote_start] = ACTIONS(1047), - [sym__indented_chunk_start] = ACTIONS(1047), - [sym_atx_h1_marker] = ACTIONS(1047), - [sym_atx_h2_marker] = ACTIONS(1047), - [sym_atx_h3_marker] = ACTIONS(1047), - [sym_atx_h4_marker] = ACTIONS(1047), - [sym_atx_h5_marker] = ACTIONS(1047), - [sym_atx_h6_marker] = ACTIONS(1047), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1047), - [sym__thematic_break] = ACTIONS(1047), - [sym__list_marker_minus] = ACTIONS(1047), - [sym__list_marker_plus] = ACTIONS(1051), - [sym__list_marker_star] = ACTIONS(1047), - [sym__list_marker_parenthesis] = ACTIONS(1047), - [sym__list_marker_dot] = ACTIONS(1047), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1047), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1047), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1047), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1047), - [sym__fenced_code_block_start_backtick] = ACTIONS(1047), - [sym__fenced_code_block_start_tilde] = ACTIONS(1047), - [sym__blank_line_start] = ACTIONS(1047), - [sym__code_span_start] = ACTIONS(1047), - [sym__emphasis_open_star] = ACTIONS(1047), - [sym__emphasis_open_underscore] = ACTIONS(1047), - }, - [204] = { - [sym_list_marker_minus] = STATE(39), - [sym__list_item_minus] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(204), - [ts_builtin_sym_end] = ACTIONS(1054), - [aux_sym__html_block_1_token1] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_PERCENT] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_BSLASH] = ACTIONS(1056), - [anon_sym_RBRACK] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1054), - [anon_sym_BQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1056), - [anon_sym_LT_QMARK] = ACTIONS(1056), - [aux_sym__html_block_4_token1] = ACTIONS(1056), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1054), - [aux_sym__html_block_6_token1] = ACTIONS(1056), - [aux_sym__html_block_6_token2] = ACTIONS(1054), - [sym__open_tag_html_block] = ACTIONS(1054), - [sym__open_tag_html_block_newline] = ACTIONS(1054), - [sym__closing_tag_html_block] = ACTIONS(1054), - [sym__closing_tag_html_block_newline] = ACTIONS(1054), - [sym_backslash_escape] = ACTIONS(1054), - [sym_uri_autolink] = ACTIONS(1054), - [sym_email_autolink] = ACTIONS(1054), - [sym_entity_reference] = ACTIONS(1054), - [sym_numeric_character_reference] = ACTIONS(1054), - [sym__whitespace_ge_2] = ACTIONS(1054), - [aux_sym__whitespace_token1] = ACTIONS(1056), - [sym__word_no_digit] = ACTIONS(1054), - [sym__digits] = ACTIONS(1054), - [aux_sym__newline_token1] = ACTIONS(1054), - [sym__block_quote_start] = ACTIONS(1054), - [sym__indented_chunk_start] = ACTIONS(1054), - [sym_atx_h1_marker] = ACTIONS(1054), - [sym_atx_h2_marker] = ACTIONS(1054), - [sym_atx_h3_marker] = ACTIONS(1054), - [sym_atx_h4_marker] = ACTIONS(1054), - [sym_atx_h5_marker] = ACTIONS(1054), - [sym_atx_h6_marker] = ACTIONS(1054), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1054), - [sym__thematic_break] = ACTIONS(1054), - [sym__list_marker_minus] = ACTIONS(1058), - [sym__list_marker_plus] = ACTIONS(1054), - [sym__list_marker_star] = ACTIONS(1054), - [sym__list_marker_parenthesis] = ACTIONS(1054), - [sym__list_marker_dot] = ACTIONS(1054), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1058), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1054), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1054), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1054), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1054), - [sym__fenced_code_block_start_backtick] = ACTIONS(1054), - [sym__fenced_code_block_start_tilde] = ACTIONS(1054), - [sym__blank_line_start] = ACTIONS(1054), - [sym__code_span_start] = ACTIONS(1054), - [sym__emphasis_open_star] = ACTIONS(1054), - [sym__emphasis_open_underscore] = ACTIONS(1054), - }, - [205] = { - [sym_list_marker_star] = STATE(40), - [sym__list_item_star] = STATE(205), - [aux_sym__list_star_repeat1] = STATE(205), - [ts_builtin_sym_end] = ACTIONS(1061), - [aux_sym__html_block_1_token1] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [anon_sym_POUND] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_PERCENT] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1061), - [anon_sym_COLON] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_QMARK] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_CARET] = ACTIONS(1061), - [anon_sym__] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1061), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1063), - [anon_sym_LT_QMARK] = ACTIONS(1063), - [aux_sym__html_block_4_token1] = ACTIONS(1063), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1061), - [aux_sym__html_block_6_token1] = ACTIONS(1063), - [aux_sym__html_block_6_token2] = ACTIONS(1061), - [sym__open_tag_html_block] = ACTIONS(1061), - [sym__open_tag_html_block_newline] = ACTIONS(1061), - [sym__closing_tag_html_block] = ACTIONS(1061), - [sym__closing_tag_html_block_newline] = ACTIONS(1061), - [sym_backslash_escape] = ACTIONS(1061), - [sym_uri_autolink] = ACTIONS(1061), - [sym_email_autolink] = ACTIONS(1061), - [sym_entity_reference] = ACTIONS(1061), - [sym_numeric_character_reference] = ACTIONS(1061), - [sym__whitespace_ge_2] = ACTIONS(1061), - [aux_sym__whitespace_token1] = ACTIONS(1063), - [sym__word_no_digit] = ACTIONS(1061), - [sym__digits] = ACTIONS(1061), - [aux_sym__newline_token1] = ACTIONS(1061), - [sym__block_quote_start] = ACTIONS(1061), - [sym__indented_chunk_start] = ACTIONS(1061), - [sym_atx_h1_marker] = ACTIONS(1061), - [sym_atx_h2_marker] = ACTIONS(1061), - [sym_atx_h3_marker] = ACTIONS(1061), - [sym_atx_h4_marker] = ACTIONS(1061), - [sym_atx_h5_marker] = ACTIONS(1061), - [sym_atx_h6_marker] = ACTIONS(1061), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1061), - [sym__thematic_break] = ACTIONS(1061), - [sym__list_marker_minus] = ACTIONS(1061), - [sym__list_marker_plus] = ACTIONS(1061), - [sym__list_marker_star] = ACTIONS(1065), - [sym__list_marker_parenthesis] = ACTIONS(1061), - [sym__list_marker_dot] = ACTIONS(1061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1061), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1061), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1065), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1061), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1061), - [sym__fenced_code_block_start_backtick] = ACTIONS(1061), - [sym__fenced_code_block_start_tilde] = ACTIONS(1061), - [sym__blank_line_start] = ACTIONS(1061), - [sym__code_span_start] = ACTIONS(1061), - [sym__emphasis_open_star] = ACTIONS(1061), - [sym__emphasis_open_underscore] = ACTIONS(1061), - }, - [206] = { - [sym_list_marker_dot] = STATE(41), - [sym__list_item_dot] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(206), - [ts_builtin_sym_end] = ACTIONS(1068), - [aux_sym__html_block_1_token1] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_PERCENT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_DOT] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1068), - [anon_sym_COLON] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_BSLASH] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_CARET] = ACTIONS(1068), - [anon_sym__] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1070), - [anon_sym_LT_QMARK] = ACTIONS(1070), - [aux_sym__html_block_4_token1] = ACTIONS(1070), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1068), - [aux_sym__html_block_6_token1] = ACTIONS(1070), - [aux_sym__html_block_6_token2] = ACTIONS(1068), - [sym__open_tag_html_block] = ACTIONS(1068), - [sym__open_tag_html_block_newline] = ACTIONS(1068), - [sym__closing_tag_html_block] = ACTIONS(1068), - [sym__closing_tag_html_block_newline] = ACTIONS(1068), - [sym_backslash_escape] = ACTIONS(1068), - [sym_uri_autolink] = ACTIONS(1068), - [sym_email_autolink] = ACTIONS(1068), - [sym_entity_reference] = ACTIONS(1068), - [sym_numeric_character_reference] = ACTIONS(1068), - [sym__whitespace_ge_2] = ACTIONS(1068), - [aux_sym__whitespace_token1] = ACTIONS(1070), - [sym__word_no_digit] = ACTIONS(1068), - [sym__digits] = ACTIONS(1068), - [aux_sym__newline_token1] = ACTIONS(1068), - [sym__block_quote_start] = ACTIONS(1068), - [sym__indented_chunk_start] = ACTIONS(1068), - [sym_atx_h1_marker] = ACTIONS(1068), - [sym_atx_h2_marker] = ACTIONS(1068), - [sym_atx_h3_marker] = ACTIONS(1068), - [sym_atx_h4_marker] = ACTIONS(1068), - [sym_atx_h5_marker] = ACTIONS(1068), - [sym_atx_h6_marker] = ACTIONS(1068), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1068), - [sym__thematic_break] = ACTIONS(1068), - [sym__list_marker_minus] = ACTIONS(1068), - [sym__list_marker_plus] = ACTIONS(1068), - [sym__list_marker_star] = ACTIONS(1068), - [sym__list_marker_parenthesis] = ACTIONS(1068), - [sym__list_marker_dot] = ACTIONS(1072), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1072), - [sym__fenced_code_block_start_backtick] = ACTIONS(1068), - [sym__fenced_code_block_start_tilde] = ACTIONS(1068), - [sym__blank_line_start] = ACTIONS(1068), - [sym__code_span_start] = ACTIONS(1068), - [sym__emphasis_open_star] = ACTIONS(1068), - [sym__emphasis_open_underscore] = ACTIONS(1068), - }, - [207] = { - [sym_list_marker_parenthesis] = STATE(42), - [sym__list_item_parenthesis] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1075), - [aux_sym__html_block_1_token1] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1075), - [anon_sym_PERCENT] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_COMMA] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_COLON] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_QMARK] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_BSLASH] = ACTIONS(1077), - [anon_sym_RBRACK] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym__] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1077), - [anon_sym_LT_QMARK] = ACTIONS(1077), - [aux_sym__html_block_4_token1] = ACTIONS(1077), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1075), - [aux_sym__html_block_6_token1] = ACTIONS(1077), - [aux_sym__html_block_6_token2] = ACTIONS(1075), - [sym__open_tag_html_block] = ACTIONS(1075), - [sym__open_tag_html_block_newline] = ACTIONS(1075), - [sym__closing_tag_html_block] = ACTIONS(1075), - [sym__closing_tag_html_block_newline] = ACTIONS(1075), - [sym_backslash_escape] = ACTIONS(1075), - [sym_uri_autolink] = ACTIONS(1075), - [sym_email_autolink] = ACTIONS(1075), - [sym_entity_reference] = ACTIONS(1075), - [sym_numeric_character_reference] = ACTIONS(1075), - [sym__whitespace_ge_2] = ACTIONS(1075), - [aux_sym__whitespace_token1] = ACTIONS(1077), - [sym__word_no_digit] = ACTIONS(1075), - [sym__digits] = ACTIONS(1075), - [aux_sym__newline_token1] = ACTIONS(1075), - [sym__block_quote_start] = ACTIONS(1075), - [sym__indented_chunk_start] = ACTIONS(1075), - [sym_atx_h1_marker] = ACTIONS(1075), - [sym_atx_h2_marker] = ACTIONS(1075), - [sym_atx_h3_marker] = ACTIONS(1075), - [sym_atx_h4_marker] = ACTIONS(1075), - [sym_atx_h5_marker] = ACTIONS(1075), - [sym_atx_h6_marker] = ACTIONS(1075), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1075), - [sym__thematic_break] = ACTIONS(1075), - [sym__list_marker_minus] = ACTIONS(1075), - [sym__list_marker_plus] = ACTIONS(1075), - [sym__list_marker_star] = ACTIONS(1075), - [sym__list_marker_parenthesis] = ACTIONS(1079), - [sym__list_marker_dot] = ACTIONS(1075), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1075), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1075), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1075), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1079), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1075), - [sym__fenced_code_block_start_backtick] = ACTIONS(1075), - [sym__fenced_code_block_start_tilde] = ACTIONS(1075), - [sym__blank_line_start] = ACTIONS(1075), - [sym__code_span_start] = ACTIONS(1075), - [sym__emphasis_open_star] = ACTIONS(1075), - [sym__emphasis_open_underscore] = ACTIONS(1075), - }, - [208] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1082), - [aux_sym__html_block_1_token1] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [anon_sym_POUND] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_COMMA] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_DOT] = ACTIONS(1082), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_COLON] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1082), - [anon_sym_AT] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_BSLASH] = ACTIONS(1084), - [anon_sym_RBRACK] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1082), - [anon_sym__] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1084), - [anon_sym_LT_QMARK] = ACTIONS(1084), - [aux_sym__html_block_4_token1] = ACTIONS(1084), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1082), - [aux_sym__html_block_6_token1] = ACTIONS(1084), - [aux_sym__html_block_6_token2] = ACTIONS(1082), - [sym__open_tag_html_block] = ACTIONS(1082), - [sym__open_tag_html_block_newline] = ACTIONS(1082), - [sym__closing_tag_html_block] = ACTIONS(1082), - [sym__closing_tag_html_block_newline] = ACTIONS(1082), - [sym_backslash_escape] = ACTIONS(1082), - [sym_uri_autolink] = ACTIONS(1082), - [sym_email_autolink] = ACTIONS(1082), - [sym_entity_reference] = ACTIONS(1082), - [sym_numeric_character_reference] = ACTIONS(1082), - [sym__whitespace_ge_2] = ACTIONS(1082), - [aux_sym__whitespace_token1] = ACTIONS(1084), - [sym__word_no_digit] = ACTIONS(1082), - [sym__digits] = ACTIONS(1082), - [aux_sym__newline_token1] = ACTIONS(1082), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1082), - [sym__indented_chunk_start] = ACTIONS(1082), - [sym_atx_h1_marker] = ACTIONS(1082), - [sym_atx_h2_marker] = ACTIONS(1082), - [sym_atx_h3_marker] = ACTIONS(1082), - [sym_atx_h4_marker] = ACTIONS(1082), - [sym_atx_h5_marker] = ACTIONS(1082), - [sym_atx_h6_marker] = ACTIONS(1082), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1082), - [sym__thematic_break] = ACTIONS(1082), - [sym__list_marker_minus] = ACTIONS(1082), - [sym__list_marker_plus] = ACTIONS(1082), - [sym__list_marker_star] = ACTIONS(1082), - [sym__list_marker_parenthesis] = ACTIONS(1082), - [sym__list_marker_dot] = ACTIONS(1082), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1082), - [sym__fenced_code_block_start_backtick] = ACTIONS(1082), - [sym__fenced_code_block_start_tilde] = ACTIONS(1082), - [sym__blank_line_start] = ACTIONS(1082), - [sym__code_span_start] = ACTIONS(1082), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1082), - [sym__emphasis_open_underscore] = ACTIONS(1082), - }, - [209] = { - [aux_sym__ignore_matching_tokens] = STATE(271), - [ts_builtin_sym_end] = ACTIONS(1082), - [aux_sym__html_block_1_token1] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [anon_sym_POUND] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_COMMA] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_DOT] = ACTIONS(1082), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_COLON] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1082), - [anon_sym_AT] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_BSLASH] = ACTIONS(1084), - [anon_sym_RBRACK] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1082), - [anon_sym__] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1084), - [anon_sym_LT_QMARK] = ACTIONS(1084), - [aux_sym__html_block_4_token1] = ACTIONS(1084), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1082), - [aux_sym__html_block_6_token1] = ACTIONS(1084), - [aux_sym__html_block_6_token2] = ACTIONS(1082), - [sym__open_tag_html_block] = ACTIONS(1082), - [sym__open_tag_html_block_newline] = ACTIONS(1082), - [sym__closing_tag_html_block] = ACTIONS(1082), - [sym__closing_tag_html_block_newline] = ACTIONS(1082), - [sym_backslash_escape] = ACTIONS(1082), - [sym_uri_autolink] = ACTIONS(1082), - [sym_email_autolink] = ACTIONS(1082), - [sym_entity_reference] = ACTIONS(1082), - [sym_numeric_character_reference] = ACTIONS(1082), - [sym__whitespace_ge_2] = ACTIONS(1082), - [aux_sym__whitespace_token1] = ACTIONS(1084), - [sym__word_no_digit] = ACTIONS(1082), - [sym__digits] = ACTIONS(1082), - [aux_sym__newline_token1] = ACTIONS(1082), - [sym__block_continuation] = ACTIONS(1086), - [sym__block_quote_start] = ACTIONS(1082), - [sym__indented_chunk_start] = ACTIONS(1082), - [sym_atx_h1_marker] = ACTIONS(1082), - [sym_atx_h2_marker] = ACTIONS(1082), - [sym_atx_h3_marker] = ACTIONS(1082), - [sym_atx_h4_marker] = ACTIONS(1082), - [sym_atx_h5_marker] = ACTIONS(1082), - [sym_atx_h6_marker] = ACTIONS(1082), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1082), - [sym__thematic_break] = ACTIONS(1082), - [sym__list_marker_minus] = ACTIONS(1082), - [sym__list_marker_plus] = ACTIONS(1082), - [sym__list_marker_star] = ACTIONS(1082), - [sym__list_marker_parenthesis] = ACTIONS(1082), - [sym__list_marker_dot] = ACTIONS(1082), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1082), - [sym__fenced_code_block_start_backtick] = ACTIONS(1082), - [sym__fenced_code_block_start_tilde] = ACTIONS(1082), - [sym__blank_line_start] = ACTIONS(1082), - [sym__code_span_start] = ACTIONS(1082), - [sym__last_token_whitespace] = ACTIONS(1086), - [sym__emphasis_open_star] = ACTIONS(1082), - [sym__emphasis_open_underscore] = ACTIONS(1082), - }, - [210] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [anon_sym_POUND] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PERCENT] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_SQUOTE] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(671), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_STAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_COMMA] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_DOT] = ACTIONS(671), - [anon_sym_SLASH] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(671), - [anon_sym_SEMI] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(671), - [anon_sym_QMARK] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_LBRACK] = ACTIONS(671), - [anon_sym_BSLASH] = ACTIONS(673), - [anon_sym_RBRACK] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(671), - [anon_sym__] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(671), - [anon_sym_PIPE] = ACTIONS(671), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_TILDE] = ACTIONS(671), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(673), - [anon_sym_LT_QMARK] = ACTIONS(673), - [aux_sym__html_block_4_token1] = ACTIONS(673), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(671), - [aux_sym__html_block_6_token1] = ACTIONS(673), - [aux_sym__html_block_6_token2] = ACTIONS(671), - [sym__open_tag_html_block] = ACTIONS(671), - [sym__open_tag_html_block_newline] = ACTIONS(671), - [sym__closing_tag_html_block] = ACTIONS(671), - [sym__closing_tag_html_block_newline] = ACTIONS(671), - [sym_backslash_escape] = ACTIONS(671), - [sym_uri_autolink] = ACTIONS(671), - [sym_email_autolink] = ACTIONS(671), - [sym_entity_reference] = ACTIONS(671), - [sym_numeric_character_reference] = ACTIONS(671), - [sym__whitespace_ge_2] = ACTIONS(671), - [aux_sym__whitespace_token1] = ACTIONS(673), - [sym__word_no_digit] = ACTIONS(671), - [sym__digits] = ACTIONS(671), - [aux_sym__newline_token1] = ACTIONS(671), - [sym__block_close] = ACTIONS(671), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(671), - [sym__indented_chunk_start] = ACTIONS(671), - [sym_atx_h1_marker] = ACTIONS(671), - [sym_atx_h2_marker] = ACTIONS(671), - [sym_atx_h3_marker] = ACTIONS(671), - [sym_atx_h4_marker] = ACTIONS(671), - [sym_atx_h5_marker] = ACTIONS(671), - [sym_atx_h6_marker] = ACTIONS(671), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(671), - [sym__thematic_break] = ACTIONS(671), - [sym__list_marker_minus] = ACTIONS(671), - [sym__list_marker_plus] = ACTIONS(671), - [sym__list_marker_star] = ACTIONS(671), - [sym__list_marker_parenthesis] = ACTIONS(671), - [sym__list_marker_dot] = ACTIONS(671), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(671), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(671), - [sym__list_marker_star_dont_interrupt] = ACTIONS(671), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(671), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(671), - [sym__fenced_code_block_start_backtick] = ACTIONS(671), - [sym__fenced_code_block_start_tilde] = ACTIONS(671), - [sym__blank_line_start] = ACTIONS(671), - [sym__code_span_start] = ACTIONS(671), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(671), - [sym__emphasis_open_underscore] = ACTIONS(671), - }, - [211] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1088), - [aux_sym__html_block_1_token1] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1088), - [anon_sym__] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1090), - [anon_sym_LT_QMARK] = ACTIONS(1090), - [aux_sym__html_block_4_token1] = ACTIONS(1090), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1088), - [aux_sym__html_block_6_token1] = ACTIONS(1090), - [aux_sym__html_block_6_token2] = ACTIONS(1088), - [sym__open_tag_html_block] = ACTIONS(1088), - [sym__open_tag_html_block_newline] = ACTIONS(1088), - [sym__closing_tag_html_block] = ACTIONS(1088), - [sym__closing_tag_html_block_newline] = ACTIONS(1088), - [sym_backslash_escape] = ACTIONS(1088), - [sym_uri_autolink] = ACTIONS(1088), - [sym_email_autolink] = ACTIONS(1088), - [sym_entity_reference] = ACTIONS(1088), - [sym_numeric_character_reference] = ACTIONS(1088), - [sym__whitespace_ge_2] = ACTIONS(1088), - [aux_sym__whitespace_token1] = ACTIONS(1090), - [sym__word_no_digit] = ACTIONS(1088), - [sym__digits] = ACTIONS(1088), - [aux_sym__newline_token1] = ACTIONS(1088), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1088), - [sym__indented_chunk_start] = ACTIONS(1088), - [sym_atx_h1_marker] = ACTIONS(1088), - [sym_atx_h2_marker] = ACTIONS(1088), - [sym_atx_h3_marker] = ACTIONS(1088), - [sym_atx_h4_marker] = ACTIONS(1088), - [sym_atx_h5_marker] = ACTIONS(1088), - [sym_atx_h6_marker] = ACTIONS(1088), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1088), - [sym__thematic_break] = ACTIONS(1088), - [sym__list_marker_minus] = ACTIONS(1088), - [sym__list_marker_plus] = ACTIONS(1088), - [sym__list_marker_star] = ACTIONS(1088), - [sym__list_marker_parenthesis] = ACTIONS(1088), - [sym__list_marker_dot] = ACTIONS(1088), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1088), - [sym__fenced_code_block_start_backtick] = ACTIONS(1088), - [sym__fenced_code_block_start_tilde] = ACTIONS(1088), - [sym__blank_line_start] = ACTIONS(1088), - [sym__code_span_start] = ACTIONS(1088), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1088), - [sym__emphasis_open_underscore] = ACTIONS(1088), - }, - [212] = { - [aux_sym__ignore_matching_tokens] = STATE(161), - [aux_sym__html_block_1_token1] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1088), - [anon_sym__] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1090), - [anon_sym_LT_QMARK] = ACTIONS(1090), - [aux_sym__html_block_4_token1] = ACTIONS(1090), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1088), - [aux_sym__html_block_6_token1] = ACTIONS(1090), - [aux_sym__html_block_6_token2] = ACTIONS(1088), - [sym__open_tag_html_block] = ACTIONS(1088), - [sym__open_tag_html_block_newline] = ACTIONS(1088), - [sym__closing_tag_html_block] = ACTIONS(1088), - [sym__closing_tag_html_block_newline] = ACTIONS(1088), - [sym_backslash_escape] = ACTIONS(1088), - [sym_uri_autolink] = ACTIONS(1088), - [sym_email_autolink] = ACTIONS(1088), - [sym_entity_reference] = ACTIONS(1088), - [sym_numeric_character_reference] = ACTIONS(1088), - [sym__whitespace_ge_2] = ACTIONS(1088), - [aux_sym__whitespace_token1] = ACTIONS(1090), - [sym__word_no_digit] = ACTIONS(1088), - [sym__digits] = ACTIONS(1088), - [aux_sym__newline_token1] = ACTIONS(1088), - [sym__block_close] = ACTIONS(1088), - [sym__block_continuation] = ACTIONS(1092), - [sym__block_quote_start] = ACTIONS(1088), - [sym__indented_chunk_start] = ACTIONS(1088), - [sym_atx_h1_marker] = ACTIONS(1088), - [sym_atx_h2_marker] = ACTIONS(1088), - [sym_atx_h3_marker] = ACTIONS(1088), - [sym_atx_h4_marker] = ACTIONS(1088), - [sym_atx_h5_marker] = ACTIONS(1088), - [sym_atx_h6_marker] = ACTIONS(1088), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1088), - [sym__thematic_break] = ACTIONS(1088), - [sym__list_marker_minus] = ACTIONS(1088), - [sym__list_marker_plus] = ACTIONS(1088), - [sym__list_marker_star] = ACTIONS(1088), - [sym__list_marker_parenthesis] = ACTIONS(1088), - [sym__list_marker_dot] = ACTIONS(1088), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1088), - [sym__fenced_code_block_start_backtick] = ACTIONS(1088), - [sym__fenced_code_block_start_tilde] = ACTIONS(1088), - [sym__blank_line_start] = ACTIONS(1088), - [sym__code_span_start] = ACTIONS(1088), - [sym__last_token_whitespace] = ACTIONS(1092), - [sym__emphasis_open_star] = ACTIONS(1088), - [sym__emphasis_open_underscore] = ACTIONS(1088), - }, - [213] = { - [aux_sym__ignore_matching_tokens] = STATE(269), - [ts_builtin_sym_end] = ACTIONS(1088), - [aux_sym__html_block_1_token1] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1088), - [anon_sym__] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1090), - [anon_sym_LT_QMARK] = ACTIONS(1090), - [aux_sym__html_block_4_token1] = ACTIONS(1090), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1088), - [aux_sym__html_block_6_token1] = ACTIONS(1090), - [aux_sym__html_block_6_token2] = ACTIONS(1088), - [sym__open_tag_html_block] = ACTIONS(1088), - [sym__open_tag_html_block_newline] = ACTIONS(1088), - [sym__closing_tag_html_block] = ACTIONS(1088), - [sym__closing_tag_html_block_newline] = ACTIONS(1088), - [sym_backslash_escape] = ACTIONS(1088), - [sym_uri_autolink] = ACTIONS(1088), - [sym_email_autolink] = ACTIONS(1088), - [sym_entity_reference] = ACTIONS(1088), - [sym_numeric_character_reference] = ACTIONS(1088), - [sym__whitespace_ge_2] = ACTIONS(1088), - [aux_sym__whitespace_token1] = ACTIONS(1090), - [sym__word_no_digit] = ACTIONS(1088), - [sym__digits] = ACTIONS(1088), - [aux_sym__newline_token1] = ACTIONS(1088), - [sym__block_continuation] = ACTIONS(1094), - [sym__block_quote_start] = ACTIONS(1088), - [sym__indented_chunk_start] = ACTIONS(1088), - [sym_atx_h1_marker] = ACTIONS(1088), - [sym_atx_h2_marker] = ACTIONS(1088), - [sym_atx_h3_marker] = ACTIONS(1088), - [sym_atx_h4_marker] = ACTIONS(1088), - [sym_atx_h5_marker] = ACTIONS(1088), - [sym_atx_h6_marker] = ACTIONS(1088), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1088), - [sym__thematic_break] = ACTIONS(1088), - [sym__list_marker_minus] = ACTIONS(1088), - [sym__list_marker_plus] = ACTIONS(1088), - [sym__list_marker_star] = ACTIONS(1088), - [sym__list_marker_parenthesis] = ACTIONS(1088), - [sym__list_marker_dot] = ACTIONS(1088), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1088), - [sym__fenced_code_block_start_backtick] = ACTIONS(1088), - [sym__fenced_code_block_start_tilde] = ACTIONS(1088), - [sym__blank_line_start] = ACTIONS(1088), - [sym__code_span_start] = ACTIONS(1088), - [sym__last_token_whitespace] = ACTIONS(1094), - [sym__emphasis_open_star] = ACTIONS(1088), - [sym__emphasis_open_underscore] = ACTIONS(1088), - }, - [214] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_POUND] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1088), - [anon_sym_PERCENT] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1088), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_QMARK] = ACTIONS(1088), - [anon_sym_AT] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1088), - [anon_sym__] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1088), - [anon_sym_RBRACE] = ACTIONS(1088), - [anon_sym_TILDE] = ACTIONS(1088), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1090), - [anon_sym_LT_QMARK] = ACTIONS(1090), - [aux_sym__html_block_4_token1] = ACTIONS(1090), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1088), - [aux_sym__html_block_6_token1] = ACTIONS(1090), - [aux_sym__html_block_6_token2] = ACTIONS(1088), - [sym__open_tag_html_block] = ACTIONS(1088), - [sym__open_tag_html_block_newline] = ACTIONS(1088), - [sym__closing_tag_html_block] = ACTIONS(1088), - [sym__closing_tag_html_block_newline] = ACTIONS(1088), - [sym_backslash_escape] = ACTIONS(1088), - [sym_uri_autolink] = ACTIONS(1088), - [sym_email_autolink] = ACTIONS(1088), - [sym_entity_reference] = ACTIONS(1088), - [sym_numeric_character_reference] = ACTIONS(1088), - [sym__whitespace_ge_2] = ACTIONS(1088), - [aux_sym__whitespace_token1] = ACTIONS(1090), - [sym__word_no_digit] = ACTIONS(1088), - [sym__digits] = ACTIONS(1088), - [aux_sym__newline_token1] = ACTIONS(1088), - [sym__block_close] = ACTIONS(1088), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1088), - [sym__indented_chunk_start] = ACTIONS(1088), - [sym_atx_h1_marker] = ACTIONS(1088), - [sym_atx_h2_marker] = ACTIONS(1088), - [sym_atx_h3_marker] = ACTIONS(1088), - [sym_atx_h4_marker] = ACTIONS(1088), - [sym_atx_h5_marker] = ACTIONS(1088), - [sym_atx_h6_marker] = ACTIONS(1088), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1088), - [sym__thematic_break] = ACTIONS(1088), - [sym__list_marker_minus] = ACTIONS(1088), - [sym__list_marker_plus] = ACTIONS(1088), - [sym__list_marker_star] = ACTIONS(1088), - [sym__list_marker_parenthesis] = ACTIONS(1088), - [sym__list_marker_dot] = ACTIONS(1088), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1088), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1088), - [sym__fenced_code_block_start_backtick] = ACTIONS(1088), - [sym__fenced_code_block_start_tilde] = ACTIONS(1088), - [sym__blank_line_start] = ACTIONS(1088), - [sym__code_span_start] = ACTIONS(1088), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1088), - [sym__emphasis_open_underscore] = ACTIONS(1088), - }, - [215] = { - [aux_sym__ignore_matching_tokens] = STATE(166), - [aux_sym__html_block_1_token1] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [anon_sym_POUND] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_COMMA] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_DOT] = ACTIONS(1082), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_COLON] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1082), - [anon_sym_AT] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_BSLASH] = ACTIONS(1084), - [anon_sym_RBRACK] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1082), - [anon_sym__] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1084), - [anon_sym_LT_QMARK] = ACTIONS(1084), - [aux_sym__html_block_4_token1] = ACTIONS(1084), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1082), - [aux_sym__html_block_6_token1] = ACTIONS(1084), - [aux_sym__html_block_6_token2] = ACTIONS(1082), - [sym__open_tag_html_block] = ACTIONS(1082), - [sym__open_tag_html_block_newline] = ACTIONS(1082), - [sym__closing_tag_html_block] = ACTIONS(1082), - [sym__closing_tag_html_block_newline] = ACTIONS(1082), - [sym_backslash_escape] = ACTIONS(1082), - [sym_uri_autolink] = ACTIONS(1082), - [sym_email_autolink] = ACTIONS(1082), - [sym_entity_reference] = ACTIONS(1082), - [sym_numeric_character_reference] = ACTIONS(1082), - [sym__whitespace_ge_2] = ACTIONS(1082), - [aux_sym__whitespace_token1] = ACTIONS(1084), - [sym__word_no_digit] = ACTIONS(1082), - [sym__digits] = ACTIONS(1082), - [aux_sym__newline_token1] = ACTIONS(1082), - [sym__block_close] = ACTIONS(1082), - [sym__block_continuation] = ACTIONS(1096), - [sym__block_quote_start] = ACTIONS(1082), - [sym__indented_chunk_start] = ACTIONS(1082), - [sym_atx_h1_marker] = ACTIONS(1082), - [sym_atx_h2_marker] = ACTIONS(1082), - [sym_atx_h3_marker] = ACTIONS(1082), - [sym_atx_h4_marker] = ACTIONS(1082), - [sym_atx_h5_marker] = ACTIONS(1082), - [sym_atx_h6_marker] = ACTIONS(1082), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1082), - [sym__thematic_break] = ACTIONS(1082), - [sym__list_marker_minus] = ACTIONS(1082), - [sym__list_marker_plus] = ACTIONS(1082), - [sym__list_marker_star] = ACTIONS(1082), - [sym__list_marker_parenthesis] = ACTIONS(1082), - [sym__list_marker_dot] = ACTIONS(1082), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1082), - [sym__fenced_code_block_start_backtick] = ACTIONS(1082), - [sym__fenced_code_block_start_tilde] = ACTIONS(1082), - [sym__blank_line_start] = ACTIONS(1082), - [sym__code_span_start] = ACTIONS(1082), - [sym__last_token_whitespace] = ACTIONS(1096), - [sym__emphasis_open_star] = ACTIONS(1082), - [sym__emphasis_open_underscore] = ACTIONS(1082), - }, - [216] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1082), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [anon_sym_POUND] = ACTIONS(1082), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_PERCENT] = ACTIONS(1082), - [anon_sym_AMP] = ACTIONS(1084), - [anon_sym_SQUOTE] = ACTIONS(1082), - [anon_sym_LPAREN] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_COMMA] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_DOT] = ACTIONS(1082), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_COLON] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1082), - [anon_sym_AT] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_BSLASH] = ACTIONS(1084), - [anon_sym_RBRACK] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1082), - [anon_sym__] = ACTIONS(1082), - [anon_sym_BQUOTE] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1082), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1084), - [anon_sym_LT_QMARK] = ACTIONS(1084), - [aux_sym__html_block_4_token1] = ACTIONS(1084), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1082), - [aux_sym__html_block_6_token1] = ACTIONS(1084), - [aux_sym__html_block_6_token2] = ACTIONS(1082), - [sym__open_tag_html_block] = ACTIONS(1082), - [sym__open_tag_html_block_newline] = ACTIONS(1082), - [sym__closing_tag_html_block] = ACTIONS(1082), - [sym__closing_tag_html_block_newline] = ACTIONS(1082), - [sym_backslash_escape] = ACTIONS(1082), - [sym_uri_autolink] = ACTIONS(1082), - [sym_email_autolink] = ACTIONS(1082), - [sym_entity_reference] = ACTIONS(1082), - [sym_numeric_character_reference] = ACTIONS(1082), - [sym__whitespace_ge_2] = ACTIONS(1082), - [aux_sym__whitespace_token1] = ACTIONS(1084), - [sym__word_no_digit] = ACTIONS(1082), - [sym__digits] = ACTIONS(1082), - [aux_sym__newline_token1] = ACTIONS(1082), - [sym__block_close] = ACTIONS(1082), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1082), - [sym__indented_chunk_start] = ACTIONS(1082), - [sym_atx_h1_marker] = ACTIONS(1082), - [sym_atx_h2_marker] = ACTIONS(1082), - [sym_atx_h3_marker] = ACTIONS(1082), - [sym_atx_h4_marker] = ACTIONS(1082), - [sym_atx_h5_marker] = ACTIONS(1082), - [sym_atx_h6_marker] = ACTIONS(1082), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1082), - [sym__thematic_break] = ACTIONS(1082), - [sym__list_marker_minus] = ACTIONS(1082), - [sym__list_marker_plus] = ACTIONS(1082), - [sym__list_marker_star] = ACTIONS(1082), - [sym__list_marker_parenthesis] = ACTIONS(1082), - [sym__list_marker_dot] = ACTIONS(1082), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1082), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1082), - [sym__fenced_code_block_start_backtick] = ACTIONS(1082), - [sym__fenced_code_block_start_tilde] = ACTIONS(1082), - [sym__blank_line_start] = ACTIONS(1082), - [sym__code_span_start] = ACTIONS(1082), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1082), - [sym__emphasis_open_underscore] = ACTIONS(1082), - }, - [217] = { - [aux_sym__ignore_matching_tokens] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(756), - [aux_sym__html_block_1_token1] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(758), - [anon_sym_SQUOTE] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(758), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_BSLASH] = ACTIONS(758), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_CARET] = ACTIONS(756), - [anon_sym__] = ACTIONS(756), - [anon_sym_BQUOTE] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_TILDE] = ACTIONS(756), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(758), - [anon_sym_LT_QMARK] = ACTIONS(758), - [aux_sym__html_block_4_token1] = ACTIONS(758), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(756), - [aux_sym__html_block_6_token1] = ACTIONS(758), - [aux_sym__html_block_6_token2] = ACTIONS(756), - [sym__open_tag_html_block] = ACTIONS(756), - [sym__open_tag_html_block_newline] = ACTIONS(756), - [sym__closing_tag_html_block] = ACTIONS(756), - [sym__closing_tag_html_block_newline] = ACTIONS(756), - [sym_backslash_escape] = ACTIONS(756), - [sym_uri_autolink] = ACTIONS(756), - [sym_email_autolink] = ACTIONS(756), - [sym_entity_reference] = ACTIONS(756), - [sym_numeric_character_reference] = ACTIONS(756), - [sym__whitespace_ge_2] = ACTIONS(756), - [aux_sym__whitespace_token1] = ACTIONS(758), - [sym__word_no_digit] = ACTIONS(756), - [sym__digits] = ACTIONS(756), - [aux_sym__newline_token1] = ACTIONS(756), - [sym__block_continuation] = ACTIONS(1098), - [sym__block_quote_start] = ACTIONS(756), - [sym__indented_chunk_start] = ACTIONS(756), - [sym_atx_h1_marker] = ACTIONS(756), - [sym_atx_h2_marker] = ACTIONS(756), - [sym_atx_h3_marker] = ACTIONS(756), - [sym_atx_h4_marker] = ACTIONS(756), - [sym_atx_h5_marker] = ACTIONS(756), - [sym_atx_h6_marker] = ACTIONS(756), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(756), - [sym__thematic_break] = ACTIONS(756), - [sym__list_marker_minus] = ACTIONS(756), - [sym__list_marker_plus] = ACTIONS(756), - [sym__list_marker_star] = ACTIONS(756), - [sym__list_marker_parenthesis] = ACTIONS(756), - [sym__list_marker_dot] = ACTIONS(756), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(756), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(756), - [sym__list_marker_star_dont_interrupt] = ACTIONS(756), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(756), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(756), - [sym__fenced_code_block_start_backtick] = ACTIONS(756), - [sym__fenced_code_block_start_tilde] = ACTIONS(756), - [sym__blank_line_start] = ACTIONS(756), - [sym__code_span_start] = ACTIONS(756), - [sym__last_token_whitespace] = ACTIONS(1098), - [sym__emphasis_open_star] = ACTIONS(756), - [sym__emphasis_open_underscore] = ACTIONS(756), - }, - [218] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(756), - [aux_sym__html_block_1_token1] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_PERCENT] = ACTIONS(756), - [anon_sym_AMP] = ACTIONS(758), - [anon_sym_SQUOTE] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_COLON] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LT] = ACTIONS(758), - [anon_sym_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_BSLASH] = ACTIONS(758), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_CARET] = ACTIONS(756), - [anon_sym__] = ACTIONS(756), - [anon_sym_BQUOTE] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_TILDE] = ACTIONS(756), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(758), - [anon_sym_LT_QMARK] = ACTIONS(758), - [aux_sym__html_block_4_token1] = ACTIONS(758), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(756), - [aux_sym__html_block_6_token1] = ACTIONS(758), - [aux_sym__html_block_6_token2] = ACTIONS(756), - [sym__open_tag_html_block] = ACTIONS(756), - [sym__open_tag_html_block_newline] = ACTIONS(756), - [sym__closing_tag_html_block] = ACTIONS(756), - [sym__closing_tag_html_block_newline] = ACTIONS(756), - [sym_backslash_escape] = ACTIONS(756), - [sym_uri_autolink] = ACTIONS(756), - [sym_email_autolink] = ACTIONS(756), - [sym_entity_reference] = ACTIONS(756), - [sym_numeric_character_reference] = ACTIONS(756), - [sym__whitespace_ge_2] = ACTIONS(756), - [aux_sym__whitespace_token1] = ACTIONS(758), - [sym__word_no_digit] = ACTIONS(756), - [sym__digits] = ACTIONS(756), - [aux_sym__newline_token1] = ACTIONS(756), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(756), - [sym__indented_chunk_start] = ACTIONS(756), - [sym_atx_h1_marker] = ACTIONS(756), - [sym_atx_h2_marker] = ACTIONS(756), - [sym_atx_h3_marker] = ACTIONS(756), - [sym_atx_h4_marker] = ACTIONS(756), - [sym_atx_h5_marker] = ACTIONS(756), - [sym_atx_h6_marker] = ACTIONS(756), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(756), - [sym__thematic_break] = ACTIONS(756), - [sym__list_marker_minus] = ACTIONS(756), - [sym__list_marker_plus] = ACTIONS(756), - [sym__list_marker_star] = ACTIONS(756), - [sym__list_marker_parenthesis] = ACTIONS(756), - [sym__list_marker_dot] = ACTIONS(756), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(756), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(756), - [sym__list_marker_star_dont_interrupt] = ACTIONS(756), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(756), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(756), - [sym__fenced_code_block_start_backtick] = ACTIONS(756), - [sym__fenced_code_block_start_tilde] = ACTIONS(756), - [sym__blank_line_start] = ACTIONS(756), - [sym__code_span_start] = ACTIONS(756), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(756), - [sym__emphasis_open_underscore] = ACTIONS(756), - }, - [219] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1100), - [anon_sym_PERCENT] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_COMMA] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(1100), - [anon_sym_COLON] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_EQ] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_QMARK] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_BSLASH] = ACTIONS(1102), - [anon_sym_RBRACK] = ACTIONS(1100), - [anon_sym_CARET] = ACTIONS(1100), - [anon_sym__] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1102), - [anon_sym_LT_QMARK] = ACTIONS(1102), - [aux_sym__html_block_4_token1] = ACTIONS(1102), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1100), - [aux_sym__html_block_6_token1] = ACTIONS(1102), - [aux_sym__html_block_6_token2] = ACTIONS(1100), - [sym__open_tag_html_block] = ACTIONS(1100), - [sym__open_tag_html_block_newline] = ACTIONS(1100), - [sym__closing_tag_html_block] = ACTIONS(1100), - [sym__closing_tag_html_block_newline] = ACTIONS(1100), - [sym_backslash_escape] = ACTIONS(1100), - [sym_uri_autolink] = ACTIONS(1100), - [sym_email_autolink] = ACTIONS(1100), - [sym_entity_reference] = ACTIONS(1100), - [sym_numeric_character_reference] = ACTIONS(1100), - [sym__whitespace_ge_2] = ACTIONS(1100), - [aux_sym__whitespace_token1] = ACTIONS(1102), - [sym__word_no_digit] = ACTIONS(1100), - [sym__digits] = ACTIONS(1100), - [aux_sym__newline_token1] = ACTIONS(1100), - [sym__block_close] = ACTIONS(1100), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1100), - [sym__indented_chunk_start] = ACTIONS(1100), - [sym_atx_h1_marker] = ACTIONS(1100), - [sym_atx_h2_marker] = ACTIONS(1100), - [sym_atx_h3_marker] = ACTIONS(1100), - [sym_atx_h4_marker] = ACTIONS(1100), - [sym_atx_h5_marker] = ACTIONS(1100), - [sym_atx_h6_marker] = ACTIONS(1100), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1100), - [sym__thematic_break] = ACTIONS(1100), - [sym__list_marker_minus] = ACTIONS(1100), - [sym__list_marker_plus] = ACTIONS(1100), - [sym__list_marker_star] = ACTIONS(1100), - [sym__list_marker_parenthesis] = ACTIONS(1100), - [sym__list_marker_dot] = ACTIONS(1100), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1100), - [sym__fenced_code_block_start_backtick] = ACTIONS(1100), - [sym__fenced_code_block_start_tilde] = ACTIONS(1100), - [sym__blank_line_start] = ACTIONS(1100), - [sym__code_span_start] = ACTIONS(1100), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1100), - [sym__emphasis_open_underscore] = ACTIONS(1100), - }, - [220] = { - [aux_sym__ignore_matching_tokens] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(766), - [aux_sym__html_block_1_token1] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_POUND] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_BSLASH] = ACTIONS(768), - [anon_sym_RBRACK] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [anon_sym__] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(768), - [anon_sym_LT_QMARK] = ACTIONS(768), - [aux_sym__html_block_4_token1] = ACTIONS(768), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(766), - [aux_sym__html_block_6_token1] = ACTIONS(768), - [aux_sym__html_block_6_token2] = ACTIONS(766), - [sym__open_tag_html_block] = ACTIONS(766), - [sym__open_tag_html_block_newline] = ACTIONS(766), - [sym__closing_tag_html_block] = ACTIONS(766), - [sym__closing_tag_html_block_newline] = ACTIONS(766), - [sym_backslash_escape] = ACTIONS(766), - [sym_uri_autolink] = ACTIONS(766), - [sym_email_autolink] = ACTIONS(766), - [sym_entity_reference] = ACTIONS(766), - [sym_numeric_character_reference] = ACTIONS(766), - [sym__whitespace_ge_2] = ACTIONS(766), - [aux_sym__whitespace_token1] = ACTIONS(768), - [sym__word_no_digit] = ACTIONS(766), - [sym__digits] = ACTIONS(766), - [aux_sym__newline_token1] = ACTIONS(766), - [sym__block_continuation] = ACTIONS(1104), - [sym__block_quote_start] = ACTIONS(766), - [sym__indented_chunk_start] = ACTIONS(766), - [sym_atx_h1_marker] = ACTIONS(766), - [sym_atx_h2_marker] = ACTIONS(766), - [sym_atx_h3_marker] = ACTIONS(766), - [sym_atx_h4_marker] = ACTIONS(766), - [sym_atx_h5_marker] = ACTIONS(766), - [sym_atx_h6_marker] = ACTIONS(766), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(766), - [sym__thematic_break] = ACTIONS(766), - [sym__list_marker_minus] = ACTIONS(766), - [sym__list_marker_plus] = ACTIONS(766), - [sym__list_marker_star] = ACTIONS(766), - [sym__list_marker_parenthesis] = ACTIONS(766), - [sym__list_marker_dot] = ACTIONS(766), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_star_dont_interrupt] = ACTIONS(766), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(766), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(766), - [sym__fenced_code_block_start_backtick] = ACTIONS(766), - [sym__fenced_code_block_start_tilde] = ACTIONS(766), - [sym__blank_line_start] = ACTIONS(766), - [sym__code_span_start] = ACTIONS(766), - [sym__last_token_whitespace] = ACTIONS(1104), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(766), - }, - [221] = { - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_parenthesis] = STATE(221), - [aux_sym__list_parenthesis_repeat1] = STATE(221), - [aux_sym__html_block_1_token1] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(1075), - [anon_sym_POUND] = ACTIONS(1075), - [anon_sym_DOLLAR] = ACTIONS(1075), - [anon_sym_PERCENT] = ACTIONS(1075), - [anon_sym_AMP] = ACTIONS(1077), - [anon_sym_SQUOTE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_RPAREN] = ACTIONS(1075), - [anon_sym_STAR] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1075), - [anon_sym_COMMA] = ACTIONS(1075), - [anon_sym_DASH] = ACTIONS(1075), - [anon_sym_DOT] = ACTIONS(1075), - [anon_sym_SLASH] = ACTIONS(1075), - [anon_sym_COLON] = ACTIONS(1075), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1077), - [anon_sym_EQ] = ACTIONS(1075), - [anon_sym_GT] = ACTIONS(1075), - [anon_sym_QMARK] = ACTIONS(1075), - [anon_sym_AT] = ACTIONS(1075), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_BSLASH] = ACTIONS(1077), - [anon_sym_RBRACK] = ACTIONS(1075), - [anon_sym_CARET] = ACTIONS(1075), - [anon_sym__] = ACTIONS(1075), - [anon_sym_BQUOTE] = ACTIONS(1075), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_PIPE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_TILDE] = ACTIONS(1075), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1077), - [anon_sym_LT_QMARK] = ACTIONS(1077), - [aux_sym__html_block_4_token1] = ACTIONS(1077), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1075), - [aux_sym__html_block_6_token1] = ACTIONS(1077), - [aux_sym__html_block_6_token2] = ACTIONS(1075), - [sym__open_tag_html_block] = ACTIONS(1075), - [sym__open_tag_html_block_newline] = ACTIONS(1075), - [sym__closing_tag_html_block] = ACTIONS(1075), - [sym__closing_tag_html_block_newline] = ACTIONS(1075), - [sym_backslash_escape] = ACTIONS(1075), - [sym_uri_autolink] = ACTIONS(1075), - [sym_email_autolink] = ACTIONS(1075), - [sym_entity_reference] = ACTIONS(1075), - [sym_numeric_character_reference] = ACTIONS(1075), - [sym__whitespace_ge_2] = ACTIONS(1075), - [aux_sym__whitespace_token1] = ACTIONS(1077), - [sym__word_no_digit] = ACTIONS(1075), - [sym__digits] = ACTIONS(1075), - [aux_sym__newline_token1] = ACTIONS(1075), - [sym__block_close] = ACTIONS(1075), - [sym__block_quote_start] = ACTIONS(1075), - [sym__indented_chunk_start] = ACTIONS(1075), - [sym_atx_h1_marker] = ACTIONS(1075), - [sym_atx_h2_marker] = ACTIONS(1075), - [sym_atx_h3_marker] = ACTIONS(1075), - [sym_atx_h4_marker] = ACTIONS(1075), - [sym_atx_h5_marker] = ACTIONS(1075), - [sym_atx_h6_marker] = ACTIONS(1075), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1075), - [sym__thematic_break] = ACTIONS(1075), - [sym__list_marker_minus] = ACTIONS(1075), - [sym__list_marker_plus] = ACTIONS(1075), - [sym__list_marker_star] = ACTIONS(1075), - [sym__list_marker_parenthesis] = ACTIONS(1079), - [sym__list_marker_dot] = ACTIONS(1075), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1075), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1075), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1075), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1079), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1075), - [sym__fenced_code_block_start_backtick] = ACTIONS(1075), - [sym__fenced_code_block_start_tilde] = ACTIONS(1075), - [sym__blank_line_start] = ACTIONS(1075), - [sym__code_span_start] = ACTIONS(1075), - [sym__emphasis_open_star] = ACTIONS(1075), - [sym__emphasis_open_underscore] = ACTIONS(1075), - }, - [222] = { - [sym_list_marker_dot] = STATE(8), - [sym__list_item_dot] = STATE(222), - [aux_sym__list_dot_repeat1] = STATE(222), - [aux_sym__html_block_1_token1] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [anon_sym_POUND] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_PERCENT] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1068), - [anon_sym_DOT] = ACTIONS(1068), - [anon_sym_SLASH] = ACTIONS(1068), - [anon_sym_COLON] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_BSLASH] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_CARET] = ACTIONS(1068), - [anon_sym__] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1070), - [anon_sym_LT_QMARK] = ACTIONS(1070), - [aux_sym__html_block_4_token1] = ACTIONS(1070), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1068), - [aux_sym__html_block_6_token1] = ACTIONS(1070), - [aux_sym__html_block_6_token2] = ACTIONS(1068), - [sym__open_tag_html_block] = ACTIONS(1068), - [sym__open_tag_html_block_newline] = ACTIONS(1068), - [sym__closing_tag_html_block] = ACTIONS(1068), - [sym__closing_tag_html_block_newline] = ACTIONS(1068), - [sym_backslash_escape] = ACTIONS(1068), - [sym_uri_autolink] = ACTIONS(1068), - [sym_email_autolink] = ACTIONS(1068), - [sym_entity_reference] = ACTIONS(1068), - [sym_numeric_character_reference] = ACTIONS(1068), - [sym__whitespace_ge_2] = ACTIONS(1068), - [aux_sym__whitespace_token1] = ACTIONS(1070), - [sym__word_no_digit] = ACTIONS(1068), - [sym__digits] = ACTIONS(1068), - [aux_sym__newline_token1] = ACTIONS(1068), - [sym__block_close] = ACTIONS(1068), - [sym__block_quote_start] = ACTIONS(1068), - [sym__indented_chunk_start] = ACTIONS(1068), - [sym_atx_h1_marker] = ACTIONS(1068), - [sym_atx_h2_marker] = ACTIONS(1068), - [sym_atx_h3_marker] = ACTIONS(1068), - [sym_atx_h4_marker] = ACTIONS(1068), - [sym_atx_h5_marker] = ACTIONS(1068), - [sym_atx_h6_marker] = ACTIONS(1068), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1068), - [sym__thematic_break] = ACTIONS(1068), - [sym__list_marker_minus] = ACTIONS(1068), - [sym__list_marker_plus] = ACTIONS(1068), - [sym__list_marker_star] = ACTIONS(1068), - [sym__list_marker_parenthesis] = ACTIONS(1068), - [sym__list_marker_dot] = ACTIONS(1072), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1068), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1072), - [sym__fenced_code_block_start_backtick] = ACTIONS(1068), - [sym__fenced_code_block_start_tilde] = ACTIONS(1068), - [sym__blank_line_start] = ACTIONS(1068), - [sym__code_span_start] = ACTIONS(1068), - [sym__emphasis_open_star] = ACTIONS(1068), - [sym__emphasis_open_underscore] = ACTIONS(1068), - }, - [223] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(766), - [aux_sym__html_block_1_token1] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_POUND] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [anon_sym_PERCENT] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(768), - [anon_sym_SQUOTE] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(766), - [anon_sym_DASH] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(766), - [anon_sym_SLASH] = ACTIONS(766), - [anon_sym_COLON] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(768), - [anon_sym_EQ] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_QMARK] = ACTIONS(766), - [anon_sym_AT] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_BSLASH] = ACTIONS(768), - [anon_sym_RBRACK] = ACTIONS(766), - [anon_sym_CARET] = ACTIONS(766), - [anon_sym__] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_TILDE] = ACTIONS(766), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(768), - [anon_sym_LT_QMARK] = ACTIONS(768), - [aux_sym__html_block_4_token1] = ACTIONS(768), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(766), - [aux_sym__html_block_6_token1] = ACTIONS(768), - [aux_sym__html_block_6_token2] = ACTIONS(766), - [sym__open_tag_html_block] = ACTIONS(766), - [sym__open_tag_html_block_newline] = ACTIONS(766), - [sym__closing_tag_html_block] = ACTIONS(766), - [sym__closing_tag_html_block_newline] = ACTIONS(766), - [sym_backslash_escape] = ACTIONS(766), - [sym_uri_autolink] = ACTIONS(766), - [sym_email_autolink] = ACTIONS(766), - [sym_entity_reference] = ACTIONS(766), - [sym_numeric_character_reference] = ACTIONS(766), - [sym__whitespace_ge_2] = ACTIONS(766), - [aux_sym__whitespace_token1] = ACTIONS(768), - [sym__word_no_digit] = ACTIONS(766), - [sym__digits] = ACTIONS(766), - [aux_sym__newline_token1] = ACTIONS(766), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(766), - [sym__indented_chunk_start] = ACTIONS(766), - [sym_atx_h1_marker] = ACTIONS(766), - [sym_atx_h2_marker] = ACTIONS(766), - [sym_atx_h3_marker] = ACTIONS(766), - [sym_atx_h4_marker] = ACTIONS(766), - [sym_atx_h5_marker] = ACTIONS(766), - [sym_atx_h6_marker] = ACTIONS(766), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(766), - [sym__thematic_break] = ACTIONS(766), - [sym__list_marker_minus] = ACTIONS(766), - [sym__list_marker_plus] = ACTIONS(766), - [sym__list_marker_star] = ACTIONS(766), - [sym__list_marker_parenthesis] = ACTIONS(766), - [sym__list_marker_dot] = ACTIONS(766), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(766), - [sym__list_marker_star_dont_interrupt] = ACTIONS(766), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(766), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(766), - [sym__fenced_code_block_start_backtick] = ACTIONS(766), - [sym__fenced_code_block_start_tilde] = ACTIONS(766), - [sym__blank_line_start] = ACTIONS(766), - [sym__code_span_start] = ACTIONS(766), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(766), - [sym__emphasis_open_underscore] = ACTIONS(766), - }, - [224] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1106), - [anon_sym_PERCENT] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_COMMA] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1106), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(1106), - [anon_sym_QMARK] = ACTIONS(1106), - [anon_sym_AT] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_BSLASH] = ACTIONS(1108), - [anon_sym_RBRACK] = ACTIONS(1106), - [anon_sym_CARET] = ACTIONS(1106), - [anon_sym__] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1108), - [anon_sym_LT_QMARK] = ACTIONS(1108), - [aux_sym__html_block_4_token1] = ACTIONS(1108), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1106), - [aux_sym__html_block_6_token1] = ACTIONS(1108), - [aux_sym__html_block_6_token2] = ACTIONS(1106), - [sym__open_tag_html_block] = ACTIONS(1106), - [sym__open_tag_html_block_newline] = ACTIONS(1106), - [sym__closing_tag_html_block] = ACTIONS(1106), - [sym__closing_tag_html_block_newline] = ACTIONS(1106), - [sym_backslash_escape] = ACTIONS(1106), - [sym_uri_autolink] = ACTIONS(1106), - [sym_email_autolink] = ACTIONS(1106), - [sym_entity_reference] = ACTIONS(1106), - [sym_numeric_character_reference] = ACTIONS(1106), - [sym__whitespace_ge_2] = ACTIONS(1106), - [aux_sym__whitespace_token1] = ACTIONS(1108), - [sym__word_no_digit] = ACTIONS(1106), - [sym__digits] = ACTIONS(1106), - [aux_sym__newline_token1] = ACTIONS(1106), - [sym__block_close] = ACTIONS(1106), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1106), - [sym__indented_chunk_start] = ACTIONS(1106), - [sym_atx_h1_marker] = ACTIONS(1106), - [sym_atx_h2_marker] = ACTIONS(1106), - [sym_atx_h3_marker] = ACTIONS(1106), - [sym_atx_h4_marker] = ACTIONS(1106), - [sym_atx_h5_marker] = ACTIONS(1106), - [sym_atx_h6_marker] = ACTIONS(1106), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1106), - [sym__thematic_break] = ACTIONS(1106), - [sym__list_marker_minus] = ACTIONS(1106), - [sym__list_marker_plus] = ACTIONS(1106), - [sym__list_marker_star] = ACTIONS(1106), - [sym__list_marker_parenthesis] = ACTIONS(1106), - [sym__list_marker_dot] = ACTIONS(1106), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1106), - [sym__fenced_code_block_start_backtick] = ACTIONS(1106), - [sym__fenced_code_block_start_tilde] = ACTIONS(1106), - [sym__blank_line_start] = ACTIONS(1106), - [sym__code_span_start] = ACTIONS(1106), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1106), - [sym__emphasis_open_underscore] = ACTIONS(1106), - }, - [225] = { - [aux_sym__ignore_matching_tokens] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(772), - [aux_sym__html_block_1_token1] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(772), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_DOT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_BSLASH] = ACTIONS(774), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym__] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(774), - [anon_sym_LT_QMARK] = ACTIONS(774), - [aux_sym__html_block_4_token1] = ACTIONS(774), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(772), - [aux_sym__html_block_6_token1] = ACTIONS(774), - [aux_sym__html_block_6_token2] = ACTIONS(772), - [sym__open_tag_html_block] = ACTIONS(772), - [sym__open_tag_html_block_newline] = ACTIONS(772), - [sym__closing_tag_html_block] = ACTIONS(772), - [sym__closing_tag_html_block_newline] = ACTIONS(772), - [sym_backslash_escape] = ACTIONS(772), - [sym_uri_autolink] = ACTIONS(772), - [sym_email_autolink] = ACTIONS(772), - [sym_entity_reference] = ACTIONS(772), - [sym_numeric_character_reference] = ACTIONS(772), - [sym__whitespace_ge_2] = ACTIONS(772), - [aux_sym__whitespace_token1] = ACTIONS(774), - [sym__word_no_digit] = ACTIONS(772), - [sym__digits] = ACTIONS(772), - [aux_sym__newline_token1] = ACTIONS(772), - [sym__block_continuation] = ACTIONS(1110), - [sym__block_quote_start] = ACTIONS(772), - [sym__indented_chunk_start] = ACTIONS(772), - [sym_atx_h1_marker] = ACTIONS(772), - [sym_atx_h2_marker] = ACTIONS(772), - [sym_atx_h3_marker] = ACTIONS(772), - [sym_atx_h4_marker] = ACTIONS(772), - [sym_atx_h5_marker] = ACTIONS(772), - [sym_atx_h6_marker] = ACTIONS(772), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(772), - [sym__thematic_break] = ACTIONS(772), - [sym__list_marker_minus] = ACTIONS(772), - [sym__list_marker_plus] = ACTIONS(772), - [sym__list_marker_star] = ACTIONS(772), - [sym__list_marker_parenthesis] = ACTIONS(772), - [sym__list_marker_dot] = ACTIONS(772), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(772), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(772), - [sym__list_marker_star_dont_interrupt] = ACTIONS(772), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(772), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(772), - [sym__fenced_code_block_start_backtick] = ACTIONS(772), - [sym__fenced_code_block_start_tilde] = ACTIONS(772), - [sym__blank_line_start] = ACTIONS(772), - [sym__code_span_start] = ACTIONS(772), - [sym__last_token_whitespace] = ACTIONS(1110), - [sym__emphasis_open_star] = ACTIONS(772), - [sym__emphasis_open_underscore] = ACTIONS(772), - }, - [226] = { - [sym_link_title] = STATE(2152), - [sym__whitespace] = STATE(2052), - [aux_sym__html_block_1_token1] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_PERCENT] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1122), - [anon_sym_RPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1112), - [anon_sym_CARET] = ACTIONS(1112), - [anon_sym__] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1117), - [anon_sym_LT_QMARK] = ACTIONS(1117), - [aux_sym__html_block_4_token1] = ACTIONS(1117), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1112), - [aux_sym__html_block_6_token1] = ACTIONS(1117), - [aux_sym__html_block_6_token2] = ACTIONS(1112), - [sym__open_tag_html_block] = ACTIONS(1112), - [sym__open_tag_html_block_newline] = ACTIONS(1112), - [sym__closing_tag_html_block] = ACTIONS(1112), - [sym__closing_tag_html_block_newline] = ACTIONS(1112), - [sym_backslash_escape] = ACTIONS(1112), - [sym_uri_autolink] = ACTIONS(1112), - [sym_email_autolink] = ACTIONS(1112), - [sym_entity_reference] = ACTIONS(1112), - [sym_numeric_character_reference] = ACTIONS(1112), - [sym__whitespace_ge_2] = ACTIONS(1125), - [aux_sym__whitespace_token1] = ACTIONS(1128), - [sym__word_no_digit] = ACTIONS(1112), - [sym__digits] = ACTIONS(1112), - [aux_sym__newline_token1] = ACTIONS(1112), - [sym__block_close] = ACTIONS(1112), - [sym__block_quote_start] = ACTIONS(1112), - [sym__indented_chunk_start] = ACTIONS(1112), - [sym_atx_h1_marker] = ACTIONS(1112), - [sym_atx_h2_marker] = ACTIONS(1112), - [sym_atx_h3_marker] = ACTIONS(1112), - [sym_atx_h4_marker] = ACTIONS(1112), - [sym_atx_h5_marker] = ACTIONS(1112), - [sym_atx_h6_marker] = ACTIONS(1112), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1112), - [sym__thematic_break] = ACTIONS(1112), - [sym__list_marker_minus] = ACTIONS(1112), - [sym__list_marker_plus] = ACTIONS(1112), - [sym__list_marker_star] = ACTIONS(1112), - [sym__list_marker_parenthesis] = ACTIONS(1112), - [sym__list_marker_dot] = ACTIONS(1112), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1112), - [sym__fenced_code_block_start_backtick] = ACTIONS(1112), - [sym__fenced_code_block_start_tilde] = ACTIONS(1112), - [sym__blank_line_start] = ACTIONS(1112), - [sym__code_span_start] = ACTIONS(1112), - [sym__emphasis_open_star] = ACTIONS(1112), - [sym__emphasis_open_underscore] = ACTIONS(1112), - [sym__no_indented_chunk] = ACTIONS(1131), - }, - [227] = { - [sym_list_marker_star] = STATE(9), - [sym__list_item_star] = STATE(227), - [aux_sym__list_star_repeat1] = STATE(227), - [aux_sym__html_block_1_token1] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1061), - [anon_sym_POUND] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_PERCENT] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_SQUOTE] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1061), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_DOT] = ACTIONS(1061), - [anon_sym_SLASH] = ACTIONS(1061), - [anon_sym_COLON] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(1063), - [anon_sym_EQ] = ACTIONS(1061), - [anon_sym_GT] = ACTIONS(1061), - [anon_sym_QMARK] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_BSLASH] = ACTIONS(1063), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_CARET] = ACTIONS(1061), - [anon_sym__] = ACTIONS(1061), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1061), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1063), - [anon_sym_LT_QMARK] = ACTIONS(1063), - [aux_sym__html_block_4_token1] = ACTIONS(1063), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1061), - [aux_sym__html_block_6_token1] = ACTIONS(1063), - [aux_sym__html_block_6_token2] = ACTIONS(1061), - [sym__open_tag_html_block] = ACTIONS(1061), - [sym__open_tag_html_block_newline] = ACTIONS(1061), - [sym__closing_tag_html_block] = ACTIONS(1061), - [sym__closing_tag_html_block_newline] = ACTIONS(1061), - [sym_backslash_escape] = ACTIONS(1061), - [sym_uri_autolink] = ACTIONS(1061), - [sym_email_autolink] = ACTIONS(1061), - [sym_entity_reference] = ACTIONS(1061), - [sym_numeric_character_reference] = ACTIONS(1061), - [sym__whitespace_ge_2] = ACTIONS(1061), - [aux_sym__whitespace_token1] = ACTIONS(1063), - [sym__word_no_digit] = ACTIONS(1061), - [sym__digits] = ACTIONS(1061), - [aux_sym__newline_token1] = ACTIONS(1061), - [sym__block_close] = ACTIONS(1061), - [sym__block_quote_start] = ACTIONS(1061), - [sym__indented_chunk_start] = ACTIONS(1061), - [sym_atx_h1_marker] = ACTIONS(1061), - [sym_atx_h2_marker] = ACTIONS(1061), - [sym_atx_h3_marker] = ACTIONS(1061), - [sym_atx_h4_marker] = ACTIONS(1061), - [sym_atx_h5_marker] = ACTIONS(1061), - [sym_atx_h6_marker] = ACTIONS(1061), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1061), - [sym__thematic_break] = ACTIONS(1061), - [sym__list_marker_minus] = ACTIONS(1061), - [sym__list_marker_plus] = ACTIONS(1061), - [sym__list_marker_star] = ACTIONS(1065), - [sym__list_marker_parenthesis] = ACTIONS(1061), - [sym__list_marker_dot] = ACTIONS(1061), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1061), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1061), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1065), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1061), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1061), - [sym__fenced_code_block_start_backtick] = ACTIONS(1061), - [sym__fenced_code_block_start_tilde] = ACTIONS(1061), - [sym__blank_line_start] = ACTIONS(1061), - [sym__code_span_start] = ACTIONS(1061), - [sym__emphasis_open_star] = ACTIONS(1061), - [sym__emphasis_open_underscore] = ACTIONS(1061), - }, - [228] = { - [sym_list_marker_minus] = STATE(10), - [sym__list_item_minus] = STATE(228), - [aux_sym__list_minus_repeat1] = STATE(228), - [aux_sym__html_block_1_token1] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_PERCENT] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_BSLASH] = ACTIONS(1056), - [anon_sym_RBRACK] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1054), - [anon_sym_BQUOTE] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1054), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1056), - [anon_sym_LT_QMARK] = ACTIONS(1056), - [aux_sym__html_block_4_token1] = ACTIONS(1056), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1054), - [aux_sym__html_block_6_token1] = ACTIONS(1056), - [aux_sym__html_block_6_token2] = ACTIONS(1054), - [sym__open_tag_html_block] = ACTIONS(1054), - [sym__open_tag_html_block_newline] = ACTIONS(1054), - [sym__closing_tag_html_block] = ACTIONS(1054), - [sym__closing_tag_html_block_newline] = ACTIONS(1054), - [sym_backslash_escape] = ACTIONS(1054), - [sym_uri_autolink] = ACTIONS(1054), - [sym_email_autolink] = ACTIONS(1054), - [sym_entity_reference] = ACTIONS(1054), - [sym_numeric_character_reference] = ACTIONS(1054), - [sym__whitespace_ge_2] = ACTIONS(1054), - [aux_sym__whitespace_token1] = ACTIONS(1056), - [sym__word_no_digit] = ACTIONS(1054), - [sym__digits] = ACTIONS(1054), - [aux_sym__newline_token1] = ACTIONS(1054), - [sym__block_close] = ACTIONS(1054), - [sym__block_quote_start] = ACTIONS(1054), - [sym__indented_chunk_start] = ACTIONS(1054), - [sym_atx_h1_marker] = ACTIONS(1054), - [sym_atx_h2_marker] = ACTIONS(1054), - [sym_atx_h3_marker] = ACTIONS(1054), - [sym_atx_h4_marker] = ACTIONS(1054), - [sym_atx_h5_marker] = ACTIONS(1054), - [sym_atx_h6_marker] = ACTIONS(1054), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1054), - [sym__thematic_break] = ACTIONS(1054), - [sym__list_marker_minus] = ACTIONS(1058), - [sym__list_marker_plus] = ACTIONS(1054), - [sym__list_marker_star] = ACTIONS(1054), - [sym__list_marker_parenthesis] = ACTIONS(1054), - [sym__list_marker_dot] = ACTIONS(1054), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1058), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1054), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1054), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1054), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1054), - [sym__fenced_code_block_start_backtick] = ACTIONS(1054), - [sym__fenced_code_block_start_tilde] = ACTIONS(1054), - [sym__blank_line_start] = ACTIONS(1054), - [sym__code_span_start] = ACTIONS(1054), - [sym__emphasis_open_star] = ACTIONS(1054), - [sym__emphasis_open_underscore] = ACTIONS(1054), - }, - [229] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(772), - [aux_sym__html_block_1_token1] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(772), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_DOT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(772), - [anon_sym_COLON] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(774), - [anon_sym_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_BSLASH] = ACTIONS(774), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym__] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(774), - [anon_sym_LT_QMARK] = ACTIONS(774), - [aux_sym__html_block_4_token1] = ACTIONS(774), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(772), - [aux_sym__html_block_6_token1] = ACTIONS(774), - [aux_sym__html_block_6_token2] = ACTIONS(772), - [sym__open_tag_html_block] = ACTIONS(772), - [sym__open_tag_html_block_newline] = ACTIONS(772), - [sym__closing_tag_html_block] = ACTIONS(772), - [sym__closing_tag_html_block_newline] = ACTIONS(772), - [sym_backslash_escape] = ACTIONS(772), - [sym_uri_autolink] = ACTIONS(772), - [sym_email_autolink] = ACTIONS(772), - [sym_entity_reference] = ACTIONS(772), - [sym_numeric_character_reference] = ACTIONS(772), - [sym__whitespace_ge_2] = ACTIONS(772), - [aux_sym__whitespace_token1] = ACTIONS(774), - [sym__word_no_digit] = ACTIONS(772), - [sym__digits] = ACTIONS(772), - [aux_sym__newline_token1] = ACTIONS(772), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(772), - [sym__indented_chunk_start] = ACTIONS(772), - [sym_atx_h1_marker] = ACTIONS(772), - [sym_atx_h2_marker] = ACTIONS(772), - [sym_atx_h3_marker] = ACTIONS(772), - [sym_atx_h4_marker] = ACTIONS(772), - [sym_atx_h5_marker] = ACTIONS(772), - [sym_atx_h6_marker] = ACTIONS(772), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(772), - [sym__thematic_break] = ACTIONS(772), - [sym__list_marker_minus] = ACTIONS(772), - [sym__list_marker_plus] = ACTIONS(772), - [sym__list_marker_star] = ACTIONS(772), - [sym__list_marker_parenthesis] = ACTIONS(772), - [sym__list_marker_dot] = ACTIONS(772), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(772), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(772), - [sym__list_marker_star_dont_interrupt] = ACTIONS(772), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(772), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(772), - [sym__fenced_code_block_start_backtick] = ACTIONS(772), - [sym__fenced_code_block_start_tilde] = ACTIONS(772), - [sym__blank_line_start] = ACTIONS(772), - [sym__code_span_start] = ACTIONS(772), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(772), - [sym__emphasis_open_underscore] = ACTIONS(772), - }, - [230] = { - [aux_sym__ignore_matching_tokens] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(780), - [aux_sym__html_block_1_token1] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_DQUOTE] = ACTIONS(780), - [anon_sym_POUND] = ACTIONS(780), - [anon_sym_DOLLAR] = ACTIONS(780), - [anon_sym_PERCENT] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_DOT] = ACTIONS(780), - [anon_sym_SLASH] = ACTIONS(780), - [anon_sym_COLON] = ACTIONS(780), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_GT] = ACTIONS(780), - [anon_sym_QMARK] = ACTIONS(780), - [anon_sym_AT] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(780), - [anon_sym_BSLASH] = ACTIONS(782), - [anon_sym_RBRACK] = ACTIONS(780), - [anon_sym_CARET] = ACTIONS(780), - [anon_sym__] = ACTIONS(780), - [anon_sym_BQUOTE] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_PIPE] = ACTIONS(780), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(782), - [anon_sym_LT_QMARK] = ACTIONS(782), - [aux_sym__html_block_4_token1] = ACTIONS(782), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(780), - [aux_sym__html_block_6_token1] = ACTIONS(782), - [aux_sym__html_block_6_token2] = ACTIONS(780), - [sym__open_tag_html_block] = ACTIONS(780), - [sym__open_tag_html_block_newline] = ACTIONS(780), - [sym__closing_tag_html_block] = ACTIONS(780), - [sym__closing_tag_html_block_newline] = ACTIONS(780), - [sym_backslash_escape] = ACTIONS(780), - [sym_uri_autolink] = ACTIONS(780), - [sym_email_autolink] = ACTIONS(780), - [sym_entity_reference] = ACTIONS(780), - [sym_numeric_character_reference] = ACTIONS(780), - [sym__whitespace_ge_2] = ACTIONS(780), - [aux_sym__whitespace_token1] = ACTIONS(782), - [sym__word_no_digit] = ACTIONS(780), - [sym__digits] = ACTIONS(780), - [aux_sym__newline_token1] = ACTIONS(780), - [sym__block_continuation] = ACTIONS(1133), - [sym__block_quote_start] = ACTIONS(780), - [sym__indented_chunk_start] = ACTIONS(780), - [sym_atx_h1_marker] = ACTIONS(780), - [sym_atx_h2_marker] = ACTIONS(780), - [sym_atx_h3_marker] = ACTIONS(780), - [sym_atx_h4_marker] = ACTIONS(780), - [sym_atx_h5_marker] = ACTIONS(780), - [sym_atx_h6_marker] = ACTIONS(780), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(780), - [sym__thematic_break] = ACTIONS(780), - [sym__list_marker_minus] = ACTIONS(780), - [sym__list_marker_plus] = ACTIONS(780), - [sym__list_marker_star] = ACTIONS(780), - [sym__list_marker_parenthesis] = ACTIONS(780), - [sym__list_marker_dot] = ACTIONS(780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(780), - [sym__fenced_code_block_start_backtick] = ACTIONS(780), - [sym__fenced_code_block_start_tilde] = ACTIONS(780), - [sym__blank_line_start] = ACTIONS(780), - [sym__code_span_start] = ACTIONS(780), - [sym__last_token_whitespace] = ACTIONS(1133), - [sym__emphasis_open_star] = ACTIONS(780), - [sym__emphasis_open_underscore] = ACTIONS(780), - }, - [231] = { - [sym_list_marker_plus] = STATE(11), - [sym__list_item_plus] = STATE(231), - [aux_sym__list_plus_repeat1] = STATE(231), - [aux_sym__html_block_1_token1] = ACTIONS(1047), - [anon_sym_BANG] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PERCENT] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_STAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_DASH] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1047), - [anon_sym_SLASH] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1047), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1047), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_AT] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_BSLASH] = ACTIONS(1049), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_CARET] = ACTIONS(1047), - [anon_sym__] = ACTIONS(1047), - [anon_sym_BQUOTE] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_PIPE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_TILDE] = ACTIONS(1047), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1049), - [anon_sym_LT_QMARK] = ACTIONS(1049), - [aux_sym__html_block_4_token1] = ACTIONS(1049), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1047), - [aux_sym__html_block_6_token1] = ACTIONS(1049), - [aux_sym__html_block_6_token2] = ACTIONS(1047), - [sym__open_tag_html_block] = ACTIONS(1047), - [sym__open_tag_html_block_newline] = ACTIONS(1047), - [sym__closing_tag_html_block] = ACTIONS(1047), - [sym__closing_tag_html_block_newline] = ACTIONS(1047), - [sym_backslash_escape] = ACTIONS(1047), - [sym_uri_autolink] = ACTIONS(1047), - [sym_email_autolink] = ACTIONS(1047), - [sym_entity_reference] = ACTIONS(1047), - [sym_numeric_character_reference] = ACTIONS(1047), - [sym__whitespace_ge_2] = ACTIONS(1047), - [aux_sym__whitespace_token1] = ACTIONS(1049), - [sym__word_no_digit] = ACTIONS(1047), - [sym__digits] = ACTIONS(1047), - [aux_sym__newline_token1] = ACTIONS(1047), - [sym__block_close] = ACTIONS(1047), - [sym__block_quote_start] = ACTIONS(1047), - [sym__indented_chunk_start] = ACTIONS(1047), - [sym_atx_h1_marker] = ACTIONS(1047), - [sym_atx_h2_marker] = ACTIONS(1047), - [sym_atx_h3_marker] = ACTIONS(1047), - [sym_atx_h4_marker] = ACTIONS(1047), - [sym_atx_h5_marker] = ACTIONS(1047), - [sym_atx_h6_marker] = ACTIONS(1047), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1047), - [sym__thematic_break] = ACTIONS(1047), - [sym__list_marker_minus] = ACTIONS(1047), - [sym__list_marker_plus] = ACTIONS(1051), - [sym__list_marker_star] = ACTIONS(1047), - [sym__list_marker_parenthesis] = ACTIONS(1047), - [sym__list_marker_dot] = ACTIONS(1047), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1047), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1051), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1047), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1047), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1047), - [sym__fenced_code_block_start_backtick] = ACTIONS(1047), - [sym__fenced_code_block_start_tilde] = ACTIONS(1047), - [sym__blank_line_start] = ACTIONS(1047), - [sym__code_span_start] = ACTIONS(1047), - [sym__emphasis_open_star] = ACTIONS(1047), - [sym__emphasis_open_underscore] = ACTIONS(1047), - }, - [232] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(780), - [aux_sym__html_block_1_token1] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(780), - [anon_sym_DQUOTE] = ACTIONS(780), - [anon_sym_POUND] = ACTIONS(780), - [anon_sym_DOLLAR] = ACTIONS(780), - [anon_sym_PERCENT] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_RPAREN] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_PLUS] = ACTIONS(780), - [anon_sym_COMMA] = ACTIONS(780), - [anon_sym_DASH] = ACTIONS(780), - [anon_sym_DOT] = ACTIONS(780), - [anon_sym_SLASH] = ACTIONS(780), - [anon_sym_COLON] = ACTIONS(780), - [anon_sym_SEMI] = ACTIONS(780), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_GT] = ACTIONS(780), - [anon_sym_QMARK] = ACTIONS(780), - [anon_sym_AT] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(780), - [anon_sym_BSLASH] = ACTIONS(782), - [anon_sym_RBRACK] = ACTIONS(780), - [anon_sym_CARET] = ACTIONS(780), - [anon_sym__] = ACTIONS(780), - [anon_sym_BQUOTE] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(780), - [anon_sym_PIPE] = ACTIONS(780), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(782), - [anon_sym_LT_QMARK] = ACTIONS(782), - [aux_sym__html_block_4_token1] = ACTIONS(782), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(780), - [aux_sym__html_block_6_token1] = ACTIONS(782), - [aux_sym__html_block_6_token2] = ACTIONS(780), - [sym__open_tag_html_block] = ACTIONS(780), - [sym__open_tag_html_block_newline] = ACTIONS(780), - [sym__closing_tag_html_block] = ACTIONS(780), - [sym__closing_tag_html_block_newline] = ACTIONS(780), - [sym_backslash_escape] = ACTIONS(780), - [sym_uri_autolink] = ACTIONS(780), - [sym_email_autolink] = ACTIONS(780), - [sym_entity_reference] = ACTIONS(780), - [sym_numeric_character_reference] = ACTIONS(780), - [sym__whitespace_ge_2] = ACTIONS(780), - [aux_sym__whitespace_token1] = ACTIONS(782), - [sym__word_no_digit] = ACTIONS(780), - [sym__digits] = ACTIONS(780), - [aux_sym__newline_token1] = ACTIONS(780), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(780), - [sym__indented_chunk_start] = ACTIONS(780), - [sym_atx_h1_marker] = ACTIONS(780), - [sym_atx_h2_marker] = ACTIONS(780), - [sym_atx_h3_marker] = ACTIONS(780), - [sym_atx_h4_marker] = ACTIONS(780), - [sym_atx_h5_marker] = ACTIONS(780), - [sym_atx_h6_marker] = ACTIONS(780), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(780), - [sym__thematic_break] = ACTIONS(780), - [sym__list_marker_minus] = ACTIONS(780), - [sym__list_marker_plus] = ACTIONS(780), - [sym__list_marker_star] = ACTIONS(780), - [sym__list_marker_parenthesis] = ACTIONS(780), - [sym__list_marker_dot] = ACTIONS(780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(780), - [sym__fenced_code_block_start_backtick] = ACTIONS(780), - [sym__fenced_code_block_start_tilde] = ACTIONS(780), - [sym__blank_line_start] = ACTIONS(780), - [sym__code_span_start] = ACTIONS(780), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(780), - [sym__emphasis_open_underscore] = ACTIONS(780), - }, - [233] = { - [aux_sym__ignore_matching_tokens] = STATE(219), - [aux_sym__html_block_1_token1] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - [anon_sym_BQUOTE] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), - [anon_sym_LT_QMARK] = ACTIONS(1137), - [aux_sym__html_block_4_token1] = ACTIONS(1137), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1135), - [aux_sym__html_block_6_token1] = ACTIONS(1137), - [aux_sym__html_block_6_token2] = ACTIONS(1135), - [sym__open_tag_html_block] = ACTIONS(1135), - [sym__open_tag_html_block_newline] = ACTIONS(1135), - [sym__closing_tag_html_block] = ACTIONS(1135), - [sym__closing_tag_html_block_newline] = ACTIONS(1135), - [sym_backslash_escape] = ACTIONS(1135), - [sym_uri_autolink] = ACTIONS(1135), - [sym_email_autolink] = ACTIONS(1135), - [sym_entity_reference] = ACTIONS(1135), - [sym_numeric_character_reference] = ACTIONS(1135), - [sym__whitespace_ge_2] = ACTIONS(1135), - [aux_sym__whitespace_token1] = ACTIONS(1137), - [sym__word_no_digit] = ACTIONS(1135), - [sym__digits] = ACTIONS(1135), - [aux_sym__newline_token1] = ACTIONS(1135), - [sym__block_close] = ACTIONS(1135), - [sym__block_continuation] = ACTIONS(1139), - [sym__block_quote_start] = ACTIONS(1135), - [sym__indented_chunk_start] = ACTIONS(1135), - [sym_atx_h1_marker] = ACTIONS(1135), - [sym_atx_h2_marker] = ACTIONS(1135), - [sym_atx_h3_marker] = ACTIONS(1135), - [sym_atx_h4_marker] = ACTIONS(1135), - [sym_atx_h5_marker] = ACTIONS(1135), - [sym_atx_h6_marker] = ACTIONS(1135), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1135), - [sym__thematic_break] = ACTIONS(1135), - [sym__list_marker_minus] = ACTIONS(1135), - [sym__list_marker_plus] = ACTIONS(1135), - [sym__list_marker_star] = ACTIONS(1135), - [sym__list_marker_parenthesis] = ACTIONS(1135), - [sym__list_marker_dot] = ACTIONS(1135), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1135), - [sym__fenced_code_block_start_backtick] = ACTIONS(1135), - [sym__fenced_code_block_start_tilde] = ACTIONS(1135), - [sym__blank_line_start] = ACTIONS(1135), - [sym__code_span_start] = ACTIONS(1135), - [sym__last_token_whitespace] = ACTIONS(1139), - [sym__emphasis_open_star] = ACTIONS(1135), - [sym__emphasis_open_underscore] = ACTIONS(1135), - }, - [234] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - [anon_sym_BQUOTE] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), - [anon_sym_LT_QMARK] = ACTIONS(1137), - [aux_sym__html_block_4_token1] = ACTIONS(1137), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1135), - [aux_sym__html_block_6_token1] = ACTIONS(1137), - [aux_sym__html_block_6_token2] = ACTIONS(1135), - [sym__open_tag_html_block] = ACTIONS(1135), - [sym__open_tag_html_block_newline] = ACTIONS(1135), - [sym__closing_tag_html_block] = ACTIONS(1135), - [sym__closing_tag_html_block_newline] = ACTIONS(1135), - [sym_backslash_escape] = ACTIONS(1135), - [sym_uri_autolink] = ACTIONS(1135), - [sym_email_autolink] = ACTIONS(1135), - [sym_entity_reference] = ACTIONS(1135), - [sym_numeric_character_reference] = ACTIONS(1135), - [sym__whitespace_ge_2] = ACTIONS(1135), - [aux_sym__whitespace_token1] = ACTIONS(1137), - [sym__word_no_digit] = ACTIONS(1135), - [sym__digits] = ACTIONS(1135), - [aux_sym__newline_token1] = ACTIONS(1135), - [sym__block_close] = ACTIONS(1135), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1135), - [sym__indented_chunk_start] = ACTIONS(1135), - [sym_atx_h1_marker] = ACTIONS(1135), - [sym_atx_h2_marker] = ACTIONS(1135), - [sym_atx_h3_marker] = ACTIONS(1135), - [sym_atx_h4_marker] = ACTIONS(1135), - [sym_atx_h5_marker] = ACTIONS(1135), - [sym_atx_h6_marker] = ACTIONS(1135), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1135), - [sym__thematic_break] = ACTIONS(1135), - [sym__list_marker_minus] = ACTIONS(1135), - [sym__list_marker_plus] = ACTIONS(1135), - [sym__list_marker_star] = ACTIONS(1135), - [sym__list_marker_parenthesis] = ACTIONS(1135), - [sym__list_marker_dot] = ACTIONS(1135), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1135), - [sym__fenced_code_block_start_backtick] = ACTIONS(1135), - [sym__fenced_code_block_start_tilde] = ACTIONS(1135), - [sym__blank_line_start] = ACTIONS(1135), - [sym__code_span_start] = ACTIONS(1135), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1135), - [sym__emphasis_open_underscore] = ACTIONS(1135), - }, - [235] = { - [aux_sym__ignore_matching_tokens] = STATE(224), - [aux_sym__html_block_1_token1] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_BSLASH] = ACTIONS(1143), - [anon_sym_RBRACK] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym__] = ACTIONS(1141), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1143), - [anon_sym_LT_QMARK] = ACTIONS(1143), - [aux_sym__html_block_4_token1] = ACTIONS(1143), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1141), - [aux_sym__html_block_6_token1] = ACTIONS(1143), - [aux_sym__html_block_6_token2] = ACTIONS(1141), - [sym__open_tag_html_block] = ACTIONS(1141), - [sym__open_tag_html_block_newline] = ACTIONS(1141), - [sym__closing_tag_html_block] = ACTIONS(1141), - [sym__closing_tag_html_block_newline] = ACTIONS(1141), - [sym_backslash_escape] = ACTIONS(1141), - [sym_uri_autolink] = ACTIONS(1141), - [sym_email_autolink] = ACTIONS(1141), - [sym_entity_reference] = ACTIONS(1141), - [sym_numeric_character_reference] = ACTIONS(1141), - [sym__whitespace_ge_2] = ACTIONS(1141), - [aux_sym__whitespace_token1] = ACTIONS(1143), - [sym__word_no_digit] = ACTIONS(1141), - [sym__digits] = ACTIONS(1141), - [aux_sym__newline_token1] = ACTIONS(1141), - [sym__block_close] = ACTIONS(1141), - [sym__block_continuation] = ACTIONS(1145), - [sym__block_quote_start] = ACTIONS(1141), - [sym__indented_chunk_start] = ACTIONS(1141), - [sym_atx_h1_marker] = ACTIONS(1141), - [sym_atx_h2_marker] = ACTIONS(1141), - [sym_atx_h3_marker] = ACTIONS(1141), - [sym_atx_h4_marker] = ACTIONS(1141), - [sym_atx_h5_marker] = ACTIONS(1141), - [sym_atx_h6_marker] = ACTIONS(1141), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1141), - [sym__thematic_break] = ACTIONS(1141), - [sym__list_marker_minus] = ACTIONS(1141), - [sym__list_marker_plus] = ACTIONS(1141), - [sym__list_marker_star] = ACTIONS(1141), - [sym__list_marker_parenthesis] = ACTIONS(1141), - [sym__list_marker_dot] = ACTIONS(1141), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1141), - [sym__fenced_code_block_start_backtick] = ACTIONS(1141), - [sym__fenced_code_block_start_tilde] = ACTIONS(1141), - [sym__blank_line_start] = ACTIONS(1141), - [sym__code_span_start] = ACTIONS(1141), - [sym__last_token_whitespace] = ACTIONS(1145), - [sym__emphasis_open_star] = ACTIONS(1141), - [sym__emphasis_open_underscore] = ACTIONS(1141), - }, - [236] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(522), - [anon_sym_LT_QMARK] = ACTIONS(522), - [aux_sym__html_block_4_token1] = ACTIONS(522), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(520), - [aux_sym__html_block_6_token1] = ACTIONS(522), - [aux_sym__html_block_6_token2] = ACTIONS(520), - [sym__open_tag_html_block] = ACTIONS(520), - [sym__open_tag_html_block_newline] = ACTIONS(520), - [sym__closing_tag_html_block] = ACTIONS(520), - [sym__closing_tag_html_block_newline] = ACTIONS(520), - [sym_backslash_escape] = ACTIONS(520), - [sym_uri_autolink] = ACTIONS(520), - [sym_email_autolink] = ACTIONS(520), - [sym_entity_reference] = ACTIONS(520), - [sym_numeric_character_reference] = ACTIONS(520), - [sym__whitespace_ge_2] = ACTIONS(520), - [aux_sym__whitespace_token1] = ACTIONS(522), - [sym__word_no_digit] = ACTIONS(520), - [sym__digits] = ACTIONS(520), - [aux_sym__newline_token1] = ACTIONS(520), - [sym__block_close] = ACTIONS(520), - [sym__block_continuation] = ACTIONS(1147), - [sym__block_quote_start] = ACTIONS(520), - [sym__indented_chunk_start] = ACTIONS(520), - [sym_atx_h1_marker] = ACTIONS(520), - [sym_atx_h2_marker] = ACTIONS(520), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(520), - [sym_atx_h5_marker] = ACTIONS(520), - [sym_atx_h6_marker] = ACTIONS(520), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), - [sym__thematic_break] = ACTIONS(520), - [sym__list_marker_minus] = ACTIONS(520), - [sym__list_marker_plus] = ACTIONS(520), - [sym__list_marker_star] = ACTIONS(520), - [sym__list_marker_parenthesis] = ACTIONS(520), - [sym__list_marker_dot] = ACTIONS(520), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_star_dont_interrupt] = ACTIONS(520), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(520), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(520), - [sym__fenced_code_block_start_backtick] = ACTIONS(520), - [sym__fenced_code_block_start_tilde] = ACTIONS(520), - [sym__blank_line_start] = ACTIONS(520), - [sym__code_span_start] = ACTIONS(520), - [sym__last_token_whitespace] = ACTIONS(1147), - [sym__emphasis_open_star] = ACTIONS(520), - [sym__emphasis_open_underscore] = ACTIONS(520), - }, - [237] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_BSLASH] = ACTIONS(1143), - [anon_sym_RBRACK] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym__] = ACTIONS(1141), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1143), - [anon_sym_LT_QMARK] = ACTIONS(1143), - [aux_sym__html_block_4_token1] = ACTIONS(1143), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1141), - [aux_sym__html_block_6_token1] = ACTIONS(1143), - [aux_sym__html_block_6_token2] = ACTIONS(1141), - [sym__open_tag_html_block] = ACTIONS(1141), - [sym__open_tag_html_block_newline] = ACTIONS(1141), - [sym__closing_tag_html_block] = ACTIONS(1141), - [sym__closing_tag_html_block_newline] = ACTIONS(1141), - [sym_backslash_escape] = ACTIONS(1141), - [sym_uri_autolink] = ACTIONS(1141), - [sym_email_autolink] = ACTIONS(1141), - [sym_entity_reference] = ACTIONS(1141), - [sym_numeric_character_reference] = ACTIONS(1141), - [sym__whitespace_ge_2] = ACTIONS(1141), - [aux_sym__whitespace_token1] = ACTIONS(1143), - [sym__word_no_digit] = ACTIONS(1141), - [sym__digits] = ACTIONS(1141), - [aux_sym__newline_token1] = ACTIONS(1141), - [sym__block_close] = ACTIONS(1141), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1141), - [sym__indented_chunk_start] = ACTIONS(1141), - [sym_atx_h1_marker] = ACTIONS(1141), - [sym_atx_h2_marker] = ACTIONS(1141), - [sym_atx_h3_marker] = ACTIONS(1141), - [sym_atx_h4_marker] = ACTIONS(1141), - [sym_atx_h5_marker] = ACTIONS(1141), - [sym_atx_h6_marker] = ACTIONS(1141), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1141), - [sym__thematic_break] = ACTIONS(1141), - [sym__list_marker_minus] = ACTIONS(1141), - [sym__list_marker_plus] = ACTIONS(1141), - [sym__list_marker_star] = ACTIONS(1141), - [sym__list_marker_parenthesis] = ACTIONS(1141), - [sym__list_marker_dot] = ACTIONS(1141), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1141), - [sym__fenced_code_block_start_backtick] = ACTIONS(1141), - [sym__fenced_code_block_start_tilde] = ACTIONS(1141), - [sym__blank_line_start] = ACTIONS(1141), - [sym__code_span_start] = ACTIONS(1141), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1141), - [sym__emphasis_open_underscore] = ACTIONS(1141), - }, - [238] = { - [sym_link_title] = STATE(2190), - [sym__whitespace] = STATE(2044), - [ts_builtin_sym_end] = ACTIONS(1150), - [aux_sym__html_block_1_token1] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1150), - [anon_sym_COLON] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_EQ] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_QMARK] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_BSLASH] = ACTIONS(1155), - [anon_sym_RBRACK] = ACTIONS(1150), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym__] = ACTIONS(1150), - [anon_sym_BQUOTE] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1155), - [anon_sym_LT_QMARK] = ACTIONS(1155), - [aux_sym__html_block_4_token1] = ACTIONS(1155), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1150), - [aux_sym__html_block_6_token1] = ACTIONS(1155), - [aux_sym__html_block_6_token2] = ACTIONS(1150), - [sym__open_tag_html_block] = ACTIONS(1150), - [sym__open_tag_html_block_newline] = ACTIONS(1150), - [sym__closing_tag_html_block] = ACTIONS(1150), - [sym__closing_tag_html_block_newline] = ACTIONS(1150), - [sym_backslash_escape] = ACTIONS(1150), - [sym_uri_autolink] = ACTIONS(1150), - [sym_email_autolink] = ACTIONS(1150), - [sym_entity_reference] = ACTIONS(1150), - [sym_numeric_character_reference] = ACTIONS(1150), - [sym__whitespace_ge_2] = ACTIONS(1163), - [aux_sym__whitespace_token1] = ACTIONS(1166), - [sym__word_no_digit] = ACTIONS(1150), - [sym__digits] = ACTIONS(1150), - [aux_sym__newline_token1] = ACTIONS(1150), - [sym__block_quote_start] = ACTIONS(1150), - [sym__indented_chunk_start] = ACTIONS(1150), - [sym_atx_h1_marker] = ACTIONS(1150), - [sym_atx_h2_marker] = ACTIONS(1150), - [sym_atx_h3_marker] = ACTIONS(1150), - [sym_atx_h4_marker] = ACTIONS(1150), - [sym_atx_h5_marker] = ACTIONS(1150), - [sym_atx_h6_marker] = ACTIONS(1150), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1150), - [sym__thematic_break] = ACTIONS(1150), - [sym__list_marker_minus] = ACTIONS(1150), - [sym__list_marker_plus] = ACTIONS(1150), - [sym__list_marker_star] = ACTIONS(1150), - [sym__list_marker_parenthesis] = ACTIONS(1150), - [sym__list_marker_dot] = ACTIONS(1150), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1150), - [sym__fenced_code_block_start_backtick] = ACTIONS(1150), - [sym__fenced_code_block_start_tilde] = ACTIONS(1150), - [sym__blank_line_start] = ACTIONS(1150), - [sym__code_span_start] = ACTIONS(1150), - [sym__emphasis_open_star] = ACTIONS(1150), - [sym__emphasis_open_underscore] = ACTIONS(1150), - [sym__no_indented_chunk] = ACTIONS(1169), - }, - [239] = { - [sym__blank_line] = STATE(184), - [sym__indented_chunk] = STATE(184), - [aux_sym_indented_code_block_repeat1] = STATE(184), - [aux_sym__html_block_1_token1] = ACTIONS(860), - [anon_sym_BANG] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(860), - [anon_sym_POUND] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(860), - [anon_sym_PERCENT] = ACTIONS(860), - [anon_sym_AMP] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(860), - [anon_sym_LPAREN] = ACTIONS(860), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(860), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_COMMA] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_DOT] = ACTIONS(860), - [anon_sym_SLASH] = ACTIONS(860), - [anon_sym_COLON] = ACTIONS(860), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(860), - [anon_sym_GT] = ACTIONS(860), - [anon_sym_QMARK] = ACTIONS(860), - [anon_sym_AT] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_BSLASH] = ACTIONS(862), - [anon_sym_RBRACK] = ACTIONS(860), - [anon_sym_CARET] = ACTIONS(860), - [anon_sym__] = ACTIONS(860), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(860), - [anon_sym_RBRACE] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(860), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(862), - [anon_sym_LT_QMARK] = ACTIONS(862), - [aux_sym__html_block_4_token1] = ACTIONS(862), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(860), - [aux_sym__html_block_6_token1] = ACTIONS(862), - [aux_sym__html_block_6_token2] = ACTIONS(860), - [sym__open_tag_html_block] = ACTIONS(860), - [sym__open_tag_html_block_newline] = ACTIONS(860), - [sym__closing_tag_html_block] = ACTIONS(860), - [sym__closing_tag_html_block_newline] = ACTIONS(860), - [sym_backslash_escape] = ACTIONS(860), - [sym_uri_autolink] = ACTIONS(860), - [sym_email_autolink] = ACTIONS(860), - [sym_entity_reference] = ACTIONS(860), - [sym_numeric_character_reference] = ACTIONS(860), - [sym__whitespace_ge_2] = ACTIONS(860), - [aux_sym__whitespace_token1] = ACTIONS(862), - [sym__word_no_digit] = ACTIONS(860), - [sym__digits] = ACTIONS(860), - [aux_sym__newline_token1] = ACTIONS(860), - [sym__block_close] = ACTIONS(860), - [sym__block_quote_start] = ACTIONS(860), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(860), - [sym_atx_h2_marker] = ACTIONS(860), - [sym_atx_h3_marker] = ACTIONS(860), - [sym_atx_h4_marker] = ACTIONS(860), - [sym_atx_h5_marker] = ACTIONS(860), - [sym_atx_h6_marker] = ACTIONS(860), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(860), - [sym__thematic_break] = ACTIONS(860), - [sym__list_marker_minus] = ACTIONS(860), - [sym__list_marker_plus] = ACTIONS(860), - [sym__list_marker_star] = ACTIONS(860), - [sym__list_marker_parenthesis] = ACTIONS(860), - [sym__list_marker_dot] = ACTIONS(860), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(860), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(860), - [sym__list_marker_star_dont_interrupt] = ACTIONS(860), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(860), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(860), - [sym__fenced_code_block_start_backtick] = ACTIONS(860), - [sym__fenced_code_block_start_tilde] = ACTIONS(860), - [sym__blank_line_start] = ACTIONS(111), - [sym__code_span_start] = ACTIONS(860), - [sym__emphasis_open_star] = ACTIONS(860), - [sym__emphasis_open_underscore] = ACTIONS(860), - }, - [240] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(704), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_POUND] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PERCENT] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(706), - [anon_sym_SQUOTE] = ACTIONS(704), - [anon_sym_LPAREN] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_COMMA] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_COLON] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_LT] = ACTIONS(706), - [anon_sym_EQ] = ACTIONS(704), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_QMARK] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_BSLASH] = ACTIONS(706), - [anon_sym_RBRACK] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(704), - [anon_sym__] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_TILDE] = ACTIONS(704), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(706), - [anon_sym_LT_QMARK] = ACTIONS(706), - [aux_sym__html_block_4_token1] = ACTIONS(706), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(704), - [aux_sym__html_block_6_token1] = ACTIONS(706), - [aux_sym__html_block_6_token2] = ACTIONS(704), - [sym__open_tag_html_block] = ACTIONS(704), - [sym__open_tag_html_block_newline] = ACTIONS(704), - [sym__closing_tag_html_block] = ACTIONS(704), - [sym__closing_tag_html_block_newline] = ACTIONS(704), - [sym_backslash_escape] = ACTIONS(704), - [sym_uri_autolink] = ACTIONS(704), - [sym_email_autolink] = ACTIONS(704), - [sym_entity_reference] = ACTIONS(704), - [sym_numeric_character_reference] = ACTIONS(704), - [sym__whitespace_ge_2] = ACTIONS(704), - [aux_sym__whitespace_token1] = ACTIONS(706), - [sym__word_no_digit] = ACTIONS(704), - [sym__digits] = ACTIONS(704), - [aux_sym__newline_token1] = ACTIONS(704), - [sym__block_close] = ACTIONS(704), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(704), - [sym__indented_chunk_start] = ACTIONS(704), - [sym_atx_h1_marker] = ACTIONS(704), - [sym_atx_h2_marker] = ACTIONS(704), - [sym_atx_h3_marker] = ACTIONS(704), - [sym_atx_h4_marker] = ACTIONS(704), - [sym_atx_h5_marker] = ACTIONS(704), - [sym_atx_h6_marker] = ACTIONS(704), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(704), - [sym__thematic_break] = ACTIONS(704), - [sym__list_marker_minus] = ACTIONS(704), - [sym__list_marker_plus] = ACTIONS(704), - [sym__list_marker_star] = ACTIONS(704), - [sym__list_marker_parenthesis] = ACTIONS(704), - [sym__list_marker_dot] = ACTIONS(704), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(704), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(704), - [sym__list_marker_star_dont_interrupt] = ACTIONS(704), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(704), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(704), - [sym__fenced_code_block_start_backtick] = ACTIONS(704), - [sym__fenced_code_block_start_tilde] = ACTIONS(704), - [sym__blank_line_start] = ACTIONS(704), - [sym__code_span_start] = ACTIONS(704), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(704), - [sym__emphasis_open_underscore] = ACTIONS(704), - }, - [241] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(708), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PERCENT] = ACTIONS(708), - [anon_sym_AMP] = ACTIONS(710), - [anon_sym_SQUOTE] = ACTIONS(708), - [anon_sym_LPAREN] = ACTIONS(708), - [anon_sym_RPAREN] = ACTIONS(708), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(708), - [anon_sym_COMMA] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_DOT] = ACTIONS(708), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_COLON] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(708), - [anon_sym_LT] = ACTIONS(710), - [anon_sym_EQ] = ACTIONS(708), - [anon_sym_GT] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(708), - [anon_sym_LBRACK] = ACTIONS(708), - [anon_sym_BSLASH] = ACTIONS(710), - [anon_sym_RBRACK] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(708), - [anon_sym__] = ACTIONS(708), - [anon_sym_BQUOTE] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_TILDE] = ACTIONS(708), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(710), - [anon_sym_LT_QMARK] = ACTIONS(710), - [aux_sym__html_block_4_token1] = ACTIONS(710), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(708), - [aux_sym__html_block_6_token1] = ACTIONS(710), - [aux_sym__html_block_6_token2] = ACTIONS(708), - [sym__open_tag_html_block] = ACTIONS(708), - [sym__open_tag_html_block_newline] = ACTIONS(708), - [sym__closing_tag_html_block] = ACTIONS(708), - [sym__closing_tag_html_block_newline] = ACTIONS(708), - [sym_backslash_escape] = ACTIONS(708), - [sym_uri_autolink] = ACTIONS(708), - [sym_email_autolink] = ACTIONS(708), - [sym_entity_reference] = ACTIONS(708), - [sym_numeric_character_reference] = ACTIONS(708), - [sym__whitespace_ge_2] = ACTIONS(708), - [aux_sym__whitespace_token1] = ACTIONS(710), - [sym__word_no_digit] = ACTIONS(708), - [sym__digits] = ACTIONS(708), - [aux_sym__newline_token1] = ACTIONS(708), - [sym__block_close] = ACTIONS(708), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(708), - [sym__indented_chunk_start] = ACTIONS(708), - [sym_atx_h1_marker] = ACTIONS(708), - [sym_atx_h2_marker] = ACTIONS(708), - [sym_atx_h3_marker] = ACTIONS(708), - [sym_atx_h4_marker] = ACTIONS(708), - [sym_atx_h5_marker] = ACTIONS(708), - [sym_atx_h6_marker] = ACTIONS(708), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(708), - [sym__thematic_break] = ACTIONS(708), - [sym__list_marker_minus] = ACTIONS(708), - [sym__list_marker_plus] = ACTIONS(708), - [sym__list_marker_star] = ACTIONS(708), - [sym__list_marker_parenthesis] = ACTIONS(708), - [sym__list_marker_dot] = ACTIONS(708), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(708), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(708), - [sym__list_marker_star_dont_interrupt] = ACTIONS(708), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(708), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(708), - [sym__fenced_code_block_start_backtick] = ACTIONS(708), - [sym__fenced_code_block_start_tilde] = ACTIONS(708), - [sym__blank_line_start] = ACTIONS(708), - [sym__code_span_start] = ACTIONS(708), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(708), - [sym__emphasis_open_underscore] = ACTIONS(708), - }, - [242] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(724), - [anon_sym_BANG] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_POUND] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_PERCENT] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_SQUOTE] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_DOT] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_COLON] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(726), - [anon_sym_EQ] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_QMARK] = ACTIONS(724), - [anon_sym_AT] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_BSLASH] = ACTIONS(726), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_CARET] = ACTIONS(724), - [anon_sym__] = ACTIONS(724), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_TILDE] = ACTIONS(724), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(726), - [anon_sym_LT_QMARK] = ACTIONS(726), - [aux_sym__html_block_4_token1] = ACTIONS(726), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(724), - [aux_sym__html_block_6_token1] = ACTIONS(726), - [aux_sym__html_block_6_token2] = ACTIONS(724), - [sym__open_tag_html_block] = ACTIONS(724), - [sym__open_tag_html_block_newline] = ACTIONS(724), - [sym__closing_tag_html_block] = ACTIONS(724), - [sym__closing_tag_html_block_newline] = ACTIONS(724), - [sym_backslash_escape] = ACTIONS(724), - [sym_uri_autolink] = ACTIONS(724), - [sym_email_autolink] = ACTIONS(724), - [sym_entity_reference] = ACTIONS(724), - [sym_numeric_character_reference] = ACTIONS(724), - [sym__whitespace_ge_2] = ACTIONS(724), - [aux_sym__whitespace_token1] = ACTIONS(726), - [sym__word_no_digit] = ACTIONS(724), - [sym__digits] = ACTIONS(724), - [aux_sym__newline_token1] = ACTIONS(724), - [sym__block_close] = ACTIONS(724), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(724), - [sym__indented_chunk_start] = ACTIONS(724), - [sym_atx_h1_marker] = ACTIONS(724), - [sym_atx_h2_marker] = ACTIONS(724), - [sym_atx_h3_marker] = ACTIONS(724), - [sym_atx_h4_marker] = ACTIONS(724), - [sym_atx_h5_marker] = ACTIONS(724), - [sym_atx_h6_marker] = ACTIONS(724), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(724), - [sym__thematic_break] = ACTIONS(724), - [sym__list_marker_minus] = ACTIONS(724), - [sym__list_marker_plus] = ACTIONS(724), - [sym__list_marker_star] = ACTIONS(724), - [sym__list_marker_parenthesis] = ACTIONS(724), - [sym__list_marker_dot] = ACTIONS(724), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(724), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(724), - [sym__list_marker_star_dont_interrupt] = ACTIONS(724), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(724), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(724), - [sym__fenced_code_block_start_backtick] = ACTIONS(724), - [sym__fenced_code_block_start_tilde] = ACTIONS(724), - [sym__blank_line_start] = ACTIONS(724), - [sym__code_span_start] = ACTIONS(724), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(724), - [sym__emphasis_open_underscore] = ACTIONS(724), - }, - [243] = { - [sym_shortcut_link] = STATE(243), - [sym_full_reference_link] = STATE(243), - [sym_collapsed_reference_link] = STATE(243), - [sym_inline_link] = STATE(243), - [sym_image] = STATE(243), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym__soft_line_break] = STATE(243), - [sym_hard_line_break] = STATE(243), - [sym_html_tag] = STATE(243), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(243), - [sym__word] = STATE(243), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star] = STATE(243), - [aux_sym__inline_no_star] = STATE(243), - [sym__text_inline_no_star] = STATE(243), - [sym__emphasis_star] = STATE(780), - [sym__strong_emphasis_star] = STATE(243), - [sym__emphasis_underscore] = STATE(780), - [sym__strong_emphasis_underscore] = STATE(243), - [sym__code_span] = STATE(243), - [anon_sym_BANG] = ACTIONS(1171), - [anon_sym_DQUOTE] = ACTIONS(1174), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_PERCENT] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1174), - [anon_sym_RPAREN] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_DOT] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1174), - [anon_sym_COLON] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1174), - [anon_sym_GT] = ACTIONS(1174), - [anon_sym_QMARK] = ACTIONS(1174), - [anon_sym_AT] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1183), - [anon_sym_BSLASH] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1174), - [anon_sym_CARET] = ACTIONS(1174), - [anon_sym__] = ACTIONS(1174), - [anon_sym_BQUOTE] = ACTIONS(1174), - [anon_sym_LBRACE] = ACTIONS(1174), - [anon_sym_PIPE] = ACTIONS(1174), - [anon_sym_RBRACE] = ACTIONS(1174), - [anon_sym_TILDE] = ACTIONS(1174), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1189), - [anon_sym_LT_QMARK] = ACTIONS(1192), - [aux_sym__html_block_4_token1] = ACTIONS(1195), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1198), - [sym_backslash_escape] = ACTIONS(1201), - [sym_uri_autolink] = ACTIONS(1201), - [sym_email_autolink] = ACTIONS(1201), - [sym_entity_reference] = ACTIONS(1201), - [sym_numeric_character_reference] = ACTIONS(1201), - [sym__whitespace_ge_2] = ACTIONS(1204), - [aux_sym__whitespace_token1] = ACTIONS(1207), - [sym__word_no_digit] = ACTIONS(1201), - [sym__digits] = ACTIONS(1201), - [aux_sym__newline_token1] = ACTIONS(1210), - [sym__code_span_start] = ACTIONS(1213), - [sym__emphasis_open_star] = ACTIONS(1216), - [sym__emphasis_open_underscore] = ACTIONS(1219), - [sym__emphasis_close_star] = ACTIONS(1222), - }, - [244] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(728), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_PERCENT] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_COLON] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(730), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(728), - [anon_sym_AT] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_BSLASH] = ACTIONS(730), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym__] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(730), - [anon_sym_LT_QMARK] = ACTIONS(730), - [aux_sym__html_block_4_token1] = ACTIONS(730), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(728), - [aux_sym__html_block_6_token1] = ACTIONS(730), - [aux_sym__html_block_6_token2] = ACTIONS(728), - [sym__open_tag_html_block] = ACTIONS(728), - [sym__open_tag_html_block_newline] = ACTIONS(728), - [sym__closing_tag_html_block] = ACTIONS(728), - [sym__closing_tag_html_block_newline] = ACTIONS(728), - [sym_backslash_escape] = ACTIONS(728), - [sym_uri_autolink] = ACTIONS(728), - [sym_email_autolink] = ACTIONS(728), - [sym_entity_reference] = ACTIONS(728), - [sym_numeric_character_reference] = ACTIONS(728), - [sym__whitespace_ge_2] = ACTIONS(728), - [aux_sym__whitespace_token1] = ACTIONS(730), - [sym__word_no_digit] = ACTIONS(728), - [sym__digits] = ACTIONS(728), - [aux_sym__newline_token1] = ACTIONS(728), - [sym__block_close] = ACTIONS(728), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(728), - [sym__indented_chunk_start] = ACTIONS(728), - [sym_atx_h1_marker] = ACTIONS(728), - [sym_atx_h2_marker] = ACTIONS(728), - [sym_atx_h3_marker] = ACTIONS(728), - [sym_atx_h4_marker] = ACTIONS(728), - [sym_atx_h5_marker] = ACTIONS(728), - [sym_atx_h6_marker] = ACTIONS(728), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(728), - [sym__thematic_break] = ACTIONS(728), - [sym__list_marker_minus] = ACTIONS(728), - [sym__list_marker_plus] = ACTIONS(728), - [sym__list_marker_star] = ACTIONS(728), - [sym__list_marker_parenthesis] = ACTIONS(728), - [sym__list_marker_dot] = ACTIONS(728), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(728), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(728), - [sym__list_marker_star_dont_interrupt] = ACTIONS(728), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(728), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(728), - [sym__fenced_code_block_start_backtick] = ACTIONS(728), - [sym__fenced_code_block_start_tilde] = ACTIONS(728), - [sym__blank_line_start] = ACTIONS(728), - [sym__code_span_start] = ACTIONS(728), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(728), - [sym__emphasis_open_underscore] = ACTIONS(728), - }, - [245] = { - [aux_sym__ignore_matching_tokens] = STATE(298), - [aux_sym__html_block_1_token1] = ACTIONS(728), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_PERCENT] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_COLON] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(730), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(728), - [anon_sym_AT] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_BSLASH] = ACTIONS(730), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym__] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_TILDE] = ACTIONS(728), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(730), - [anon_sym_LT_QMARK] = ACTIONS(730), - [aux_sym__html_block_4_token1] = ACTIONS(730), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(728), - [aux_sym__html_block_6_token1] = ACTIONS(730), - [aux_sym__html_block_6_token2] = ACTIONS(728), - [sym__open_tag_html_block] = ACTIONS(728), - [sym__open_tag_html_block_newline] = ACTIONS(728), - [sym__closing_tag_html_block] = ACTIONS(728), - [sym__closing_tag_html_block_newline] = ACTIONS(728), - [sym_backslash_escape] = ACTIONS(728), - [sym_uri_autolink] = ACTIONS(728), - [sym_email_autolink] = ACTIONS(728), - [sym_entity_reference] = ACTIONS(728), - [sym_numeric_character_reference] = ACTIONS(728), - [sym__whitespace_ge_2] = ACTIONS(728), - [aux_sym__whitespace_token1] = ACTIONS(730), - [sym__word_no_digit] = ACTIONS(728), - [sym__digits] = ACTIONS(728), - [aux_sym__newline_token1] = ACTIONS(728), - [sym__block_close] = ACTIONS(728), - [sym__block_continuation] = ACTIONS(1224), - [sym__block_quote_start] = ACTIONS(728), - [sym__indented_chunk_start] = ACTIONS(728), - [sym_atx_h1_marker] = ACTIONS(728), - [sym_atx_h2_marker] = ACTIONS(728), - [sym_atx_h3_marker] = ACTIONS(728), - [sym_atx_h4_marker] = ACTIONS(728), - [sym_atx_h5_marker] = ACTIONS(728), - [sym_atx_h6_marker] = ACTIONS(728), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(728), - [sym__thematic_break] = ACTIONS(728), - [sym__list_marker_minus] = ACTIONS(728), - [sym__list_marker_plus] = ACTIONS(728), - [sym__list_marker_star] = ACTIONS(728), - [sym__list_marker_parenthesis] = ACTIONS(728), - [sym__list_marker_dot] = ACTIONS(728), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(728), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(728), - [sym__list_marker_star_dont_interrupt] = ACTIONS(728), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(728), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(728), - [sym__fenced_code_block_start_backtick] = ACTIONS(728), - [sym__fenced_code_block_start_tilde] = ACTIONS(728), - [sym__blank_line_start] = ACTIONS(728), - [sym__code_span_start] = ACTIONS(728), - [sym__last_token_whitespace] = ACTIONS(1224), - [sym__emphasis_open_star] = ACTIONS(728), - [sym__emphasis_open_underscore] = ACTIONS(728), - }, - [246] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_POUND] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_PERCENT] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(762), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_BSLASH] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym__] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(764), - [anon_sym_LT_QMARK] = ACTIONS(764), - [aux_sym__html_block_4_token1] = ACTIONS(764), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(762), - [aux_sym__html_block_6_token1] = ACTIONS(764), - [aux_sym__html_block_6_token2] = ACTIONS(762), - [sym__open_tag_html_block] = ACTIONS(762), - [sym__open_tag_html_block_newline] = ACTIONS(762), - [sym__closing_tag_html_block] = ACTIONS(762), - [sym__closing_tag_html_block_newline] = ACTIONS(762), - [sym_backslash_escape] = ACTIONS(762), - [sym_uri_autolink] = ACTIONS(762), - [sym_email_autolink] = ACTIONS(762), - [sym_entity_reference] = ACTIONS(762), - [sym_numeric_character_reference] = ACTIONS(762), - [sym__whitespace_ge_2] = ACTIONS(762), - [aux_sym__whitespace_token1] = ACTIONS(764), - [sym__word_no_digit] = ACTIONS(762), - [sym__digits] = ACTIONS(762), - [aux_sym__newline_token1] = ACTIONS(762), - [sym__block_close] = ACTIONS(762), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(762), - [sym__indented_chunk_start] = ACTIONS(762), - [sym_atx_h1_marker] = ACTIONS(762), - [sym_atx_h2_marker] = ACTIONS(762), - [sym_atx_h3_marker] = ACTIONS(762), - [sym_atx_h4_marker] = ACTIONS(762), - [sym_atx_h5_marker] = ACTIONS(762), - [sym_atx_h6_marker] = ACTIONS(762), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(762), - [sym__thematic_break] = ACTIONS(762), - [sym__list_marker_minus] = ACTIONS(762), - [sym__list_marker_plus] = ACTIONS(762), - [sym__list_marker_star] = ACTIONS(762), - [sym__list_marker_parenthesis] = ACTIONS(762), - [sym__list_marker_dot] = ACTIONS(762), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_star_dont_interrupt] = ACTIONS(762), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(762), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(762), - [sym__fenced_code_block_start_backtick] = ACTIONS(762), - [sym__fenced_code_block_start_tilde] = ACTIONS(762), - [sym__blank_line_start] = ACTIONS(762), - [sym__code_span_start] = ACTIONS(762), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(762), - [sym__emphasis_open_underscore] = ACTIONS(762), - }, - [247] = { - [sym_shortcut_link] = STATE(247), - [sym_full_reference_link] = STATE(247), - [sym_collapsed_reference_link] = STATE(247), - [sym_inline_link] = STATE(247), - [sym_image] = STATE(247), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym__soft_line_break] = STATE(247), - [sym_hard_line_break] = STATE(247), - [sym_html_tag] = STATE(247), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(247), - [sym__word] = STATE(247), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore] = STATE(247), - [aux_sym__inline_no_underscore] = STATE(247), - [sym__text_inline_no_underscore] = STATE(247), - [sym__emphasis_star] = STATE(725), - [sym__strong_emphasis_star] = STATE(247), - [sym__emphasis_underscore] = STATE(725), - [sym__strong_emphasis_underscore] = STATE(247), - [sym__code_span] = STATE(247), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1229), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_DOLLAR] = ACTIONS(1229), - [anon_sym_PERCENT] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_PLUS] = ACTIONS(1229), - [anon_sym_COMMA] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_DOT] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1229), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_EQ] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_QMARK] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_BSLASH] = ACTIONS(1241), - [anon_sym_RBRACK] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym__] = ACTIONS(1229), - [anon_sym_BQUOTE] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1244), - [anon_sym_LT_QMARK] = ACTIONS(1247), - [aux_sym__html_block_4_token1] = ACTIONS(1250), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1253), - [sym_backslash_escape] = ACTIONS(1256), - [sym_uri_autolink] = ACTIONS(1256), - [sym_email_autolink] = ACTIONS(1256), - [sym_entity_reference] = ACTIONS(1256), - [sym_numeric_character_reference] = ACTIONS(1256), - [sym__whitespace_ge_2] = ACTIONS(1259), - [aux_sym__whitespace_token1] = ACTIONS(1262), - [sym__word_no_digit] = ACTIONS(1256), - [sym__digits] = ACTIONS(1256), - [aux_sym__newline_token1] = ACTIONS(1265), - [sym__code_span_start] = ACTIONS(1268), - [sym__emphasis_open_star] = ACTIONS(1271), - [sym__emphasis_open_underscore] = ACTIONS(1274), - [sym__emphasis_close_underscore] = ACTIONS(1277), - }, - [248] = { - [aux_sym__ignore_matching_tokens] = STATE(285), - [aux_sym__html_block_1_token1] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_POUND] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [anon_sym_PERCENT] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_SQUOTE] = ACTIONS(762), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_PLUS] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(762), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_COLON] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_BSLASH] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(762), - [anon_sym_CARET] = ACTIONS(762), - [anon_sym__] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(764), - [anon_sym_LT_QMARK] = ACTIONS(764), - [aux_sym__html_block_4_token1] = ACTIONS(764), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(762), - [aux_sym__html_block_6_token1] = ACTIONS(764), - [aux_sym__html_block_6_token2] = ACTIONS(762), - [sym__open_tag_html_block] = ACTIONS(762), - [sym__open_tag_html_block_newline] = ACTIONS(762), - [sym__closing_tag_html_block] = ACTIONS(762), - [sym__closing_tag_html_block_newline] = ACTIONS(762), - [sym_backslash_escape] = ACTIONS(762), - [sym_uri_autolink] = ACTIONS(762), - [sym_email_autolink] = ACTIONS(762), - [sym_entity_reference] = ACTIONS(762), - [sym_numeric_character_reference] = ACTIONS(762), - [sym__whitespace_ge_2] = ACTIONS(762), - [aux_sym__whitespace_token1] = ACTIONS(764), - [sym__word_no_digit] = ACTIONS(762), - [sym__digits] = ACTIONS(762), - [aux_sym__newline_token1] = ACTIONS(762), - [sym__block_close] = ACTIONS(762), - [sym__block_continuation] = ACTIONS(1279), - [sym__block_quote_start] = ACTIONS(762), - [sym__indented_chunk_start] = ACTIONS(762), - [sym_atx_h1_marker] = ACTIONS(762), - [sym_atx_h2_marker] = ACTIONS(762), - [sym_atx_h3_marker] = ACTIONS(762), - [sym_atx_h4_marker] = ACTIONS(762), - [sym_atx_h5_marker] = ACTIONS(762), - [sym_atx_h6_marker] = ACTIONS(762), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(762), - [sym__thematic_break] = ACTIONS(762), - [sym__list_marker_minus] = ACTIONS(762), - [sym__list_marker_plus] = ACTIONS(762), - [sym__list_marker_star] = ACTIONS(762), - [sym__list_marker_parenthesis] = ACTIONS(762), - [sym__list_marker_dot] = ACTIONS(762), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(762), - [sym__list_marker_star_dont_interrupt] = ACTIONS(762), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(762), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(762), - [sym__fenced_code_block_start_backtick] = ACTIONS(762), - [sym__fenced_code_block_start_tilde] = ACTIONS(762), - [sym__blank_line_start] = ACTIONS(762), - [sym__code_span_start] = ACTIONS(762), - [sym__last_token_whitespace] = ACTIONS(1279), - [sym__emphasis_open_star] = ACTIONS(762), - [sym__emphasis_open_underscore] = ACTIONS(762), - }, - [249] = { - [aux_sym__ignore_matching_tokens] = STATE(262), - [ts_builtin_sym_end] = ACTIONS(1030), - [aux_sym__html_block_1_token1] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_PERCENT] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_SLASH] = ACTIONS(1030), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1030), - [anon_sym_GT] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1030), - [anon_sym_AT] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_BSLASH] = ACTIONS(1032), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1030), - [anon_sym__] = ACTIONS(1030), - [anon_sym_BQUOTE] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_TILDE] = ACTIONS(1030), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1032), - [anon_sym_LT_QMARK] = ACTIONS(1032), - [aux_sym__html_block_4_token1] = ACTIONS(1032), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1030), - [aux_sym__html_block_6_token1] = ACTIONS(1032), - [aux_sym__html_block_6_token2] = ACTIONS(1030), - [sym__open_tag_html_block] = ACTIONS(1030), - [sym__open_tag_html_block_newline] = ACTIONS(1030), - [sym__closing_tag_html_block] = ACTIONS(1030), - [sym__closing_tag_html_block_newline] = ACTIONS(1030), - [sym_backslash_escape] = ACTIONS(1030), - [sym_uri_autolink] = ACTIONS(1030), - [sym_email_autolink] = ACTIONS(1030), - [sym_entity_reference] = ACTIONS(1030), - [sym_numeric_character_reference] = ACTIONS(1030), - [sym__whitespace_ge_2] = ACTIONS(1030), - [aux_sym__whitespace_token1] = ACTIONS(1032), - [sym__word_no_digit] = ACTIONS(1030), - [sym__digits] = ACTIONS(1030), - [aux_sym__newline_token1] = ACTIONS(1030), - [sym__block_continuation] = ACTIONS(1281), - [sym__block_quote_start] = ACTIONS(1030), - [sym__indented_chunk_start] = ACTIONS(1030), - [sym_atx_h1_marker] = ACTIONS(1030), - [sym_atx_h2_marker] = ACTIONS(1030), - [sym_atx_h3_marker] = ACTIONS(1030), - [sym_atx_h4_marker] = ACTIONS(1030), - [sym_atx_h5_marker] = ACTIONS(1030), - [sym_atx_h6_marker] = ACTIONS(1030), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1030), - [sym__thematic_break] = ACTIONS(1030), - [sym__list_marker_minus] = ACTIONS(1030), - [sym__list_marker_plus] = ACTIONS(1030), - [sym__list_marker_star] = ACTIONS(1030), - [sym__list_marker_parenthesis] = ACTIONS(1030), - [sym__list_marker_dot] = ACTIONS(1030), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1030), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1030), - [sym__fenced_code_block_start_backtick] = ACTIONS(1030), - [sym__fenced_code_block_start_tilde] = ACTIONS(1030), - [sym__blank_line_start] = ACTIONS(1030), - [sym__code_span_start] = ACTIONS(1030), - [sym__last_token_whitespace] = ACTIONS(1281), - [sym__emphasis_open_star] = ACTIONS(1030), - [sym__emphasis_open_underscore] = ACTIONS(1030), - }, - [250] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(617), - [aux_sym__html_block_1_token1] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [anon_sym_POUND] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_BSLASH] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym__] = ACTIONS(617), - [anon_sym_BQUOTE] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(619), - [anon_sym_LT_QMARK] = ACTIONS(619), - [aux_sym__html_block_4_token1] = ACTIONS(619), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(617), - [aux_sym__html_block_6_token1] = ACTIONS(619), - [aux_sym__html_block_6_token2] = ACTIONS(617), - [sym__open_tag_html_block] = ACTIONS(617), - [sym__open_tag_html_block_newline] = ACTIONS(617), - [sym__closing_tag_html_block] = ACTIONS(617), - [sym__closing_tag_html_block_newline] = ACTIONS(617), - [sym_backslash_escape] = ACTIONS(617), - [sym_uri_autolink] = ACTIONS(617), - [sym_email_autolink] = ACTIONS(617), - [sym_entity_reference] = ACTIONS(617), - [sym_numeric_character_reference] = ACTIONS(617), - [sym__whitespace_ge_2] = ACTIONS(617), - [aux_sym__whitespace_token1] = ACTIONS(619), - [sym__word_no_digit] = ACTIONS(617), - [sym__digits] = ACTIONS(617), - [aux_sym__newline_token1] = ACTIONS(617), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(617), - [sym__indented_chunk_start] = ACTIONS(617), - [sym_atx_h1_marker] = ACTIONS(617), - [sym_atx_h2_marker] = ACTIONS(617), - [sym_atx_h3_marker] = ACTIONS(617), - [sym_atx_h4_marker] = ACTIONS(617), - [sym_atx_h5_marker] = ACTIONS(617), - [sym_atx_h6_marker] = ACTIONS(617), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(617), - [sym__thematic_break] = ACTIONS(617), - [sym__list_marker_minus] = ACTIONS(617), - [sym__list_marker_plus] = ACTIONS(617), - [sym__list_marker_star] = ACTIONS(617), - [sym__list_marker_parenthesis] = ACTIONS(617), - [sym__list_marker_dot] = ACTIONS(617), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(617), - [sym__list_marker_star_dont_interrupt] = ACTIONS(617), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(617), - [sym__fenced_code_block_start_backtick] = ACTIONS(617), - [sym__fenced_code_block_start_tilde] = ACTIONS(617), - [sym__blank_line_start] = ACTIONS(617), - [sym__code_span_start] = ACTIONS(617), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(617), - [sym__emphasis_open_underscore] = ACTIONS(617), - }, - [251] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym__paragraph_end_newline] = STATE(333), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(93), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), - [anon_sym_BANG] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(9), - [anon_sym_DASH] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(9), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(13), - [anon_sym_EQ] = ACTIONS(9), - [anon_sym_GT] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(9), - [anon_sym_CARET] = ACTIONS(9), - [anon_sym__] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_PIPE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), - [aux_sym__newline_token1] = ACTIONS(1299), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), - }, - [252] = { - [sym_shortcut_link] = STATE(170), - [sym_full_reference_link] = STATE(170), - [sym_collapsed_reference_link] = STATE(170), - [sym_inline_link] = STATE(170), - [sym_image] = STATE(170), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym__soft_line_break] = STATE(170), - [sym_hard_line_break] = STATE(170), - [sym_html_tag] = STATE(170), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(170), - [sym__word] = STATE(170), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore] = STATE(170), - [aux_sym__inline_no_underscore] = STATE(170), - [sym__text_inline_no_underscore] = STATE(170), - [sym__emphasis_star] = STATE(725), - [sym__strong_emphasis_star] = STATE(170), - [sym__emphasis_underscore] = STATE(818), - [sym__strong_emphasis_underscore] = STATE(170), - [sym__code_span] = STATE(170), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_DOT] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_COLON] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym__] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1319), - [anon_sym_LT_QMARK] = ACTIONS(1322), - [aux_sym__html_block_4_token1] = ACTIONS(1325), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1328), - [sym_backslash_escape] = ACTIONS(1331), - [sym_uri_autolink] = ACTIONS(1331), - [sym_email_autolink] = ACTIONS(1331), - [sym_entity_reference] = ACTIONS(1331), - [sym_numeric_character_reference] = ACTIONS(1331), - [sym__whitespace_ge_2] = ACTIONS(1334), - [aux_sym__whitespace_token1] = ACTIONS(1337), - [sym__word_no_digit] = ACTIONS(1331), - [sym__digits] = ACTIONS(1331), - [aux_sym__newline_token1] = ACTIONS(1340), - [sym__code_span_start] = ACTIONS(1343), - [sym__emphasis_open_star] = ACTIONS(1346), - [sym__emphasis_open_underscore] = ACTIONS(1349), - [sym__emphasis_close_star] = ACTIONS(1352), - }, - [253] = { - [sym_link_title] = STATE(2235), - [sym__whitespace] = STATE(2062), - [aux_sym__html_block_1_token1] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_COLON] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_BSLASH] = ACTIONS(1359), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym__] = ACTIONS(1354), - [anon_sym_BQUOTE] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1359), - [anon_sym_LT_QMARK] = ACTIONS(1359), - [aux_sym__html_block_4_token1] = ACTIONS(1359), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1354), - [aux_sym__html_block_6_token1] = ACTIONS(1359), - [aux_sym__html_block_6_token2] = ACTIONS(1354), - [sym__open_tag_html_block] = ACTIONS(1354), - [sym__open_tag_html_block_newline] = ACTIONS(1354), - [sym__closing_tag_html_block] = ACTIONS(1354), - [sym__closing_tag_html_block_newline] = ACTIONS(1354), - [sym_backslash_escape] = ACTIONS(1354), - [sym_uri_autolink] = ACTIONS(1354), - [sym_email_autolink] = ACTIONS(1354), - [sym_entity_reference] = ACTIONS(1354), - [sym_numeric_character_reference] = ACTIONS(1354), - [sym__whitespace_ge_2] = ACTIONS(1367), - [aux_sym__whitespace_token1] = ACTIONS(1370), - [sym__word_no_digit] = ACTIONS(1354), - [sym__digits] = ACTIONS(1354), - [aux_sym__newline_token1] = ACTIONS(1354), - [sym__block_close] = ACTIONS(1354), - [sym__block_quote_start] = ACTIONS(1354), - [sym__indented_chunk_start] = ACTIONS(1354), - [sym_atx_h1_marker] = ACTIONS(1354), - [sym_atx_h2_marker] = ACTIONS(1354), - [sym_atx_h3_marker] = ACTIONS(1354), - [sym_atx_h4_marker] = ACTIONS(1354), - [sym_atx_h5_marker] = ACTIONS(1354), - [sym_atx_h6_marker] = ACTIONS(1354), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1354), - [sym__thematic_break] = ACTIONS(1354), - [sym__list_marker_minus] = ACTIONS(1354), - [sym__list_marker_plus] = ACTIONS(1354), - [sym__list_marker_star] = ACTIONS(1354), - [sym__list_marker_parenthesis] = ACTIONS(1354), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1354), - [sym__fenced_code_block_start_tilde] = ACTIONS(1354), - [sym__blank_line_start] = ACTIONS(1354), - [sym__code_span_start] = ACTIONS(1354), - [sym__emphasis_open_star] = ACTIONS(1354), - [sym__emphasis_open_underscore] = ACTIONS(1354), - [sym__no_indented_chunk] = ACTIONS(1373), - }, - [254] = { - [sym_shortcut_link] = STATE(247), - [sym_full_reference_link] = STATE(247), - [sym_collapsed_reference_link] = STATE(247), - [sym_inline_link] = STATE(247), - [sym_image] = STATE(247), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym__soft_line_break] = STATE(247), - [sym_hard_line_break] = STATE(247), - [sym_html_tag] = STATE(247), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(247), - [sym__word] = STATE(247), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore] = STATE(247), - [aux_sym__inline_no_underscore] = STATE(247), - [sym__text_inline_no_underscore] = STATE(247), - [sym__emphasis_star] = STATE(725), - [sym__strong_emphasis_star] = STATE(247), - [sym__emphasis_underscore] = STATE(725), - [sym__strong_emphasis_underscore] = STATE(247), - [sym__code_span] = STATE(247), - [anon_sym_BANG] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(641), - [anon_sym_LT_QMARK] = ACTIONS(643), - [aux_sym__html_block_4_token1] = ACTIONS(645), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(647), - [sym_backslash_escape] = ACTIONS(649), - [sym_uri_autolink] = ACTIONS(649), - [sym_email_autolink] = ACTIONS(649), - [sym_entity_reference] = ACTIONS(649), - [sym_numeric_character_reference] = ACTIONS(649), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(649), - [sym__digits] = ACTIONS(649), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), - [sym__emphasis_close_underscore] = ACTIONS(1375), - }, - [255] = { - [sym_shortcut_link] = STATE(243), - [sym_full_reference_link] = STATE(243), - [sym_collapsed_reference_link] = STATE(243), - [sym_inline_link] = STATE(243), - [sym_image] = STATE(243), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym__soft_line_break] = STATE(243), - [sym_hard_line_break] = STATE(243), - [sym_html_tag] = STATE(243), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(243), - [sym__word] = STATE(243), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star] = STATE(243), - [aux_sym__inline_no_star] = STATE(243), - [sym__text_inline_no_star] = STATE(243), - [sym__emphasis_star] = STATE(780), - [sym__strong_emphasis_star] = STATE(243), - [sym__emphasis_underscore] = STATE(780), - [sym__strong_emphasis_underscore] = STATE(243), - [sym__code_span] = STATE(243), - [anon_sym_BANG] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(834), - [anon_sym_BSLASH] = ACTIONS(836), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), - [anon_sym_LT_QMARK] = ACTIONS(840), - [aux_sym__html_block_4_token1] = ACTIONS(842), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), - [sym_backslash_escape] = ACTIONS(846), - [sym_uri_autolink] = ACTIONS(846), - [sym_email_autolink] = ACTIONS(846), - [sym_entity_reference] = ACTIONS(846), - [sym_numeric_character_reference] = ACTIONS(846), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(846), - [sym__digits] = ACTIONS(846), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(852), - [sym__emphasis_open_star] = ACTIONS(854), - [sym__emphasis_open_underscore] = ACTIONS(856), - [sym__emphasis_close_star] = ACTIONS(1377), - }, - [256] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1379), - [aux_sym__html_block_1_token1] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_EQ] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_QMARK] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_BSLASH] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym__] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1381), - [anon_sym_LT_QMARK] = ACTIONS(1381), - [aux_sym__html_block_4_token1] = ACTIONS(1381), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1379), - [aux_sym__html_block_6_token1] = ACTIONS(1381), - [aux_sym__html_block_6_token2] = ACTIONS(1379), - [sym__open_tag_html_block] = ACTIONS(1379), - [sym__open_tag_html_block_newline] = ACTIONS(1379), - [sym__closing_tag_html_block] = ACTIONS(1379), - [sym__closing_tag_html_block_newline] = ACTIONS(1379), - [sym_backslash_escape] = ACTIONS(1379), - [sym_uri_autolink] = ACTIONS(1379), - [sym_email_autolink] = ACTIONS(1379), - [sym_entity_reference] = ACTIONS(1379), - [sym_numeric_character_reference] = ACTIONS(1379), - [sym__whitespace_ge_2] = ACTIONS(1379), - [aux_sym__whitespace_token1] = ACTIONS(1381), - [sym__word_no_digit] = ACTIONS(1379), - [sym__digits] = ACTIONS(1379), - [aux_sym__newline_token1] = ACTIONS(1379), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1379), - [sym__indented_chunk_start] = ACTIONS(1379), - [sym_atx_h1_marker] = ACTIONS(1379), - [sym_atx_h2_marker] = ACTIONS(1379), - [sym_atx_h3_marker] = ACTIONS(1379), - [sym_atx_h4_marker] = ACTIONS(1379), - [sym_atx_h5_marker] = ACTIONS(1379), - [sym_atx_h6_marker] = ACTIONS(1379), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1379), - [sym__thematic_break] = ACTIONS(1379), - [sym__list_marker_minus] = ACTIONS(1379), - [sym__list_marker_plus] = ACTIONS(1379), - [sym__list_marker_star] = ACTIONS(1379), - [sym__list_marker_parenthesis] = ACTIONS(1379), - [sym__list_marker_dot] = ACTIONS(1379), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1379), - [sym__fenced_code_block_start_backtick] = ACTIONS(1379), - [sym__fenced_code_block_start_tilde] = ACTIONS(1379), - [sym__blank_line_start] = ACTIONS(1379), - [sym__code_span_start] = ACTIONS(1379), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1379), - [sym__emphasis_open_underscore] = ACTIONS(1379), - }, - [257] = { - [aux_sym__ignore_matching_tokens] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(1379), - [aux_sym__html_block_1_token1] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_EQ] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_QMARK] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_BSLASH] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym__] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1381), - [anon_sym_LT_QMARK] = ACTIONS(1381), - [aux_sym__html_block_4_token1] = ACTIONS(1381), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1379), - [aux_sym__html_block_6_token1] = ACTIONS(1381), - [aux_sym__html_block_6_token2] = ACTIONS(1379), - [sym__open_tag_html_block] = ACTIONS(1379), - [sym__open_tag_html_block_newline] = ACTIONS(1379), - [sym__closing_tag_html_block] = ACTIONS(1379), - [sym__closing_tag_html_block_newline] = ACTIONS(1379), - [sym_backslash_escape] = ACTIONS(1379), - [sym_uri_autolink] = ACTIONS(1379), - [sym_email_autolink] = ACTIONS(1379), - [sym_entity_reference] = ACTIONS(1379), - [sym_numeric_character_reference] = ACTIONS(1379), - [sym__whitespace_ge_2] = ACTIONS(1379), - [aux_sym__whitespace_token1] = ACTIONS(1381), - [sym__word_no_digit] = ACTIONS(1379), - [sym__digits] = ACTIONS(1379), - [aux_sym__newline_token1] = ACTIONS(1379), - [sym__block_continuation] = ACTIONS(1383), - [sym__block_quote_start] = ACTIONS(1379), - [sym__indented_chunk_start] = ACTIONS(1379), - [sym_atx_h1_marker] = ACTIONS(1379), - [sym_atx_h2_marker] = ACTIONS(1379), - [sym_atx_h3_marker] = ACTIONS(1379), - [sym_atx_h4_marker] = ACTIONS(1379), - [sym_atx_h5_marker] = ACTIONS(1379), - [sym_atx_h6_marker] = ACTIONS(1379), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1379), - [sym__thematic_break] = ACTIONS(1379), - [sym__list_marker_minus] = ACTIONS(1379), - [sym__list_marker_plus] = ACTIONS(1379), - [sym__list_marker_star] = ACTIONS(1379), - [sym__list_marker_parenthesis] = ACTIONS(1379), - [sym__list_marker_dot] = ACTIONS(1379), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1379), - [sym__fenced_code_block_start_backtick] = ACTIONS(1379), - [sym__fenced_code_block_start_tilde] = ACTIONS(1379), - [sym__blank_line_start] = ACTIONS(1379), - [sym__code_span_start] = ACTIONS(1379), - [sym__last_token_whitespace] = ACTIONS(1383), - [sym__emphasis_open_star] = ACTIONS(1379), - [sym__emphasis_open_underscore] = ACTIONS(1379), - }, - [258] = { - [aux_sym__ignore_matching_tokens] = STATE(234), - [aux_sym__html_block_1_token1] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_COLON] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_BSLASH] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym__] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1387), - [anon_sym_LT_QMARK] = ACTIONS(1387), - [aux_sym__html_block_4_token1] = ACTIONS(1387), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1385), - [aux_sym__html_block_6_token1] = ACTIONS(1387), - [aux_sym__html_block_6_token2] = ACTIONS(1385), - [sym__open_tag_html_block] = ACTIONS(1385), - [sym__open_tag_html_block_newline] = ACTIONS(1385), - [sym__closing_tag_html_block] = ACTIONS(1385), - [sym__closing_tag_html_block_newline] = ACTIONS(1385), - [sym_backslash_escape] = ACTIONS(1385), - [sym_uri_autolink] = ACTIONS(1385), - [sym_email_autolink] = ACTIONS(1385), - [sym_entity_reference] = ACTIONS(1385), - [sym_numeric_character_reference] = ACTIONS(1385), - [sym__whitespace_ge_2] = ACTIONS(1385), - [aux_sym__whitespace_token1] = ACTIONS(1387), - [sym__word_no_digit] = ACTIONS(1385), - [sym__digits] = ACTIONS(1385), - [aux_sym__newline_token1] = ACTIONS(1385), - [sym__block_close] = ACTIONS(1385), - [sym__block_continuation] = ACTIONS(1389), - [sym__block_quote_start] = ACTIONS(1385), - [sym__indented_chunk_start] = ACTIONS(1385), - [sym_atx_h1_marker] = ACTIONS(1385), - [sym_atx_h2_marker] = ACTIONS(1385), - [sym_atx_h3_marker] = ACTIONS(1385), - [sym_atx_h4_marker] = ACTIONS(1385), - [sym_atx_h5_marker] = ACTIONS(1385), - [sym_atx_h6_marker] = ACTIONS(1385), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1385), - [sym__thematic_break] = ACTIONS(1385), - [sym__list_marker_minus] = ACTIONS(1385), - [sym__list_marker_plus] = ACTIONS(1385), - [sym__list_marker_star] = ACTIONS(1385), - [sym__list_marker_parenthesis] = ACTIONS(1385), - [sym__list_marker_dot] = ACTIONS(1385), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1385), - [sym__fenced_code_block_start_backtick] = ACTIONS(1385), - [sym__fenced_code_block_start_tilde] = ACTIONS(1385), - [sym__blank_line_start] = ACTIONS(1385), - [sym__code_span_start] = ACTIONS(1385), - [sym__last_token_whitespace] = ACTIONS(1389), - [sym__emphasis_open_star] = ACTIONS(1385), - [sym__emphasis_open_underscore] = ACTIONS(1385), - }, - [259] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1385), - [aux_sym__html_block_1_token1] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_COLON] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_BSLASH] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym__] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1387), - [anon_sym_LT_QMARK] = ACTIONS(1387), - [aux_sym__html_block_4_token1] = ACTIONS(1387), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1385), - [aux_sym__html_block_6_token1] = ACTIONS(1387), - [aux_sym__html_block_6_token2] = ACTIONS(1385), - [sym__open_tag_html_block] = ACTIONS(1385), - [sym__open_tag_html_block_newline] = ACTIONS(1385), - [sym__closing_tag_html_block] = ACTIONS(1385), - [sym__closing_tag_html_block_newline] = ACTIONS(1385), - [sym_backslash_escape] = ACTIONS(1385), - [sym_uri_autolink] = ACTIONS(1385), - [sym_email_autolink] = ACTIONS(1385), - [sym_entity_reference] = ACTIONS(1385), - [sym_numeric_character_reference] = ACTIONS(1385), - [sym__whitespace_ge_2] = ACTIONS(1385), - [aux_sym__whitespace_token1] = ACTIONS(1387), - [sym__word_no_digit] = ACTIONS(1385), - [sym__digits] = ACTIONS(1385), - [aux_sym__newline_token1] = ACTIONS(1385), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1385), - [sym__indented_chunk_start] = ACTIONS(1385), - [sym_atx_h1_marker] = ACTIONS(1385), - [sym_atx_h2_marker] = ACTIONS(1385), - [sym_atx_h3_marker] = ACTIONS(1385), - [sym_atx_h4_marker] = ACTIONS(1385), - [sym_atx_h5_marker] = ACTIONS(1385), - [sym_atx_h6_marker] = ACTIONS(1385), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1385), - [sym__thematic_break] = ACTIONS(1385), - [sym__list_marker_minus] = ACTIONS(1385), - [sym__list_marker_plus] = ACTIONS(1385), - [sym__list_marker_star] = ACTIONS(1385), - [sym__list_marker_parenthesis] = ACTIONS(1385), - [sym__list_marker_dot] = ACTIONS(1385), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1385), - [sym__fenced_code_block_start_backtick] = ACTIONS(1385), - [sym__fenced_code_block_start_tilde] = ACTIONS(1385), - [sym__blank_line_start] = ACTIONS(1385), - [sym__code_span_start] = ACTIONS(1385), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1385), - [sym__emphasis_open_underscore] = ACTIONS(1385), - }, - [260] = { - [aux_sym__ignore_matching_tokens] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(1385), - [aux_sym__html_block_1_token1] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_COLON] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_BSLASH] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym__] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1387), - [anon_sym_LT_QMARK] = ACTIONS(1387), - [aux_sym__html_block_4_token1] = ACTIONS(1387), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1385), - [aux_sym__html_block_6_token1] = ACTIONS(1387), - [aux_sym__html_block_6_token2] = ACTIONS(1385), - [sym__open_tag_html_block] = ACTIONS(1385), - [sym__open_tag_html_block_newline] = ACTIONS(1385), - [sym__closing_tag_html_block] = ACTIONS(1385), - [sym__closing_tag_html_block_newline] = ACTIONS(1385), - [sym_backslash_escape] = ACTIONS(1385), - [sym_uri_autolink] = ACTIONS(1385), - [sym_email_autolink] = ACTIONS(1385), - [sym_entity_reference] = ACTIONS(1385), - [sym_numeric_character_reference] = ACTIONS(1385), - [sym__whitespace_ge_2] = ACTIONS(1385), - [aux_sym__whitespace_token1] = ACTIONS(1387), - [sym__word_no_digit] = ACTIONS(1385), - [sym__digits] = ACTIONS(1385), - [aux_sym__newline_token1] = ACTIONS(1385), - [sym__block_continuation] = ACTIONS(1391), - [sym__block_quote_start] = ACTIONS(1385), - [sym__indented_chunk_start] = ACTIONS(1385), - [sym_atx_h1_marker] = ACTIONS(1385), - [sym_atx_h2_marker] = ACTIONS(1385), - [sym_atx_h3_marker] = ACTIONS(1385), - [sym_atx_h4_marker] = ACTIONS(1385), - [sym_atx_h5_marker] = ACTIONS(1385), - [sym_atx_h6_marker] = ACTIONS(1385), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1385), - [sym__thematic_break] = ACTIONS(1385), - [sym__list_marker_minus] = ACTIONS(1385), - [sym__list_marker_plus] = ACTIONS(1385), - [sym__list_marker_star] = ACTIONS(1385), - [sym__list_marker_parenthesis] = ACTIONS(1385), - [sym__list_marker_dot] = ACTIONS(1385), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1385), - [sym__fenced_code_block_start_backtick] = ACTIONS(1385), - [sym__fenced_code_block_start_tilde] = ACTIONS(1385), - [sym__blank_line_start] = ACTIONS(1385), - [sym__code_span_start] = ACTIONS(1385), - [sym__last_token_whitespace] = ACTIONS(1391), - [sym__emphasis_open_star] = ACTIONS(1385), - [sym__emphasis_open_underscore] = ACTIONS(1385), - }, - [261] = { - [aux_sym__ignore_matching_tokens] = STATE(118), - [ts_builtin_sym_end] = ACTIONS(788), - [aux_sym__html_block_1_token1] = ACTIONS(788), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_POUND] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DOT] = ACTIONS(788), - [anon_sym_SLASH] = ACTIONS(788), - [anon_sym_COLON] = ACTIONS(788), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(788), - [anon_sym_QMARK] = ACTIONS(788), - [anon_sym_AT] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(788), - [anon_sym_BSLASH] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(788), - [anon_sym_CARET] = ACTIONS(788), - [anon_sym__] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(790), - [anon_sym_LT_QMARK] = ACTIONS(790), - [aux_sym__html_block_4_token1] = ACTIONS(790), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(788), - [aux_sym__html_block_6_token1] = ACTIONS(790), - [aux_sym__html_block_6_token2] = ACTIONS(788), - [sym__open_tag_html_block] = ACTIONS(788), - [sym__open_tag_html_block_newline] = ACTIONS(788), - [sym__closing_tag_html_block] = ACTIONS(788), - [sym__closing_tag_html_block_newline] = ACTIONS(788), - [sym_backslash_escape] = ACTIONS(788), - [sym_uri_autolink] = ACTIONS(788), - [sym_email_autolink] = ACTIONS(788), - [sym_entity_reference] = ACTIONS(788), - [sym_numeric_character_reference] = ACTIONS(788), - [sym__whitespace_ge_2] = ACTIONS(788), - [aux_sym__whitespace_token1] = ACTIONS(790), - [sym__word_no_digit] = ACTIONS(788), - [sym__digits] = ACTIONS(788), - [aux_sym__newline_token1] = ACTIONS(788), - [sym__block_continuation] = ACTIONS(1393), - [sym__block_quote_start] = ACTIONS(788), - [sym__indented_chunk_start] = ACTIONS(788), - [sym_atx_h1_marker] = ACTIONS(788), - [sym_atx_h2_marker] = ACTIONS(788), - [sym_atx_h3_marker] = ACTIONS(788), - [sym_atx_h4_marker] = ACTIONS(788), - [sym_atx_h5_marker] = ACTIONS(788), - [sym_atx_h6_marker] = ACTIONS(788), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(788), - [sym__thematic_break] = ACTIONS(788), - [sym__list_marker_minus] = ACTIONS(788), - [sym__list_marker_plus] = ACTIONS(788), - [sym__list_marker_star] = ACTIONS(788), - [sym__list_marker_parenthesis] = ACTIONS(788), - [sym__list_marker_dot] = ACTIONS(788), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_star_dont_interrupt] = ACTIONS(788), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(788), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(788), - [sym__fenced_code_block_start_backtick] = ACTIONS(788), - [sym__fenced_code_block_start_tilde] = ACTIONS(788), - [sym__blank_line_start] = ACTIONS(788), - [sym__code_span_start] = ACTIONS(788), - [sym__last_token_whitespace] = ACTIONS(1393), - [sym__emphasis_open_star] = ACTIONS(788), - [sym__emphasis_open_underscore] = ACTIONS(788), - }, - [262] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(788), - [aux_sym__html_block_1_token1] = ACTIONS(788), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_POUND] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(790), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(788), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_DOT] = ACTIONS(788), - [anon_sym_SLASH] = ACTIONS(788), - [anon_sym_COLON] = ACTIONS(788), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(788), - [anon_sym_QMARK] = ACTIONS(788), - [anon_sym_AT] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(788), - [anon_sym_BSLASH] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(788), - [anon_sym_CARET] = ACTIONS(788), - [anon_sym__] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LBRACE] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_TILDE] = ACTIONS(788), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(790), - [anon_sym_LT_QMARK] = ACTIONS(790), - [aux_sym__html_block_4_token1] = ACTIONS(790), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(788), - [aux_sym__html_block_6_token1] = ACTIONS(790), - [aux_sym__html_block_6_token2] = ACTIONS(788), - [sym__open_tag_html_block] = ACTIONS(788), - [sym__open_tag_html_block_newline] = ACTIONS(788), - [sym__closing_tag_html_block] = ACTIONS(788), - [sym__closing_tag_html_block_newline] = ACTIONS(788), - [sym_backslash_escape] = ACTIONS(788), - [sym_uri_autolink] = ACTIONS(788), - [sym_email_autolink] = ACTIONS(788), - [sym_entity_reference] = ACTIONS(788), - [sym_numeric_character_reference] = ACTIONS(788), - [sym__whitespace_ge_2] = ACTIONS(788), - [aux_sym__whitespace_token1] = ACTIONS(790), - [sym__word_no_digit] = ACTIONS(788), - [sym__digits] = ACTIONS(788), - [aux_sym__newline_token1] = ACTIONS(788), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(788), - [sym__indented_chunk_start] = ACTIONS(788), - [sym_atx_h1_marker] = ACTIONS(788), - [sym_atx_h2_marker] = ACTIONS(788), - [sym_atx_h3_marker] = ACTIONS(788), - [sym_atx_h4_marker] = ACTIONS(788), - [sym_atx_h5_marker] = ACTIONS(788), - [sym_atx_h6_marker] = ACTIONS(788), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(788), - [sym__thematic_break] = ACTIONS(788), - [sym__list_marker_minus] = ACTIONS(788), - [sym__list_marker_plus] = ACTIONS(788), - [sym__list_marker_star] = ACTIONS(788), - [sym__list_marker_parenthesis] = ACTIONS(788), - [sym__list_marker_dot] = ACTIONS(788), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(788), - [sym__list_marker_star_dont_interrupt] = ACTIONS(788), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(788), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(788), - [sym__fenced_code_block_start_backtick] = ACTIONS(788), - [sym__fenced_code_block_start_tilde] = ACTIONS(788), - [sym__blank_line_start] = ACTIONS(788), - [sym__code_span_start] = ACTIONS(788), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(788), - [sym__emphasis_open_underscore] = ACTIONS(788), - }, - [263] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_COMMA] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_DOT] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_COLON] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_BSLASH] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym__] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1387), - [anon_sym_LT_QMARK] = ACTIONS(1387), - [aux_sym__html_block_4_token1] = ACTIONS(1387), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1385), - [aux_sym__html_block_6_token1] = ACTIONS(1387), - [aux_sym__html_block_6_token2] = ACTIONS(1385), - [sym__open_tag_html_block] = ACTIONS(1385), - [sym__open_tag_html_block_newline] = ACTIONS(1385), - [sym__closing_tag_html_block] = ACTIONS(1385), - [sym__closing_tag_html_block_newline] = ACTIONS(1385), - [sym_backslash_escape] = ACTIONS(1385), - [sym_uri_autolink] = ACTIONS(1385), - [sym_email_autolink] = ACTIONS(1385), - [sym_entity_reference] = ACTIONS(1385), - [sym_numeric_character_reference] = ACTIONS(1385), - [sym__whitespace_ge_2] = ACTIONS(1385), - [aux_sym__whitespace_token1] = ACTIONS(1387), - [sym__word_no_digit] = ACTIONS(1385), - [sym__digits] = ACTIONS(1385), - [aux_sym__newline_token1] = ACTIONS(1385), - [sym__block_close] = ACTIONS(1385), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1385), - [sym__indented_chunk_start] = ACTIONS(1385), - [sym_atx_h1_marker] = ACTIONS(1385), - [sym_atx_h2_marker] = ACTIONS(1385), - [sym_atx_h3_marker] = ACTIONS(1385), - [sym_atx_h4_marker] = ACTIONS(1385), - [sym_atx_h5_marker] = ACTIONS(1385), - [sym_atx_h6_marker] = ACTIONS(1385), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1385), - [sym__thematic_break] = ACTIONS(1385), - [sym__list_marker_minus] = ACTIONS(1385), - [sym__list_marker_plus] = ACTIONS(1385), - [sym__list_marker_star] = ACTIONS(1385), - [sym__list_marker_parenthesis] = ACTIONS(1385), - [sym__list_marker_dot] = ACTIONS(1385), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1385), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1385), - [sym__fenced_code_block_start_backtick] = ACTIONS(1385), - [sym__fenced_code_block_start_tilde] = ACTIONS(1385), - [sym__blank_line_start] = ACTIONS(1385), - [sym__code_span_start] = ACTIONS(1385), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1385), - [sym__emphasis_open_underscore] = ACTIONS(1385), - }, - [264] = { - [aux_sym__ignore_matching_tokens] = STATE(237), - [aux_sym__html_block_1_token1] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_EQ] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_QMARK] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_BSLASH] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym__] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1381), - [anon_sym_LT_QMARK] = ACTIONS(1381), - [aux_sym__html_block_4_token1] = ACTIONS(1381), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1379), - [aux_sym__html_block_6_token1] = ACTIONS(1381), - [aux_sym__html_block_6_token2] = ACTIONS(1379), - [sym__open_tag_html_block] = ACTIONS(1379), - [sym__open_tag_html_block_newline] = ACTIONS(1379), - [sym__closing_tag_html_block] = ACTIONS(1379), - [sym__closing_tag_html_block_newline] = ACTIONS(1379), - [sym_backslash_escape] = ACTIONS(1379), - [sym_uri_autolink] = ACTIONS(1379), - [sym_email_autolink] = ACTIONS(1379), - [sym_entity_reference] = ACTIONS(1379), - [sym_numeric_character_reference] = ACTIONS(1379), - [sym__whitespace_ge_2] = ACTIONS(1379), - [aux_sym__whitespace_token1] = ACTIONS(1381), - [sym__word_no_digit] = ACTIONS(1379), - [sym__digits] = ACTIONS(1379), - [aux_sym__newline_token1] = ACTIONS(1379), - [sym__block_close] = ACTIONS(1379), - [sym__block_continuation] = ACTIONS(1395), - [sym__block_quote_start] = ACTIONS(1379), - [sym__indented_chunk_start] = ACTIONS(1379), - [sym_atx_h1_marker] = ACTIONS(1379), - [sym_atx_h2_marker] = ACTIONS(1379), - [sym_atx_h3_marker] = ACTIONS(1379), - [sym_atx_h4_marker] = ACTIONS(1379), - [sym_atx_h5_marker] = ACTIONS(1379), - [sym_atx_h6_marker] = ACTIONS(1379), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1379), - [sym__thematic_break] = ACTIONS(1379), - [sym__list_marker_minus] = ACTIONS(1379), - [sym__list_marker_plus] = ACTIONS(1379), - [sym__list_marker_star] = ACTIONS(1379), - [sym__list_marker_parenthesis] = ACTIONS(1379), - [sym__list_marker_dot] = ACTIONS(1379), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1379), - [sym__fenced_code_block_start_backtick] = ACTIONS(1379), - [sym__fenced_code_block_start_tilde] = ACTIONS(1379), - [sym__blank_line_start] = ACTIONS(1379), - [sym__code_span_start] = ACTIONS(1379), - [sym__last_token_whitespace] = ACTIONS(1395), - [sym__emphasis_open_star] = ACTIONS(1379), - [sym__emphasis_open_underscore] = ACTIONS(1379), - }, - [265] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym__paragraph_end_newline] = STATE(339), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(92), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), - [anon_sym_BANG] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(9), - [anon_sym_DASH] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(9), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(13), - [anon_sym_EQ] = ACTIONS(9), - [anon_sym_GT] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(9), - [anon_sym_CARET] = ACTIONS(9), - [anon_sym__] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_PIPE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), - [aux_sym__newline_token1] = ACTIONS(1397), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), - }, - [266] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_POUND] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1379), - [anon_sym_PERCENT] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_DOT] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(1379), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_EQ] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_QMARK] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_BSLASH] = ACTIONS(1381), - [anon_sym_RBRACK] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym__] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1381), - [anon_sym_LT_QMARK] = ACTIONS(1381), - [aux_sym__html_block_4_token1] = ACTIONS(1381), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1379), - [aux_sym__html_block_6_token1] = ACTIONS(1381), - [aux_sym__html_block_6_token2] = ACTIONS(1379), - [sym__open_tag_html_block] = ACTIONS(1379), - [sym__open_tag_html_block_newline] = ACTIONS(1379), - [sym__closing_tag_html_block] = ACTIONS(1379), - [sym__closing_tag_html_block_newline] = ACTIONS(1379), - [sym_backslash_escape] = ACTIONS(1379), - [sym_uri_autolink] = ACTIONS(1379), - [sym_email_autolink] = ACTIONS(1379), - [sym_entity_reference] = ACTIONS(1379), - [sym_numeric_character_reference] = ACTIONS(1379), - [sym__whitespace_ge_2] = ACTIONS(1379), - [aux_sym__whitespace_token1] = ACTIONS(1381), - [sym__word_no_digit] = ACTIONS(1379), - [sym__digits] = ACTIONS(1379), - [aux_sym__newline_token1] = ACTIONS(1379), - [sym__block_close] = ACTIONS(1379), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1379), - [sym__indented_chunk_start] = ACTIONS(1379), - [sym_atx_h1_marker] = ACTIONS(1379), - [sym_atx_h2_marker] = ACTIONS(1379), - [sym_atx_h3_marker] = ACTIONS(1379), - [sym_atx_h4_marker] = ACTIONS(1379), - [sym_atx_h5_marker] = ACTIONS(1379), - [sym_atx_h6_marker] = ACTIONS(1379), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1379), - [sym__thematic_break] = ACTIONS(1379), - [sym__list_marker_minus] = ACTIONS(1379), - [sym__list_marker_plus] = ACTIONS(1379), - [sym__list_marker_star] = ACTIONS(1379), - [sym__list_marker_parenthesis] = ACTIONS(1379), - [sym__list_marker_dot] = ACTIONS(1379), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1379), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1379), - [sym__fenced_code_block_start_backtick] = ACTIONS(1379), - [sym__fenced_code_block_start_tilde] = ACTIONS(1379), - [sym__blank_line_start] = ACTIONS(1379), - [sym__code_span_start] = ACTIONS(1379), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1379), - [sym__emphasis_open_underscore] = ACTIONS(1379), - }, - [267] = { - [sym_list_marker_plus] = STATE(38), - [sym__list_item_plus] = STATE(203), - [aux_sym__list_plus_repeat1] = STATE(203), - [ts_builtin_sym_end] = ACTIONS(1399), - [aux_sym__html_block_1_token1] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_COLON] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_BSLASH] = ACTIONS(1401), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1401), - [anon_sym_LT_QMARK] = ACTIONS(1401), - [aux_sym__html_block_4_token1] = ACTIONS(1401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1399), - [aux_sym__html_block_6_token1] = ACTIONS(1401), - [aux_sym__html_block_6_token2] = ACTIONS(1399), - [sym__open_tag_html_block] = ACTIONS(1399), - [sym__open_tag_html_block_newline] = ACTIONS(1399), - [sym__closing_tag_html_block] = ACTIONS(1399), - [sym__closing_tag_html_block_newline] = ACTIONS(1399), - [sym_backslash_escape] = ACTIONS(1399), - [sym_uri_autolink] = ACTIONS(1399), - [sym_email_autolink] = ACTIONS(1399), - [sym_entity_reference] = ACTIONS(1399), - [sym_numeric_character_reference] = ACTIONS(1399), - [sym__whitespace_ge_2] = ACTIONS(1399), - [aux_sym__whitespace_token1] = ACTIONS(1401), - [sym__word_no_digit] = ACTIONS(1399), - [sym__digits] = ACTIONS(1399), - [aux_sym__newline_token1] = ACTIONS(1399), - [sym__block_quote_start] = ACTIONS(1399), - [sym__indented_chunk_start] = ACTIONS(1399), - [sym_atx_h1_marker] = ACTIONS(1399), - [sym_atx_h2_marker] = ACTIONS(1399), - [sym_atx_h3_marker] = ACTIONS(1399), - [sym_atx_h4_marker] = ACTIONS(1399), - [sym_atx_h5_marker] = ACTIONS(1399), - [sym_atx_h6_marker] = ACTIONS(1399), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1399), - [sym__thematic_break] = ACTIONS(1399), - [sym__list_marker_minus] = ACTIONS(1399), - [sym__list_marker_plus] = ACTIONS(55), - [sym__list_marker_star] = ACTIONS(1399), - [sym__list_marker_parenthesis] = ACTIONS(1399), - [sym__list_marker_dot] = ACTIONS(1399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1399), - [sym__fenced_code_block_start_backtick] = ACTIONS(1399), - [sym__fenced_code_block_start_tilde] = ACTIONS(1399), - [sym__blank_line_start] = ACTIONS(1399), - [sym__code_span_start] = ACTIONS(1399), - [sym__emphasis_open_star] = ACTIONS(1399), - [sym__emphasis_open_underscore] = ACTIONS(1399), - }, - [268] = { - [sym_list_marker_minus] = STATE(39), - [sym__list_item_minus] = STATE(204), - [aux_sym__list_minus_repeat1] = STATE(204), - [ts_builtin_sym_end] = ACTIONS(1403), - [aux_sym__html_block_1_token1] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PERCENT] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_COLON] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_AT] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_BSLASH] = ACTIONS(1405), - [anon_sym_RBRACK] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym__] = ACTIONS(1403), - [anon_sym_BQUOTE] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1405), - [anon_sym_LT_QMARK] = ACTIONS(1405), - [aux_sym__html_block_4_token1] = ACTIONS(1405), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1403), - [aux_sym__html_block_6_token1] = ACTIONS(1405), - [aux_sym__html_block_6_token2] = ACTIONS(1403), - [sym__open_tag_html_block] = ACTIONS(1403), - [sym__open_tag_html_block_newline] = ACTIONS(1403), - [sym__closing_tag_html_block] = ACTIONS(1403), - [sym__closing_tag_html_block_newline] = ACTIONS(1403), - [sym_backslash_escape] = ACTIONS(1403), - [sym_uri_autolink] = ACTIONS(1403), - [sym_email_autolink] = ACTIONS(1403), - [sym_entity_reference] = ACTIONS(1403), - [sym_numeric_character_reference] = ACTIONS(1403), - [sym__whitespace_ge_2] = ACTIONS(1403), - [aux_sym__whitespace_token1] = ACTIONS(1405), - [sym__word_no_digit] = ACTIONS(1403), - [sym__digits] = ACTIONS(1403), - [aux_sym__newline_token1] = ACTIONS(1403), - [sym__block_quote_start] = ACTIONS(1403), - [sym__indented_chunk_start] = ACTIONS(1403), - [sym_atx_h1_marker] = ACTIONS(1403), - [sym_atx_h2_marker] = ACTIONS(1403), - [sym_atx_h3_marker] = ACTIONS(1403), - [sym_atx_h4_marker] = ACTIONS(1403), - [sym_atx_h5_marker] = ACTIONS(1403), - [sym_atx_h6_marker] = ACTIONS(1403), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1403), - [sym__thematic_break] = ACTIONS(1403), - [sym__list_marker_minus] = ACTIONS(53), - [sym__list_marker_plus] = ACTIONS(1403), - [sym__list_marker_star] = ACTIONS(1403), - [sym__list_marker_parenthesis] = ACTIONS(1403), - [sym__list_marker_dot] = ACTIONS(1403), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1403), - [sym__fenced_code_block_start_backtick] = ACTIONS(1403), - [sym__fenced_code_block_start_tilde] = ACTIONS(1403), - [sym__blank_line_start] = ACTIONS(1403), - [sym__code_span_start] = ACTIONS(1403), - [sym__emphasis_open_star] = ACTIONS(1403), - [sym__emphasis_open_underscore] = ACTIONS(1403), - }, - [269] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(810), - [aux_sym__html_block_1_token1] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(810), - [anon_sym_DQUOTE] = ACTIONS(810), - [anon_sym_POUND] = ACTIONS(810), - [anon_sym_DOLLAR] = ACTIONS(810), - [anon_sym_PERCENT] = ACTIONS(810), - [anon_sym_AMP] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(810), - [anon_sym_LPAREN] = ACTIONS(810), - [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_STAR] = ACTIONS(810), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_COMMA] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_DOT] = ACTIONS(810), - [anon_sym_SLASH] = ACTIONS(810), - [anon_sym_COLON] = ACTIONS(810), - [anon_sym_SEMI] = ACTIONS(810), - [anon_sym_LT] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(810), - [anon_sym_GT] = ACTIONS(810), - [anon_sym_QMARK] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(810), - [anon_sym_BSLASH] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(810), - [anon_sym_CARET] = ACTIONS(810), - [anon_sym__] = ACTIONS(810), - [anon_sym_BQUOTE] = ACTIONS(810), - [anon_sym_LBRACE] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(810), - [anon_sym_RBRACE] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(810), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(812), - [anon_sym_LT_QMARK] = ACTIONS(812), - [aux_sym__html_block_4_token1] = ACTIONS(812), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(810), - [aux_sym__html_block_6_token1] = ACTIONS(812), - [aux_sym__html_block_6_token2] = ACTIONS(810), - [sym__open_tag_html_block] = ACTIONS(810), - [sym__open_tag_html_block_newline] = ACTIONS(810), - [sym__closing_tag_html_block] = ACTIONS(810), - [sym__closing_tag_html_block_newline] = ACTIONS(810), - [sym_backslash_escape] = ACTIONS(810), - [sym_uri_autolink] = ACTIONS(810), - [sym_email_autolink] = ACTIONS(810), - [sym_entity_reference] = ACTIONS(810), - [sym_numeric_character_reference] = ACTIONS(810), - [sym__whitespace_ge_2] = ACTIONS(810), - [aux_sym__whitespace_token1] = ACTIONS(812), - [sym__word_no_digit] = ACTIONS(810), - [sym__digits] = ACTIONS(810), - [aux_sym__newline_token1] = ACTIONS(810), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(810), - [sym__indented_chunk_start] = ACTIONS(810), - [sym_atx_h1_marker] = ACTIONS(810), - [sym_atx_h2_marker] = ACTIONS(810), - [sym_atx_h3_marker] = ACTIONS(810), - [sym_atx_h4_marker] = ACTIONS(810), - [sym_atx_h5_marker] = ACTIONS(810), - [sym_atx_h6_marker] = ACTIONS(810), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(810), - [sym__thematic_break] = ACTIONS(810), - [sym__list_marker_minus] = ACTIONS(810), - [sym__list_marker_plus] = ACTIONS(810), - [sym__list_marker_star] = ACTIONS(810), - [sym__list_marker_parenthesis] = ACTIONS(810), - [sym__list_marker_dot] = ACTIONS(810), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(810), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(810), - [sym__list_marker_star_dont_interrupt] = ACTIONS(810), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(810), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(810), - [sym__fenced_code_block_start_backtick] = ACTIONS(810), - [sym__fenced_code_block_start_tilde] = ACTIONS(810), - [sym__blank_line_start] = ACTIONS(810), - [sym__code_span_start] = ACTIONS(810), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(810), - [sym__emphasis_open_underscore] = ACTIONS(810), - }, - [270] = { - [aux_sym__ignore_matching_tokens] = STATE(120), - [ts_builtin_sym_end] = ACTIONS(820), - [aux_sym__html_block_1_token1] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_BSLASH] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym__] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(822), - [anon_sym_LT_QMARK] = ACTIONS(822), - [aux_sym__html_block_4_token1] = ACTIONS(822), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(820), - [aux_sym__html_block_6_token1] = ACTIONS(822), - [aux_sym__html_block_6_token2] = ACTIONS(820), - [sym__open_tag_html_block] = ACTIONS(820), - [sym__open_tag_html_block_newline] = ACTIONS(820), - [sym__closing_tag_html_block] = ACTIONS(820), - [sym__closing_tag_html_block_newline] = ACTIONS(820), - [sym_backslash_escape] = ACTIONS(820), - [sym_uri_autolink] = ACTIONS(820), - [sym_email_autolink] = ACTIONS(820), - [sym_entity_reference] = ACTIONS(820), - [sym_numeric_character_reference] = ACTIONS(820), - [sym__whitespace_ge_2] = ACTIONS(820), - [aux_sym__whitespace_token1] = ACTIONS(822), - [sym__word_no_digit] = ACTIONS(820), - [sym__digits] = ACTIONS(820), - [aux_sym__newline_token1] = ACTIONS(820), - [sym__block_continuation] = ACTIONS(1407), - [sym__block_quote_start] = ACTIONS(820), - [sym__indented_chunk_start] = ACTIONS(820), - [sym_atx_h1_marker] = ACTIONS(820), - [sym_atx_h2_marker] = ACTIONS(820), - [sym_atx_h3_marker] = ACTIONS(820), - [sym_atx_h4_marker] = ACTIONS(820), - [sym_atx_h5_marker] = ACTIONS(820), - [sym_atx_h6_marker] = ACTIONS(820), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(820), - [sym__thematic_break] = ACTIONS(820), - [sym__list_marker_minus] = ACTIONS(820), - [sym__list_marker_plus] = ACTIONS(820), - [sym__list_marker_star] = ACTIONS(820), - [sym__list_marker_parenthesis] = ACTIONS(820), - [sym__list_marker_dot] = ACTIONS(820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(820), - [sym__fenced_code_block_start_backtick] = ACTIONS(820), - [sym__fenced_code_block_start_tilde] = ACTIONS(820), - [sym__blank_line_start] = ACTIONS(820), - [sym__code_span_start] = ACTIONS(820), - [sym__last_token_whitespace] = ACTIONS(1407), - [sym__emphasis_open_star] = ACTIONS(820), - [sym__emphasis_open_underscore] = ACTIONS(820), - }, - [271] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(820), - [aux_sym__html_block_1_token1] = ACTIONS(820), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(820), - [anon_sym_POUND] = ACTIONS(820), - [anon_sym_DOLLAR] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(822), - [anon_sym_SQUOTE] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_QMARK] = ACTIONS(820), - [anon_sym_AT] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_BSLASH] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym__] = ACTIONS(820), - [anon_sym_BQUOTE] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(822), - [anon_sym_LT_QMARK] = ACTIONS(822), - [aux_sym__html_block_4_token1] = ACTIONS(822), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(820), - [aux_sym__html_block_6_token1] = ACTIONS(822), - [aux_sym__html_block_6_token2] = ACTIONS(820), - [sym__open_tag_html_block] = ACTIONS(820), - [sym__open_tag_html_block_newline] = ACTIONS(820), - [sym__closing_tag_html_block] = ACTIONS(820), - [sym__closing_tag_html_block_newline] = ACTIONS(820), - [sym_backslash_escape] = ACTIONS(820), - [sym_uri_autolink] = ACTIONS(820), - [sym_email_autolink] = ACTIONS(820), - [sym_entity_reference] = ACTIONS(820), - [sym_numeric_character_reference] = ACTIONS(820), - [sym__whitespace_ge_2] = ACTIONS(820), - [aux_sym__whitespace_token1] = ACTIONS(822), - [sym__word_no_digit] = ACTIONS(820), - [sym__digits] = ACTIONS(820), - [aux_sym__newline_token1] = ACTIONS(820), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(820), - [sym__indented_chunk_start] = ACTIONS(820), - [sym_atx_h1_marker] = ACTIONS(820), - [sym_atx_h2_marker] = ACTIONS(820), - [sym_atx_h3_marker] = ACTIONS(820), - [sym_atx_h4_marker] = ACTIONS(820), - [sym_atx_h5_marker] = ACTIONS(820), - [sym_atx_h6_marker] = ACTIONS(820), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(820), - [sym__thematic_break] = ACTIONS(820), - [sym__list_marker_minus] = ACTIONS(820), - [sym__list_marker_plus] = ACTIONS(820), - [sym__list_marker_star] = ACTIONS(820), - [sym__list_marker_parenthesis] = ACTIONS(820), - [sym__list_marker_dot] = ACTIONS(820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(820), - [sym__fenced_code_block_start_backtick] = ACTIONS(820), - [sym__fenced_code_block_start_tilde] = ACTIONS(820), - [sym__blank_line_start] = ACTIONS(820), - [sym__code_span_start] = ACTIONS(820), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(820), - [sym__emphasis_open_underscore] = ACTIONS(820), - }, - [272] = { - [sym_list_marker_star] = STATE(40), - [sym__list_item_star] = STATE(205), - [aux_sym__list_star_repeat1] = STATE(205), - [ts_builtin_sym_end] = ACTIONS(1409), - [aux_sym__html_block_1_token1] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1409), - [anon_sym_DOLLAR] = ACTIONS(1409), - [anon_sym_PERCENT] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_COLON] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1409), - [anon_sym_AT] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_BSLASH] = ACTIONS(1411), - [anon_sym_RBRACK] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1409), - [anon_sym__] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1411), - [anon_sym_LT_QMARK] = ACTIONS(1411), - [aux_sym__html_block_4_token1] = ACTIONS(1411), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1409), - [aux_sym__html_block_6_token1] = ACTIONS(1411), - [aux_sym__html_block_6_token2] = ACTIONS(1409), - [sym__open_tag_html_block] = ACTIONS(1409), - [sym__open_tag_html_block_newline] = ACTIONS(1409), - [sym__closing_tag_html_block] = ACTIONS(1409), - [sym__closing_tag_html_block_newline] = ACTIONS(1409), - [sym_backslash_escape] = ACTIONS(1409), - [sym_uri_autolink] = ACTIONS(1409), - [sym_email_autolink] = ACTIONS(1409), - [sym_entity_reference] = ACTIONS(1409), - [sym_numeric_character_reference] = ACTIONS(1409), - [sym__whitespace_ge_2] = ACTIONS(1409), - [aux_sym__whitespace_token1] = ACTIONS(1411), - [sym__word_no_digit] = ACTIONS(1409), - [sym__digits] = ACTIONS(1409), - [aux_sym__newline_token1] = ACTIONS(1409), - [sym__block_quote_start] = ACTIONS(1409), - [sym__indented_chunk_start] = ACTIONS(1409), - [sym_atx_h1_marker] = ACTIONS(1409), - [sym_atx_h2_marker] = ACTIONS(1409), - [sym_atx_h3_marker] = ACTIONS(1409), - [sym_atx_h4_marker] = ACTIONS(1409), - [sym_atx_h5_marker] = ACTIONS(1409), - [sym_atx_h6_marker] = ACTIONS(1409), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1409), - [sym__thematic_break] = ACTIONS(1409), - [sym__list_marker_minus] = ACTIONS(1409), - [sym__list_marker_plus] = ACTIONS(1409), - [sym__list_marker_star] = ACTIONS(57), - [sym__list_marker_parenthesis] = ACTIONS(1409), - [sym__list_marker_dot] = ACTIONS(1409), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1409), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1409), - [sym__list_marker_star_dont_interrupt] = ACTIONS(57), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1409), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1409), - [sym__fenced_code_block_start_backtick] = ACTIONS(1409), - [sym__fenced_code_block_start_tilde] = ACTIONS(1409), - [sym__blank_line_start] = ACTIONS(1409), - [sym__code_span_start] = ACTIONS(1409), - [sym__emphasis_open_star] = ACTIONS(1409), - [sym__emphasis_open_underscore] = ACTIONS(1409), - }, - [273] = { - [sym_list_marker_dot] = STATE(41), - [sym__list_item_dot] = STATE(206), - [aux_sym__list_dot_repeat1] = STATE(206), - [ts_builtin_sym_end] = ACTIONS(1413), - [aux_sym__html_block_1_token1] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_PERCENT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_COLON] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1413), - [anon_sym_AT] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_BSLASH] = ACTIONS(1415), - [anon_sym_RBRACK] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1413), - [anon_sym__] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1415), - [anon_sym_LT_QMARK] = ACTIONS(1415), - [aux_sym__html_block_4_token1] = ACTIONS(1415), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1413), - [aux_sym__html_block_6_token1] = ACTIONS(1415), - [aux_sym__html_block_6_token2] = ACTIONS(1413), - [sym__open_tag_html_block] = ACTIONS(1413), - [sym__open_tag_html_block_newline] = ACTIONS(1413), - [sym__closing_tag_html_block] = ACTIONS(1413), - [sym__closing_tag_html_block_newline] = ACTIONS(1413), - [sym_backslash_escape] = ACTIONS(1413), - [sym_uri_autolink] = ACTIONS(1413), - [sym_email_autolink] = ACTIONS(1413), - [sym_entity_reference] = ACTIONS(1413), - [sym_numeric_character_reference] = ACTIONS(1413), - [sym__whitespace_ge_2] = ACTIONS(1413), - [aux_sym__whitespace_token1] = ACTIONS(1415), - [sym__word_no_digit] = ACTIONS(1413), - [sym__digits] = ACTIONS(1413), - [aux_sym__newline_token1] = ACTIONS(1413), - [sym__block_quote_start] = ACTIONS(1413), - [sym__indented_chunk_start] = ACTIONS(1413), - [sym_atx_h1_marker] = ACTIONS(1413), - [sym_atx_h2_marker] = ACTIONS(1413), - [sym_atx_h3_marker] = ACTIONS(1413), - [sym_atx_h4_marker] = ACTIONS(1413), - [sym_atx_h5_marker] = ACTIONS(1413), - [sym_atx_h6_marker] = ACTIONS(1413), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1413), - [sym__thematic_break] = ACTIONS(1413), - [sym__list_marker_minus] = ACTIONS(1413), - [sym__list_marker_plus] = ACTIONS(1413), - [sym__list_marker_star] = ACTIONS(1413), - [sym__list_marker_parenthesis] = ACTIONS(1413), - [sym__list_marker_dot] = ACTIONS(61), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(1413), - [sym__fenced_code_block_start_tilde] = ACTIONS(1413), - [sym__blank_line_start] = ACTIONS(1413), - [sym__code_span_start] = ACTIONS(1413), - [sym__emphasis_open_star] = ACTIONS(1413), - [sym__emphasis_open_underscore] = ACTIONS(1413), - }, - [274] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_POUND] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [anon_sym_PERCENT] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym_SQUOTE] = ACTIONS(794), - [anon_sym_LPAREN] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(794), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_DOT] = ACTIONS(794), - [anon_sym_SLASH] = ACTIONS(794), - [anon_sym_COLON] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_QMARK] = ACTIONS(794), - [anon_sym_AT] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_BSLASH] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(794), - [anon_sym_CARET] = ACTIONS(794), - [anon_sym__] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RBRACE] = ACTIONS(794), - [anon_sym_TILDE] = ACTIONS(794), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(796), - [anon_sym_LT_QMARK] = ACTIONS(796), - [aux_sym__html_block_4_token1] = ACTIONS(796), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(794), - [aux_sym__html_block_6_token1] = ACTIONS(796), - [aux_sym__html_block_6_token2] = ACTIONS(794), - [sym__open_tag_html_block] = ACTIONS(794), - [sym__open_tag_html_block_newline] = ACTIONS(794), - [sym__closing_tag_html_block] = ACTIONS(794), - [sym__closing_tag_html_block_newline] = ACTIONS(794), - [sym_backslash_escape] = ACTIONS(794), - [sym_uri_autolink] = ACTIONS(794), - [sym_email_autolink] = ACTIONS(794), - [sym_entity_reference] = ACTIONS(794), - [sym_numeric_character_reference] = ACTIONS(794), - [sym__whitespace_ge_2] = ACTIONS(794), - [aux_sym__whitespace_token1] = ACTIONS(796), - [sym__word_no_digit] = ACTIONS(794), - [sym__digits] = ACTIONS(794), - [aux_sym__newline_token1] = ACTIONS(794), - [sym__block_close] = ACTIONS(794), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(794), - [sym__indented_chunk_start] = ACTIONS(794), - [sym_atx_h1_marker] = ACTIONS(794), - [sym_atx_h2_marker] = ACTIONS(794), - [sym_atx_h3_marker] = ACTIONS(794), - [sym_atx_h4_marker] = ACTIONS(794), - [sym_atx_h5_marker] = ACTIONS(794), - [sym_atx_h6_marker] = ACTIONS(794), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(794), - [sym__thematic_break] = ACTIONS(794), - [sym__list_marker_minus] = ACTIONS(794), - [sym__list_marker_plus] = ACTIONS(794), - [sym__list_marker_star] = ACTIONS(794), - [sym__list_marker_parenthesis] = ACTIONS(794), - [sym__list_marker_dot] = ACTIONS(794), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(794), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(794), - [sym__list_marker_star_dont_interrupt] = ACTIONS(794), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(794), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(794), - [sym__fenced_code_block_start_backtick] = ACTIONS(794), - [sym__fenced_code_block_start_tilde] = ACTIONS(794), - [sym__blank_line_start] = ACTIONS(794), - [sym__code_span_start] = ACTIONS(794), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(794), - [sym__emphasis_open_underscore] = ACTIONS(794), - }, - [275] = { - [sym_list_marker_parenthesis] = STATE(42), - [sym__list_item_parenthesis] = STATE(207), - [aux_sym__list_parenthesis_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1417), - [aux_sym__html_block_1_token1] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_PERCENT] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1417), - [anon_sym_SLASH] = ACTIONS(1417), - [anon_sym_COLON] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_BSLASH] = ACTIONS(1419), - [anon_sym_RBRACK] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym__] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_PIPE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1419), - [anon_sym_LT_QMARK] = ACTIONS(1419), - [aux_sym__html_block_4_token1] = ACTIONS(1419), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1417), - [aux_sym__html_block_6_token1] = ACTIONS(1419), - [aux_sym__html_block_6_token2] = ACTIONS(1417), - [sym__open_tag_html_block] = ACTIONS(1417), - [sym__open_tag_html_block_newline] = ACTIONS(1417), - [sym__closing_tag_html_block] = ACTIONS(1417), - [sym__closing_tag_html_block_newline] = ACTIONS(1417), - [sym_backslash_escape] = ACTIONS(1417), - [sym_uri_autolink] = ACTIONS(1417), - [sym_email_autolink] = ACTIONS(1417), - [sym_entity_reference] = ACTIONS(1417), - [sym_numeric_character_reference] = ACTIONS(1417), - [sym__whitespace_ge_2] = ACTIONS(1417), - [aux_sym__whitespace_token1] = ACTIONS(1419), - [sym__word_no_digit] = ACTIONS(1417), - [sym__digits] = ACTIONS(1417), - [aux_sym__newline_token1] = ACTIONS(1417), - [sym__block_quote_start] = ACTIONS(1417), - [sym__indented_chunk_start] = ACTIONS(1417), - [sym_atx_h1_marker] = ACTIONS(1417), - [sym_atx_h2_marker] = ACTIONS(1417), - [sym_atx_h3_marker] = ACTIONS(1417), - [sym_atx_h4_marker] = ACTIONS(1417), - [sym_atx_h5_marker] = ACTIONS(1417), - [sym_atx_h6_marker] = ACTIONS(1417), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1417), - [sym__thematic_break] = ACTIONS(1417), - [sym__list_marker_minus] = ACTIONS(1417), - [sym__list_marker_plus] = ACTIONS(1417), - [sym__list_marker_star] = ACTIONS(1417), - [sym__list_marker_parenthesis] = ACTIONS(59), - [sym__list_marker_dot] = ACTIONS(1417), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1417), - [sym__fenced_code_block_start_backtick] = ACTIONS(1417), - [sym__fenced_code_block_start_tilde] = ACTIONS(1417), - [sym__blank_line_start] = ACTIONS(1417), - [sym__code_span_start] = ACTIONS(1417), - [sym__emphasis_open_star] = ACTIONS(1417), - [sym__emphasis_open_underscore] = ACTIONS(1417), - }, - [276] = { - [aux_sym__ignore_matching_tokens] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(1421), - [aux_sym__html_block_1_token1] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_COLON] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_BSLASH] = ACTIONS(1423), - [anon_sym_RBRACK] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym__] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1423), - [anon_sym_LT_QMARK] = ACTIONS(1423), - [aux_sym__html_block_4_token1] = ACTIONS(1423), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1421), - [aux_sym__html_block_6_token1] = ACTIONS(1423), - [aux_sym__html_block_6_token2] = ACTIONS(1421), - [sym__open_tag_html_block] = ACTIONS(1421), - [sym__open_tag_html_block_newline] = ACTIONS(1421), - [sym__closing_tag_html_block] = ACTIONS(1421), - [sym__closing_tag_html_block_newline] = ACTIONS(1421), - [sym_backslash_escape] = ACTIONS(1421), - [sym_uri_autolink] = ACTIONS(1421), - [sym_email_autolink] = ACTIONS(1421), - [sym_entity_reference] = ACTIONS(1421), - [sym_numeric_character_reference] = ACTIONS(1421), - [sym__whitespace_ge_2] = ACTIONS(1421), - [aux_sym__whitespace_token1] = ACTIONS(1423), - [sym__word_no_digit] = ACTIONS(1421), - [sym__digits] = ACTIONS(1421), - [aux_sym__newline_token1] = ACTIONS(1421), - [sym__block_continuation] = ACTIONS(1425), - [sym__block_quote_start] = ACTIONS(1421), - [sym__indented_chunk_start] = ACTIONS(1421), - [sym_atx_h1_marker] = ACTIONS(1421), - [sym_atx_h2_marker] = ACTIONS(1421), - [sym_atx_h3_marker] = ACTIONS(1421), - [sym_atx_h4_marker] = ACTIONS(1421), - [sym_atx_h5_marker] = ACTIONS(1421), - [sym_atx_h6_marker] = ACTIONS(1421), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1421), - [sym__thematic_break] = ACTIONS(1421), - [sym__list_marker_minus] = ACTIONS(1421), - [sym__list_marker_plus] = ACTIONS(1421), - [sym__list_marker_star] = ACTIONS(1421), - [sym__list_marker_parenthesis] = ACTIONS(1421), - [sym__list_marker_dot] = ACTIONS(1421), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1421), - [sym__fenced_code_block_start_backtick] = ACTIONS(1421), - [sym__fenced_code_block_start_tilde] = ACTIONS(1421), - [sym__blank_line_start] = ACTIONS(1421), - [sym__code_span_start] = ACTIONS(1421), - [sym__last_token_whitespace] = ACTIONS(1425), - [sym__emphasis_open_star] = ACTIONS(1421), - [sym__emphasis_open_underscore] = ACTIONS(1421), - }, - [277] = { - [aux_sym__ignore_matching_tokens] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(1427), - [aux_sym__html_block_1_token1] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_DOLLAR] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_COLON] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_QMARK] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_BSLASH] = ACTIONS(1429), - [anon_sym_RBRACK] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1427), - [anon_sym__] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1429), - [anon_sym_LT_QMARK] = ACTIONS(1429), - [aux_sym__html_block_4_token1] = ACTIONS(1429), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1427), - [aux_sym__html_block_6_token1] = ACTIONS(1429), - [aux_sym__html_block_6_token2] = ACTIONS(1427), - [sym__open_tag_html_block] = ACTIONS(1427), - [sym__open_tag_html_block_newline] = ACTIONS(1427), - [sym__closing_tag_html_block] = ACTIONS(1427), - [sym__closing_tag_html_block_newline] = ACTIONS(1427), - [sym_backslash_escape] = ACTIONS(1427), - [sym_uri_autolink] = ACTIONS(1427), - [sym_email_autolink] = ACTIONS(1427), - [sym_entity_reference] = ACTIONS(1427), - [sym_numeric_character_reference] = ACTIONS(1427), - [sym__whitespace_ge_2] = ACTIONS(1427), - [aux_sym__whitespace_token1] = ACTIONS(1429), - [sym__word_no_digit] = ACTIONS(1427), - [sym__digits] = ACTIONS(1427), - [aux_sym__newline_token1] = ACTIONS(1427), - [sym__block_continuation] = ACTIONS(1431), - [sym__block_quote_start] = ACTIONS(1427), - [sym__indented_chunk_start] = ACTIONS(1427), - [sym_atx_h1_marker] = ACTIONS(1427), - [sym_atx_h2_marker] = ACTIONS(1427), - [sym_atx_h3_marker] = ACTIONS(1427), - [sym_atx_h4_marker] = ACTIONS(1427), - [sym_atx_h5_marker] = ACTIONS(1427), - [sym_atx_h6_marker] = ACTIONS(1427), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1427), - [sym__thematic_break] = ACTIONS(1427), - [sym__list_marker_minus] = ACTIONS(1427), - [sym__list_marker_plus] = ACTIONS(1427), - [sym__list_marker_star] = ACTIONS(1427), - [sym__list_marker_parenthesis] = ACTIONS(1427), - [sym__list_marker_dot] = ACTIONS(1427), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1427), - [sym__fenced_code_block_start_backtick] = ACTIONS(1427), - [sym__fenced_code_block_start_tilde] = ACTIONS(1427), - [sym__blank_line_start] = ACTIONS(1427), - [sym__code_span_start] = ACTIONS(1427), - [sym__last_token_whitespace] = ACTIONS(1431), - [sym__emphasis_open_star] = ACTIONS(1427), - [sym__emphasis_open_underscore] = ACTIONS(1427), - }, - [278] = { - [aux_sym__ignore_matching_tokens] = STATE(214), - [aux_sym__html_block_1_token1] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_DOLLAR] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_COLON] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_QMARK] = ACTIONS(1427), - [anon_sym_AT] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_BSLASH] = ACTIONS(1429), - [anon_sym_RBRACK] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1427), - [anon_sym__] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1429), - [anon_sym_LT_QMARK] = ACTIONS(1429), - [aux_sym__html_block_4_token1] = ACTIONS(1429), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1427), - [aux_sym__html_block_6_token1] = ACTIONS(1429), - [aux_sym__html_block_6_token2] = ACTIONS(1427), - [sym__open_tag_html_block] = ACTIONS(1427), - [sym__open_tag_html_block_newline] = ACTIONS(1427), - [sym__closing_tag_html_block] = ACTIONS(1427), - [sym__closing_tag_html_block_newline] = ACTIONS(1427), - [sym_backslash_escape] = ACTIONS(1427), - [sym_uri_autolink] = ACTIONS(1427), - [sym_email_autolink] = ACTIONS(1427), - [sym_entity_reference] = ACTIONS(1427), - [sym_numeric_character_reference] = ACTIONS(1427), - [sym__whitespace_ge_2] = ACTIONS(1427), - [aux_sym__whitespace_token1] = ACTIONS(1429), - [sym__word_no_digit] = ACTIONS(1427), - [sym__digits] = ACTIONS(1427), - [aux_sym__newline_token1] = ACTIONS(1427), - [sym__block_close] = ACTIONS(1427), - [sym__block_continuation] = ACTIONS(1433), - [sym__block_quote_start] = ACTIONS(1427), - [sym__indented_chunk_start] = ACTIONS(1427), - [sym_atx_h1_marker] = ACTIONS(1427), - [sym_atx_h2_marker] = ACTIONS(1427), - [sym_atx_h3_marker] = ACTIONS(1427), - [sym_atx_h4_marker] = ACTIONS(1427), - [sym_atx_h5_marker] = ACTIONS(1427), - [sym_atx_h6_marker] = ACTIONS(1427), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1427), - [sym__thematic_break] = ACTIONS(1427), - [sym__list_marker_minus] = ACTIONS(1427), - [sym__list_marker_plus] = ACTIONS(1427), - [sym__list_marker_star] = ACTIONS(1427), - [sym__list_marker_parenthesis] = ACTIONS(1427), - [sym__list_marker_dot] = ACTIONS(1427), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1427), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1427), - [sym__fenced_code_block_start_backtick] = ACTIONS(1427), - [sym__fenced_code_block_start_tilde] = ACTIONS(1427), - [sym__blank_line_start] = ACTIONS(1427), - [sym__code_span_start] = ACTIONS(1427), - [sym__last_token_whitespace] = ACTIONS(1433), - [sym__emphasis_open_star] = ACTIONS(1427), - [sym__emphasis_open_underscore] = ACTIONS(1427), - }, - [279] = { - [aux_sym__ignore_matching_tokens] = STATE(216), - [aux_sym__html_block_1_token1] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_DOLLAR] = ACTIONS(1421), - [anon_sym_PERCENT] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_COLON] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1421), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_BSLASH] = ACTIONS(1423), - [anon_sym_RBRACK] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym__] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1423), - [anon_sym_LT_QMARK] = ACTIONS(1423), - [aux_sym__html_block_4_token1] = ACTIONS(1423), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1421), - [aux_sym__html_block_6_token1] = ACTIONS(1423), - [aux_sym__html_block_6_token2] = ACTIONS(1421), - [sym__open_tag_html_block] = ACTIONS(1421), - [sym__open_tag_html_block_newline] = ACTIONS(1421), - [sym__closing_tag_html_block] = ACTIONS(1421), - [sym__closing_tag_html_block_newline] = ACTIONS(1421), - [sym_backslash_escape] = ACTIONS(1421), - [sym_uri_autolink] = ACTIONS(1421), - [sym_email_autolink] = ACTIONS(1421), - [sym_entity_reference] = ACTIONS(1421), - [sym_numeric_character_reference] = ACTIONS(1421), - [sym__whitespace_ge_2] = ACTIONS(1421), - [aux_sym__whitespace_token1] = ACTIONS(1423), - [sym__word_no_digit] = ACTIONS(1421), - [sym__digits] = ACTIONS(1421), - [aux_sym__newline_token1] = ACTIONS(1421), - [sym__block_close] = ACTIONS(1421), - [sym__block_continuation] = ACTIONS(1435), - [sym__block_quote_start] = ACTIONS(1421), - [sym__indented_chunk_start] = ACTIONS(1421), - [sym_atx_h1_marker] = ACTIONS(1421), - [sym_atx_h2_marker] = ACTIONS(1421), - [sym_atx_h3_marker] = ACTIONS(1421), - [sym_atx_h4_marker] = ACTIONS(1421), - [sym_atx_h5_marker] = ACTIONS(1421), - [sym_atx_h6_marker] = ACTIONS(1421), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1421), - [sym__thematic_break] = ACTIONS(1421), - [sym__list_marker_minus] = ACTIONS(1421), - [sym__list_marker_plus] = ACTIONS(1421), - [sym__list_marker_star] = ACTIONS(1421), - [sym__list_marker_parenthesis] = ACTIONS(1421), - [sym__list_marker_dot] = ACTIONS(1421), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1421), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1421), - [sym__fenced_code_block_start_backtick] = ACTIONS(1421), - [sym__fenced_code_block_start_tilde] = ACTIONS(1421), - [sym__blank_line_start] = ACTIONS(1421), - [sym__code_span_start] = ACTIONS(1421), - [sym__last_token_whitespace] = ACTIONS(1435), - [sym__emphasis_open_star] = ACTIONS(1421), - [sym__emphasis_open_underscore] = ACTIONS(1421), - }, - [280] = { - [sym_list_marker_parenthesis] = STATE(7), - [sym__list_item_parenthesis] = STATE(221), - [aux_sym__list_parenthesis_repeat1] = STATE(221), - [aux_sym__html_block_1_token1] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_DOLLAR] = ACTIONS(1417), - [anon_sym_PERCENT] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1417), - [anon_sym_SLASH] = ACTIONS(1417), - [anon_sym_COLON] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1417), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_BSLASH] = ACTIONS(1419), - [anon_sym_RBRACK] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym__] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_PIPE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1419), - [anon_sym_LT_QMARK] = ACTIONS(1419), - [aux_sym__html_block_4_token1] = ACTIONS(1419), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1417), - [aux_sym__html_block_6_token1] = ACTIONS(1419), - [aux_sym__html_block_6_token2] = ACTIONS(1417), - [sym__open_tag_html_block] = ACTIONS(1417), - [sym__open_tag_html_block_newline] = ACTIONS(1417), - [sym__closing_tag_html_block] = ACTIONS(1417), - [sym__closing_tag_html_block_newline] = ACTIONS(1417), - [sym_backslash_escape] = ACTIONS(1417), - [sym_uri_autolink] = ACTIONS(1417), - [sym_email_autolink] = ACTIONS(1417), - [sym_entity_reference] = ACTIONS(1417), - [sym_numeric_character_reference] = ACTIONS(1417), - [sym__whitespace_ge_2] = ACTIONS(1417), - [aux_sym__whitespace_token1] = ACTIONS(1419), - [sym__word_no_digit] = ACTIONS(1417), - [sym__digits] = ACTIONS(1417), - [aux_sym__newline_token1] = ACTIONS(1417), - [sym__block_close] = ACTIONS(1417), - [sym__block_quote_start] = ACTIONS(1417), - [sym__indented_chunk_start] = ACTIONS(1417), - [sym_atx_h1_marker] = ACTIONS(1417), - [sym_atx_h2_marker] = ACTIONS(1417), - [sym_atx_h3_marker] = ACTIONS(1417), - [sym_atx_h4_marker] = ACTIONS(1417), - [sym_atx_h5_marker] = ACTIONS(1417), - [sym_atx_h6_marker] = ACTIONS(1417), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1417), - [sym__thematic_break] = ACTIONS(1417), - [sym__list_marker_minus] = ACTIONS(1417), - [sym__list_marker_plus] = ACTIONS(1417), - [sym__list_marker_star] = ACTIONS(1417), - [sym__list_marker_parenthesis] = ACTIONS(59), - [sym__list_marker_dot] = ACTIONS(1417), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1417), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(59), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1417), - [sym__fenced_code_block_start_backtick] = ACTIONS(1417), - [sym__fenced_code_block_start_tilde] = ACTIONS(1417), - [sym__blank_line_start] = ACTIONS(1417), - [sym__code_span_start] = ACTIONS(1417), - [sym__emphasis_open_star] = ACTIONS(1417), - [sym__emphasis_open_underscore] = ACTIONS(1417), - }, - [281] = { - [sym_list_marker_dot] = STATE(8), - [sym__list_item_dot] = STATE(222), - [aux_sym__list_dot_repeat1] = STATE(222), - [aux_sym__html_block_1_token1] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1413), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_PERCENT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_COLON] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1413), - [anon_sym_AT] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_BSLASH] = ACTIONS(1415), - [anon_sym_RBRACK] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1413), - [anon_sym__] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1415), - [anon_sym_LT_QMARK] = ACTIONS(1415), - [aux_sym__html_block_4_token1] = ACTIONS(1415), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1413), - [aux_sym__html_block_6_token1] = ACTIONS(1415), - [aux_sym__html_block_6_token2] = ACTIONS(1413), - [sym__open_tag_html_block] = ACTIONS(1413), - [sym__open_tag_html_block_newline] = ACTIONS(1413), - [sym__closing_tag_html_block] = ACTIONS(1413), - [sym__closing_tag_html_block_newline] = ACTIONS(1413), - [sym_backslash_escape] = ACTIONS(1413), - [sym_uri_autolink] = ACTIONS(1413), - [sym_email_autolink] = ACTIONS(1413), - [sym_entity_reference] = ACTIONS(1413), - [sym_numeric_character_reference] = ACTIONS(1413), - [sym__whitespace_ge_2] = ACTIONS(1413), - [aux_sym__whitespace_token1] = ACTIONS(1415), - [sym__word_no_digit] = ACTIONS(1413), - [sym__digits] = ACTIONS(1413), - [aux_sym__newline_token1] = ACTIONS(1413), - [sym__block_close] = ACTIONS(1413), - [sym__block_quote_start] = ACTIONS(1413), - [sym__indented_chunk_start] = ACTIONS(1413), - [sym_atx_h1_marker] = ACTIONS(1413), - [sym_atx_h2_marker] = ACTIONS(1413), - [sym_atx_h3_marker] = ACTIONS(1413), - [sym_atx_h4_marker] = ACTIONS(1413), - [sym_atx_h5_marker] = ACTIONS(1413), - [sym_atx_h6_marker] = ACTIONS(1413), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1413), - [sym__thematic_break] = ACTIONS(1413), - [sym__list_marker_minus] = ACTIONS(1413), - [sym__list_marker_plus] = ACTIONS(1413), - [sym__list_marker_star] = ACTIONS(1413), - [sym__list_marker_parenthesis] = ACTIONS(1413), - [sym__list_marker_dot] = ACTIONS(61), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1413), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(61), - [sym__fenced_code_block_start_backtick] = ACTIONS(1413), - [sym__fenced_code_block_start_tilde] = ACTIONS(1413), - [sym__blank_line_start] = ACTIONS(1413), - [sym__code_span_start] = ACTIONS(1413), - [sym__emphasis_open_star] = ACTIONS(1413), - [sym__emphasis_open_underscore] = ACTIONS(1413), - }, - [282] = { - [sym_link_title] = STATE(2210), - [sym__whitespace] = STATE(2058), - [ts_builtin_sym_end] = ACTIONS(1354), - [aux_sym__html_block_1_token1] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PERCENT] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_COMMA] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_COLON] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_QMARK] = ACTIONS(1354), - [anon_sym_AT] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_BSLASH] = ACTIONS(1359), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1354), - [anon_sym__] = ACTIONS(1354), - [anon_sym_BQUOTE] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1359), - [anon_sym_LT_QMARK] = ACTIONS(1359), - [aux_sym__html_block_4_token1] = ACTIONS(1359), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1354), - [aux_sym__html_block_6_token1] = ACTIONS(1359), - [aux_sym__html_block_6_token2] = ACTIONS(1354), - [sym__open_tag_html_block] = ACTIONS(1354), - [sym__open_tag_html_block_newline] = ACTIONS(1354), - [sym__closing_tag_html_block] = ACTIONS(1354), - [sym__closing_tag_html_block_newline] = ACTIONS(1354), - [sym_backslash_escape] = ACTIONS(1354), - [sym_uri_autolink] = ACTIONS(1354), - [sym_email_autolink] = ACTIONS(1354), - [sym_entity_reference] = ACTIONS(1354), - [sym_numeric_character_reference] = ACTIONS(1354), - [sym__whitespace_ge_2] = ACTIONS(1367), - [aux_sym__whitespace_token1] = ACTIONS(1370), - [sym__word_no_digit] = ACTIONS(1354), - [sym__digits] = ACTIONS(1354), - [aux_sym__newline_token1] = ACTIONS(1354), - [sym__block_quote_start] = ACTIONS(1354), - [sym__indented_chunk_start] = ACTIONS(1354), - [sym_atx_h1_marker] = ACTIONS(1354), - [sym_atx_h2_marker] = ACTIONS(1354), - [sym_atx_h3_marker] = ACTIONS(1354), - [sym_atx_h4_marker] = ACTIONS(1354), - [sym_atx_h5_marker] = ACTIONS(1354), - [sym_atx_h6_marker] = ACTIONS(1354), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1354), - [sym__thematic_break] = ACTIONS(1354), - [sym__list_marker_minus] = ACTIONS(1354), - [sym__list_marker_plus] = ACTIONS(1354), - [sym__list_marker_star] = ACTIONS(1354), - [sym__list_marker_parenthesis] = ACTIONS(1354), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1354), - [sym__fenced_code_block_start_tilde] = ACTIONS(1354), - [sym__blank_line_start] = ACTIONS(1354), - [sym__code_span_start] = ACTIONS(1354), - [sym__emphasis_open_star] = ACTIONS(1354), - [sym__emphasis_open_underscore] = ACTIONS(1354), - [sym__no_indented_chunk] = ACTIONS(1437), - }, - [283] = { - [sym_link_title] = STATE(2125), - [sym__whitespace] = STATE(2061), - [aux_sym__html_block_1_token1] = ACTIONS(1150), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_PERCENT] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1155), - [anon_sym_SQUOTE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_SLASH] = ACTIONS(1150), - [anon_sym_COLON] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1155), - [anon_sym_EQ] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_QMARK] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_BSLASH] = ACTIONS(1155), - [anon_sym_RBRACK] = ACTIONS(1150), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym__] = ACTIONS(1150), - [anon_sym_BQUOTE] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_TILDE] = ACTIONS(1150), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1155), - [anon_sym_LT_QMARK] = ACTIONS(1155), - [aux_sym__html_block_4_token1] = ACTIONS(1155), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1150), - [aux_sym__html_block_6_token1] = ACTIONS(1155), - [aux_sym__html_block_6_token2] = ACTIONS(1150), - [sym__open_tag_html_block] = ACTIONS(1150), - [sym__open_tag_html_block_newline] = ACTIONS(1150), - [sym__closing_tag_html_block] = ACTIONS(1150), - [sym__closing_tag_html_block_newline] = ACTIONS(1150), - [sym_backslash_escape] = ACTIONS(1150), - [sym_uri_autolink] = ACTIONS(1150), - [sym_email_autolink] = ACTIONS(1150), - [sym_entity_reference] = ACTIONS(1150), - [sym_numeric_character_reference] = ACTIONS(1150), - [sym__whitespace_ge_2] = ACTIONS(1163), - [aux_sym__whitespace_token1] = ACTIONS(1166), - [sym__word_no_digit] = ACTIONS(1150), - [sym__digits] = ACTIONS(1150), - [aux_sym__newline_token1] = ACTIONS(1150), - [sym__block_close] = ACTIONS(1150), - [sym__block_quote_start] = ACTIONS(1150), - [sym__indented_chunk_start] = ACTIONS(1150), - [sym_atx_h1_marker] = ACTIONS(1150), - [sym_atx_h2_marker] = ACTIONS(1150), - [sym_atx_h3_marker] = ACTIONS(1150), - [sym_atx_h4_marker] = ACTIONS(1150), - [sym_atx_h5_marker] = ACTIONS(1150), - [sym_atx_h6_marker] = ACTIONS(1150), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1150), - [sym__thematic_break] = ACTIONS(1150), - [sym__list_marker_minus] = ACTIONS(1150), - [sym__list_marker_plus] = ACTIONS(1150), - [sym__list_marker_star] = ACTIONS(1150), - [sym__list_marker_parenthesis] = ACTIONS(1150), - [sym__list_marker_dot] = ACTIONS(1150), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1150), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1150), - [sym__fenced_code_block_start_backtick] = ACTIONS(1150), - [sym__fenced_code_block_start_tilde] = ACTIONS(1150), - [sym__blank_line_start] = ACTIONS(1150), - [sym__code_span_start] = ACTIONS(1150), - [sym__emphasis_open_star] = ACTIONS(1150), - [sym__emphasis_open_underscore] = ACTIONS(1150), - [sym__no_indented_chunk] = ACTIONS(1439), - }, - [284] = { - [sym_list_marker_star] = STATE(9), - [sym__list_item_star] = STATE(227), - [aux_sym__list_star_repeat1] = STATE(227), - [aux_sym__html_block_1_token1] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1409), - [anon_sym_DOLLAR] = ACTIONS(1409), - [anon_sym_PERCENT] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_COLON] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1409), - [anon_sym_AT] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_BSLASH] = ACTIONS(1411), - [anon_sym_RBRACK] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1409), - [anon_sym__] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1411), - [anon_sym_LT_QMARK] = ACTIONS(1411), - [aux_sym__html_block_4_token1] = ACTIONS(1411), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1409), - [aux_sym__html_block_6_token1] = ACTIONS(1411), - [aux_sym__html_block_6_token2] = ACTIONS(1409), - [sym__open_tag_html_block] = ACTIONS(1409), - [sym__open_tag_html_block_newline] = ACTIONS(1409), - [sym__closing_tag_html_block] = ACTIONS(1409), - [sym__closing_tag_html_block_newline] = ACTIONS(1409), - [sym_backslash_escape] = ACTIONS(1409), - [sym_uri_autolink] = ACTIONS(1409), - [sym_email_autolink] = ACTIONS(1409), - [sym_entity_reference] = ACTIONS(1409), - [sym_numeric_character_reference] = ACTIONS(1409), - [sym__whitespace_ge_2] = ACTIONS(1409), - [aux_sym__whitespace_token1] = ACTIONS(1411), - [sym__word_no_digit] = ACTIONS(1409), - [sym__digits] = ACTIONS(1409), - [aux_sym__newline_token1] = ACTIONS(1409), - [sym__block_close] = ACTIONS(1409), - [sym__block_quote_start] = ACTIONS(1409), - [sym__indented_chunk_start] = ACTIONS(1409), - [sym_atx_h1_marker] = ACTIONS(1409), - [sym_atx_h2_marker] = ACTIONS(1409), - [sym_atx_h3_marker] = ACTIONS(1409), - [sym_atx_h4_marker] = ACTIONS(1409), - [sym_atx_h5_marker] = ACTIONS(1409), - [sym_atx_h6_marker] = ACTIONS(1409), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1409), - [sym__thematic_break] = ACTIONS(1409), - [sym__list_marker_minus] = ACTIONS(1409), - [sym__list_marker_plus] = ACTIONS(1409), - [sym__list_marker_star] = ACTIONS(57), - [sym__list_marker_parenthesis] = ACTIONS(1409), - [sym__list_marker_dot] = ACTIONS(1409), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1409), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1409), - [sym__list_marker_star_dont_interrupt] = ACTIONS(57), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1409), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1409), - [sym__fenced_code_block_start_backtick] = ACTIONS(1409), - [sym__fenced_code_block_start_tilde] = ACTIONS(1409), - [sym__blank_line_start] = ACTIONS(1409), - [sym__code_span_start] = ACTIONS(1409), - [sym__emphasis_open_star] = ACTIONS(1409), - [sym__emphasis_open_underscore] = ACTIONS(1409), - }, - [285] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_POUND] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_RPAREN] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(1041), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_BSLASH] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym__] = ACTIONS(1041), - [anon_sym_BQUOTE] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1043), - [anon_sym_LT_QMARK] = ACTIONS(1043), - [aux_sym__html_block_4_token1] = ACTIONS(1043), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1041), - [aux_sym__html_block_6_token1] = ACTIONS(1043), - [aux_sym__html_block_6_token2] = ACTIONS(1041), - [sym__open_tag_html_block] = ACTIONS(1041), - [sym__open_tag_html_block_newline] = ACTIONS(1041), - [sym__closing_tag_html_block] = ACTIONS(1041), - [sym__closing_tag_html_block_newline] = ACTIONS(1041), - [sym_backslash_escape] = ACTIONS(1041), - [sym_uri_autolink] = ACTIONS(1041), - [sym_email_autolink] = ACTIONS(1041), - [sym_entity_reference] = ACTIONS(1041), - [sym_numeric_character_reference] = ACTIONS(1041), - [sym__whitespace_ge_2] = ACTIONS(1041), - [aux_sym__whitespace_token1] = ACTIONS(1043), - [sym__word_no_digit] = ACTIONS(1041), - [sym__digits] = ACTIONS(1041), - [aux_sym__newline_token1] = ACTIONS(1041), - [sym__block_close] = ACTIONS(1041), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1041), - [sym__indented_chunk_start] = ACTIONS(1041), - [sym_atx_h1_marker] = ACTIONS(1041), - [sym_atx_h2_marker] = ACTIONS(1041), - [sym_atx_h3_marker] = ACTIONS(1041), - [sym_atx_h4_marker] = ACTIONS(1041), - [sym_atx_h5_marker] = ACTIONS(1041), - [sym_atx_h6_marker] = ACTIONS(1041), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1041), - [sym__thematic_break] = ACTIONS(1041), - [sym__list_marker_minus] = ACTIONS(1041), - [sym__list_marker_plus] = ACTIONS(1041), - [sym__list_marker_star] = ACTIONS(1041), - [sym__list_marker_parenthesis] = ACTIONS(1041), - [sym__list_marker_dot] = ACTIONS(1041), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1041), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1041), - [sym__fenced_code_block_start_backtick] = ACTIONS(1041), - [sym__fenced_code_block_start_tilde] = ACTIONS(1041), - [sym__blank_line_start] = ACTIONS(1041), - [sym__code_span_start] = ACTIONS(1041), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1041), - [sym__emphasis_open_underscore] = ACTIONS(1041), - }, - [286] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1141), - [aux_sym__html_block_1_token1] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_BSLASH] = ACTIONS(1143), - [anon_sym_RBRACK] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym__] = ACTIONS(1141), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1143), - [anon_sym_LT_QMARK] = ACTIONS(1143), - [aux_sym__html_block_4_token1] = ACTIONS(1143), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1141), - [aux_sym__html_block_6_token1] = ACTIONS(1143), - [aux_sym__html_block_6_token2] = ACTIONS(1141), - [sym__open_tag_html_block] = ACTIONS(1141), - [sym__open_tag_html_block_newline] = ACTIONS(1141), - [sym__closing_tag_html_block] = ACTIONS(1141), - [sym__closing_tag_html_block_newline] = ACTIONS(1141), - [sym_backslash_escape] = ACTIONS(1141), - [sym_uri_autolink] = ACTIONS(1141), - [sym_email_autolink] = ACTIONS(1141), - [sym_entity_reference] = ACTIONS(1141), - [sym_numeric_character_reference] = ACTIONS(1141), - [sym__whitespace_ge_2] = ACTIONS(1141), - [aux_sym__whitespace_token1] = ACTIONS(1143), - [sym__word_no_digit] = ACTIONS(1141), - [sym__digits] = ACTIONS(1141), - [aux_sym__newline_token1] = ACTIONS(1141), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1141), - [sym__indented_chunk_start] = ACTIONS(1141), - [sym_atx_h1_marker] = ACTIONS(1141), - [sym_atx_h2_marker] = ACTIONS(1141), - [sym_atx_h3_marker] = ACTIONS(1141), - [sym_atx_h4_marker] = ACTIONS(1141), - [sym_atx_h5_marker] = ACTIONS(1141), - [sym_atx_h6_marker] = ACTIONS(1141), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1141), - [sym__thematic_break] = ACTIONS(1141), - [sym__list_marker_minus] = ACTIONS(1141), - [sym__list_marker_plus] = ACTIONS(1141), - [sym__list_marker_star] = ACTIONS(1141), - [sym__list_marker_parenthesis] = ACTIONS(1141), - [sym__list_marker_dot] = ACTIONS(1141), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1141), - [sym__fenced_code_block_start_backtick] = ACTIONS(1141), - [sym__fenced_code_block_start_tilde] = ACTIONS(1141), - [sym__blank_line_start] = ACTIONS(1141), - [sym__code_span_start] = ACTIONS(1141), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1141), - [sym__emphasis_open_underscore] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(752), + [anon_sym_LT_QMARK] = ACTIONS(752), + [aux_sym__html_block_4_token1] = ACTIONS(752), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(750), + [aux_sym__html_block_6_token1] = ACTIONS(752), + [aux_sym__html_block_6_token2] = ACTIONS(750), + [sym__open_tag_html_block] = ACTIONS(750), + [sym__open_tag_html_block_newline] = ACTIONS(750), + [sym__closing_tag_html_block] = ACTIONS(750), + [sym__closing_tag_html_block_newline] = ACTIONS(750), + [sym_backslash_escape] = ACTIONS(750), + [sym_uri_autolink] = ACTIONS(750), + [sym_email_autolink] = ACTIONS(750), + [sym_entity_reference] = ACTIONS(750), + [sym_numeric_character_reference] = ACTIONS(750), + [sym__whitespace_ge_2] = ACTIONS(750), + [aux_sym__whitespace_token1] = ACTIONS(752), + [sym__word_no_digit] = ACTIONS(750), + [sym__digits] = ACTIONS(750), + [aux_sym__newline_token1] = ACTIONS(750), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(750), + [sym__indented_chunk_start] = ACTIONS(750), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(750), + [sym_atx_h5_marker] = ACTIONS(750), + [sym_atx_h6_marker] = ACTIONS(750), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(750), + [sym__thematic_break] = ACTIONS(750), + [sym__list_marker_minus] = ACTIONS(750), + [sym__list_marker_plus] = ACTIONS(750), + [sym__list_marker_star] = ACTIONS(750), + [sym__list_marker_parenthesis] = ACTIONS(750), + [sym__list_marker_dot] = ACTIONS(750), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(750), + [sym__list_marker_star_dont_interrupt] = ACTIONS(750), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(750), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(750), + [sym__fenced_code_block_start_backtick] = ACTIONS(750), + [sym__fenced_code_block_start_tilde] = ACTIONS(750), + [sym__blank_line_start] = ACTIONS(750), + [sym__code_span_start] = ACTIONS(750), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(750), + [sym__emphasis_open_underscore] = ACTIONS(750), }, [287] = { - [sym_list_marker_minus] = STATE(10), - [sym__list_item_minus] = STATE(228), - [aux_sym__list_minus_repeat1] = STATE(228), - [aux_sym__html_block_1_token1] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1403), - [anon_sym_PERCENT] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_RPAREN] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_COLON] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_AT] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_BSLASH] = ACTIONS(1405), - [anon_sym_RBRACK] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym__] = ACTIONS(1403), - [anon_sym_BQUOTE] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1405), - [anon_sym_LT_QMARK] = ACTIONS(1405), - [aux_sym__html_block_4_token1] = ACTIONS(1405), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1403), - [aux_sym__html_block_6_token1] = ACTIONS(1405), - [aux_sym__html_block_6_token2] = ACTIONS(1403), - [sym__open_tag_html_block] = ACTIONS(1403), - [sym__open_tag_html_block_newline] = ACTIONS(1403), - [sym__closing_tag_html_block] = ACTIONS(1403), - [sym__closing_tag_html_block_newline] = ACTIONS(1403), - [sym_backslash_escape] = ACTIONS(1403), - [sym_uri_autolink] = ACTIONS(1403), - [sym_email_autolink] = ACTIONS(1403), - [sym_entity_reference] = ACTIONS(1403), - [sym_numeric_character_reference] = ACTIONS(1403), - [sym__whitespace_ge_2] = ACTIONS(1403), - [aux_sym__whitespace_token1] = ACTIONS(1405), - [sym__word_no_digit] = ACTIONS(1403), - [sym__digits] = ACTIONS(1403), - [aux_sym__newline_token1] = ACTIONS(1403), - [sym__block_close] = ACTIONS(1403), - [sym__block_quote_start] = ACTIONS(1403), - [sym__indented_chunk_start] = ACTIONS(1403), - [sym_atx_h1_marker] = ACTIONS(1403), - [sym_atx_h2_marker] = ACTIONS(1403), - [sym_atx_h3_marker] = ACTIONS(1403), - [sym_atx_h4_marker] = ACTIONS(1403), - [sym_atx_h5_marker] = ACTIONS(1403), - [sym_atx_h6_marker] = ACTIONS(1403), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1403), - [sym__thematic_break] = ACTIONS(1403), - [sym__list_marker_minus] = ACTIONS(53), - [sym__list_marker_plus] = ACTIONS(1403), - [sym__list_marker_star] = ACTIONS(1403), - [sym__list_marker_parenthesis] = ACTIONS(1403), - [sym__list_marker_dot] = ACTIONS(1403), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(53), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1403), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1403), - [sym__fenced_code_block_start_backtick] = ACTIONS(1403), - [sym__fenced_code_block_start_tilde] = ACTIONS(1403), - [sym__blank_line_start] = ACTIONS(1403), - [sym__code_span_start] = ACTIONS(1403), - [sym__emphasis_open_star] = ACTIONS(1403), - [sym__emphasis_open_underscore] = ACTIONS(1403), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(756), + [aux_sym__html_block_1_token1] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(756), + [anon_sym_POUND] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_SQUOTE] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_BSLASH] = ACTIONS(758), + [anon_sym_RBRACK] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym__] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(758), + [anon_sym_LT_QMARK] = ACTIONS(758), + [aux_sym__html_block_4_token1] = ACTIONS(758), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(756), + [aux_sym__html_block_6_token1] = ACTIONS(758), + [aux_sym__html_block_6_token2] = ACTIONS(756), + [sym__open_tag_html_block] = ACTIONS(756), + [sym__open_tag_html_block_newline] = ACTIONS(756), + [sym__closing_tag_html_block] = ACTIONS(756), + [sym__closing_tag_html_block_newline] = ACTIONS(756), + [sym_backslash_escape] = ACTIONS(756), + [sym_uri_autolink] = ACTIONS(756), + [sym_email_autolink] = ACTIONS(756), + [sym_entity_reference] = ACTIONS(756), + [sym_numeric_character_reference] = ACTIONS(756), + [sym__whitespace_ge_2] = ACTIONS(756), + [aux_sym__whitespace_token1] = ACTIONS(758), + [sym__word_no_digit] = ACTIONS(756), + [sym__digits] = ACTIONS(756), + [aux_sym__newline_token1] = ACTIONS(756), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(756), + [sym__indented_chunk_start] = ACTIONS(756), + [sym_atx_h1_marker] = ACTIONS(756), + [sym_atx_h2_marker] = ACTIONS(756), + [sym_atx_h3_marker] = ACTIONS(756), + [sym_atx_h4_marker] = ACTIONS(756), + [sym_atx_h5_marker] = ACTIONS(756), + [sym_atx_h6_marker] = ACTIONS(756), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(756), + [sym__thematic_break] = ACTIONS(756), + [sym__list_marker_minus] = ACTIONS(756), + [sym__list_marker_plus] = ACTIONS(756), + [sym__list_marker_star] = ACTIONS(756), + [sym__list_marker_parenthesis] = ACTIONS(756), + [sym__list_marker_dot] = ACTIONS(756), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(756), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(756), + [sym__list_marker_star_dont_interrupt] = ACTIONS(756), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(756), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(756), + [sym__fenced_code_block_start_backtick] = ACTIONS(756), + [sym__fenced_code_block_start_tilde] = ACTIONS(756), + [sym__blank_line_start] = ACTIONS(756), + [sym__code_span_start] = ACTIONS(756), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(756), + [sym__emphasis_open_underscore] = ACTIONS(756), }, [288] = { - [sym_list_marker_plus] = STATE(11), - [sym__list_item_plus] = STATE(231), - [aux_sym__list_plus_repeat1] = STATE(231), - [aux_sym__html_block_1_token1] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_DOLLAR] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_RPAREN] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_COLON] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_AT] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_BSLASH] = ACTIONS(1401), - [anon_sym_RBRACK] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1401), - [anon_sym_LT_QMARK] = ACTIONS(1401), - [aux_sym__html_block_4_token1] = ACTIONS(1401), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1399), - [aux_sym__html_block_6_token1] = ACTIONS(1401), - [aux_sym__html_block_6_token2] = ACTIONS(1399), - [sym__open_tag_html_block] = ACTIONS(1399), - [sym__open_tag_html_block_newline] = ACTIONS(1399), - [sym__closing_tag_html_block] = ACTIONS(1399), - [sym__closing_tag_html_block_newline] = ACTIONS(1399), - [sym_backslash_escape] = ACTIONS(1399), - [sym_uri_autolink] = ACTIONS(1399), - [sym_email_autolink] = ACTIONS(1399), - [sym_entity_reference] = ACTIONS(1399), - [sym_numeric_character_reference] = ACTIONS(1399), - [sym__whitespace_ge_2] = ACTIONS(1399), - [aux_sym__whitespace_token1] = ACTIONS(1401), - [sym__word_no_digit] = ACTIONS(1399), - [sym__digits] = ACTIONS(1399), - [aux_sym__newline_token1] = ACTIONS(1399), - [sym__block_close] = ACTIONS(1399), - [sym__block_quote_start] = ACTIONS(1399), - [sym__indented_chunk_start] = ACTIONS(1399), - [sym_atx_h1_marker] = ACTIONS(1399), - [sym_atx_h2_marker] = ACTIONS(1399), - [sym_atx_h3_marker] = ACTIONS(1399), - [sym_atx_h4_marker] = ACTIONS(1399), - [sym_atx_h5_marker] = ACTIONS(1399), - [sym_atx_h6_marker] = ACTIONS(1399), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1399), - [sym__thematic_break] = ACTIONS(1399), - [sym__list_marker_minus] = ACTIONS(1399), - [sym__list_marker_plus] = ACTIONS(55), - [sym__list_marker_star] = ACTIONS(1399), - [sym__list_marker_parenthesis] = ACTIONS(1399), - [sym__list_marker_dot] = ACTIONS(1399), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1399), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(55), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1399), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1399), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1399), - [sym__fenced_code_block_start_backtick] = ACTIONS(1399), - [sym__fenced_code_block_start_tilde] = ACTIONS(1399), - [sym__blank_line_start] = ACTIONS(1399), - [sym__code_span_start] = ACTIONS(1399), - [sym__emphasis_open_star] = ACTIONS(1399), - [sym__emphasis_open_underscore] = ACTIONS(1399), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(760), + [aux_sym__html_block_1_token1] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PERCENT] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_DOT] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_BSLASH] = ACTIONS(762), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym__] = ACTIONS(760), + [anon_sym_BQUOTE] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(762), + [anon_sym_LT_QMARK] = ACTIONS(762), + [aux_sym__html_block_4_token1] = ACTIONS(762), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(760), + [aux_sym__html_block_6_token1] = ACTIONS(762), + [aux_sym__html_block_6_token2] = ACTIONS(760), + [sym__open_tag_html_block] = ACTIONS(760), + [sym__open_tag_html_block_newline] = ACTIONS(760), + [sym__closing_tag_html_block] = ACTIONS(760), + [sym__closing_tag_html_block_newline] = ACTIONS(760), + [sym_backslash_escape] = ACTIONS(760), + [sym_uri_autolink] = ACTIONS(760), + [sym_email_autolink] = ACTIONS(760), + [sym_entity_reference] = ACTIONS(760), + [sym_numeric_character_reference] = ACTIONS(760), + [sym__whitespace_ge_2] = ACTIONS(760), + [aux_sym__whitespace_token1] = ACTIONS(762), + [sym__word_no_digit] = ACTIONS(760), + [sym__digits] = ACTIONS(760), + [aux_sym__newline_token1] = ACTIONS(760), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(760), + [sym__indented_chunk_start] = ACTIONS(760), + [sym_atx_h1_marker] = ACTIONS(760), + [sym_atx_h2_marker] = ACTIONS(760), + [sym_atx_h3_marker] = ACTIONS(760), + [sym_atx_h4_marker] = ACTIONS(760), + [sym_atx_h5_marker] = ACTIONS(760), + [sym_atx_h6_marker] = ACTIONS(760), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(760), + [sym__thematic_break] = ACTIONS(760), + [sym__list_marker_minus] = ACTIONS(760), + [sym__list_marker_plus] = ACTIONS(760), + [sym__list_marker_star] = ACTIONS(760), + [sym__list_marker_parenthesis] = ACTIONS(760), + [sym__list_marker_dot] = ACTIONS(760), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(760), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(760), + [sym__list_marker_star_dont_interrupt] = ACTIONS(760), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(760), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(760), + [sym__fenced_code_block_start_backtick] = ACTIONS(760), + [sym__fenced_code_block_start_tilde] = ACTIONS(760), + [sym__blank_line_start] = ACTIONS(760), + [sym__code_span_start] = ACTIONS(760), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(760), + [sym__emphasis_open_underscore] = ACTIONS(760), }, [289] = { - [aux_sym__ignore_matching_tokens] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(1141), - [aux_sym__html_block_1_token1] = ACTIONS(1141), - [anon_sym_BANG] = ACTIONS(1141), - [anon_sym_DQUOTE] = ACTIONS(1141), - [anon_sym_POUND] = ACTIONS(1141), - [anon_sym_DOLLAR] = ACTIONS(1141), - [anon_sym_PERCENT] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_SQUOTE] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1141), - [anon_sym_RPAREN] = ACTIONS(1141), - [anon_sym_STAR] = ACTIONS(1141), - [anon_sym_PLUS] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1141), - [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_DOT] = ACTIONS(1141), - [anon_sym_SLASH] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1141), - [anon_sym_SEMI] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_GT] = ACTIONS(1141), - [anon_sym_QMARK] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_BSLASH] = ACTIONS(1143), - [anon_sym_RBRACK] = ACTIONS(1141), - [anon_sym_CARET] = ACTIONS(1141), - [anon_sym__] = ACTIONS(1141), - [anon_sym_BQUOTE] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1141), - [anon_sym_PIPE] = ACTIONS(1141), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_TILDE] = ACTIONS(1141), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1143), - [anon_sym_LT_QMARK] = ACTIONS(1143), - [aux_sym__html_block_4_token1] = ACTIONS(1143), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1141), - [aux_sym__html_block_6_token1] = ACTIONS(1143), - [aux_sym__html_block_6_token2] = ACTIONS(1141), - [sym__open_tag_html_block] = ACTIONS(1141), - [sym__open_tag_html_block_newline] = ACTIONS(1141), - [sym__closing_tag_html_block] = ACTIONS(1141), - [sym__closing_tag_html_block_newline] = ACTIONS(1141), - [sym_backslash_escape] = ACTIONS(1141), - [sym_uri_autolink] = ACTIONS(1141), - [sym_email_autolink] = ACTIONS(1141), - [sym_entity_reference] = ACTIONS(1141), - [sym_numeric_character_reference] = ACTIONS(1141), - [sym__whitespace_ge_2] = ACTIONS(1141), - [aux_sym__whitespace_token1] = ACTIONS(1143), - [sym__word_no_digit] = ACTIONS(1141), - [sym__digits] = ACTIONS(1141), - [aux_sym__newline_token1] = ACTIONS(1141), - [sym__block_continuation] = ACTIONS(1441), - [sym__block_quote_start] = ACTIONS(1141), - [sym__indented_chunk_start] = ACTIONS(1141), - [sym_atx_h1_marker] = ACTIONS(1141), - [sym_atx_h2_marker] = ACTIONS(1141), - [sym_atx_h3_marker] = ACTIONS(1141), - [sym_atx_h4_marker] = ACTIONS(1141), - [sym_atx_h5_marker] = ACTIONS(1141), - [sym_atx_h6_marker] = ACTIONS(1141), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1141), - [sym__thematic_break] = ACTIONS(1141), - [sym__list_marker_minus] = ACTIONS(1141), - [sym__list_marker_plus] = ACTIONS(1141), - [sym__list_marker_star] = ACTIONS(1141), - [sym__list_marker_parenthesis] = ACTIONS(1141), - [sym__list_marker_dot] = ACTIONS(1141), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1141), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1141), - [sym__fenced_code_block_start_backtick] = ACTIONS(1141), - [sym__fenced_code_block_start_tilde] = ACTIONS(1141), - [sym__blank_line_start] = ACTIONS(1141), - [sym__code_span_start] = ACTIONS(1141), - [sym__last_token_whitespace] = ACTIONS(1441), - [sym__emphasis_open_star] = ACTIONS(1141), - [sym__emphasis_open_underscore] = ACTIONS(1141), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(764), + [aux_sym__html_block_1_token1] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(764), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_DOLLAR] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_SQUOTE] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_COMMA] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_DOT] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_COLON] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LT] = ACTIONS(766), + [anon_sym_EQ] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(764), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(764), + [anon_sym_BSLASH] = ACTIONS(766), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_CARET] = ACTIONS(764), + [anon_sym__] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(764), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(766), + [anon_sym_LT_QMARK] = ACTIONS(766), + [aux_sym__html_block_4_token1] = ACTIONS(766), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(764), + [aux_sym__html_block_6_token1] = ACTIONS(766), + [aux_sym__html_block_6_token2] = ACTIONS(764), + [sym__open_tag_html_block] = ACTIONS(764), + [sym__open_tag_html_block_newline] = ACTIONS(764), + [sym__closing_tag_html_block] = ACTIONS(764), + [sym__closing_tag_html_block_newline] = ACTIONS(764), + [sym_backslash_escape] = ACTIONS(764), + [sym_uri_autolink] = ACTIONS(764), + [sym_email_autolink] = ACTIONS(764), + [sym_entity_reference] = ACTIONS(764), + [sym_numeric_character_reference] = ACTIONS(764), + [sym__whitespace_ge_2] = ACTIONS(764), + [aux_sym__whitespace_token1] = ACTIONS(766), + [sym__word_no_digit] = ACTIONS(764), + [sym__digits] = ACTIONS(764), + [aux_sym__newline_token1] = ACTIONS(764), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(764), + [sym__indented_chunk_start] = ACTIONS(764), + [sym_atx_h1_marker] = ACTIONS(764), + [sym_atx_h2_marker] = ACTIONS(764), + [sym_atx_h3_marker] = ACTIONS(764), + [sym_atx_h4_marker] = ACTIONS(764), + [sym_atx_h5_marker] = ACTIONS(764), + [sym_atx_h6_marker] = ACTIONS(764), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(764), + [sym__thematic_break] = ACTIONS(764), + [sym__list_marker_minus] = ACTIONS(764), + [sym__list_marker_plus] = ACTIONS(764), + [sym__list_marker_star] = ACTIONS(764), + [sym__list_marker_parenthesis] = ACTIONS(764), + [sym__list_marker_dot] = ACTIONS(764), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(764), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(764), + [sym__list_marker_star_dont_interrupt] = ACTIONS(764), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(764), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(764), + [sym__fenced_code_block_start_backtick] = ACTIONS(764), + [sym__fenced_code_block_start_tilde] = ACTIONS(764), + [sym__blank_line_start] = ACTIONS(764), + [sym__code_span_start] = ACTIONS(764), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(764), + [sym__emphasis_open_underscore] = ACTIONS(764), }, [290] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1135), - [aux_sym__html_block_1_token1] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - [anon_sym_BQUOTE] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), - [anon_sym_LT_QMARK] = ACTIONS(1137), - [aux_sym__html_block_4_token1] = ACTIONS(1137), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1135), - [aux_sym__html_block_6_token1] = ACTIONS(1137), - [aux_sym__html_block_6_token2] = ACTIONS(1135), - [sym__open_tag_html_block] = ACTIONS(1135), - [sym__open_tag_html_block_newline] = ACTIONS(1135), - [sym__closing_tag_html_block] = ACTIONS(1135), - [sym__closing_tag_html_block_newline] = ACTIONS(1135), - [sym_backslash_escape] = ACTIONS(1135), - [sym_uri_autolink] = ACTIONS(1135), - [sym_email_autolink] = ACTIONS(1135), - [sym_entity_reference] = ACTIONS(1135), - [sym_numeric_character_reference] = ACTIONS(1135), - [sym__whitespace_ge_2] = ACTIONS(1135), - [aux_sym__whitespace_token1] = ACTIONS(1137), - [sym__word_no_digit] = ACTIONS(1135), - [sym__digits] = ACTIONS(1135), - [aux_sym__newline_token1] = ACTIONS(1135), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1135), - [sym__indented_chunk_start] = ACTIONS(1135), - [sym_atx_h1_marker] = ACTIONS(1135), - [sym_atx_h2_marker] = ACTIONS(1135), - [sym_atx_h3_marker] = ACTIONS(1135), - [sym_atx_h4_marker] = ACTIONS(1135), - [sym_atx_h5_marker] = ACTIONS(1135), - [sym_atx_h6_marker] = ACTIONS(1135), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1135), - [sym__thematic_break] = ACTIONS(1135), - [sym__list_marker_minus] = ACTIONS(1135), - [sym__list_marker_plus] = ACTIONS(1135), - [sym__list_marker_star] = ACTIONS(1135), - [sym__list_marker_parenthesis] = ACTIONS(1135), - [sym__list_marker_dot] = ACTIONS(1135), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1135), - [sym__fenced_code_block_start_backtick] = ACTIONS(1135), - [sym__fenced_code_block_start_tilde] = ACTIONS(1135), - [sym__blank_line_start] = ACTIONS(1135), - [sym__code_span_start] = ACTIONS(1135), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1135), - [sym__emphasis_open_underscore] = ACTIONS(1135), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(768), + [aux_sym__html_block_1_token1] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(768), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_DOLLAR] = ACTIONS(768), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_SQUOTE] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_DOT] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(768), + [anon_sym_COLON] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(768), + [anon_sym_LT] = ACTIONS(770), + [anon_sym_EQ] = ACTIONS(768), + [anon_sym_GT] = ACTIONS(768), + [anon_sym_QMARK] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_BSLASH] = ACTIONS(770), + [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym__] = ACTIONS(768), + [anon_sym_BQUOTE] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_TILDE] = ACTIONS(768), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(770), + [anon_sym_LT_QMARK] = ACTIONS(770), + [aux_sym__html_block_4_token1] = ACTIONS(770), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(768), + [aux_sym__html_block_6_token1] = ACTIONS(770), + [aux_sym__html_block_6_token2] = ACTIONS(768), + [sym__open_tag_html_block] = ACTIONS(768), + [sym__open_tag_html_block_newline] = ACTIONS(768), + [sym__closing_tag_html_block] = ACTIONS(768), + [sym__closing_tag_html_block_newline] = ACTIONS(768), + [sym_backslash_escape] = ACTIONS(768), + [sym_uri_autolink] = ACTIONS(768), + [sym_email_autolink] = ACTIONS(768), + [sym_entity_reference] = ACTIONS(768), + [sym_numeric_character_reference] = ACTIONS(768), + [sym__whitespace_ge_2] = ACTIONS(768), + [aux_sym__whitespace_token1] = ACTIONS(770), + [sym__word_no_digit] = ACTIONS(768), + [sym__digits] = ACTIONS(768), + [aux_sym__newline_token1] = ACTIONS(768), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(768), + [sym__indented_chunk_start] = ACTIONS(768), + [sym_atx_h1_marker] = ACTIONS(768), + [sym_atx_h2_marker] = ACTIONS(768), + [sym_atx_h3_marker] = ACTIONS(768), + [sym_atx_h4_marker] = ACTIONS(768), + [sym_atx_h5_marker] = ACTIONS(768), + [sym_atx_h6_marker] = ACTIONS(768), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(768), + [sym__thematic_break] = ACTIONS(768), + [sym__list_marker_minus] = ACTIONS(768), + [sym__list_marker_plus] = ACTIONS(768), + [sym__list_marker_star] = ACTIONS(768), + [sym__list_marker_parenthesis] = ACTIONS(768), + [sym__list_marker_dot] = ACTIONS(768), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(768), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(768), + [sym__list_marker_star_dont_interrupt] = ACTIONS(768), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(768), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(768), + [sym__fenced_code_block_start_backtick] = ACTIONS(768), + [sym__fenced_code_block_start_tilde] = ACTIONS(768), + [sym__blank_line_start] = ACTIONS(768), + [sym__code_span_start] = ACTIONS(768), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(768), + [sym__emphasis_open_underscore] = ACTIONS(768), }, [291] = { - [aux_sym__ignore_matching_tokens] = STATE(315), - [ts_builtin_sym_end] = ACTIONS(1135), - [aux_sym__html_block_1_token1] = ACTIONS(1135), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1135), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR] = ACTIONS(1135), - [anon_sym_PERCENT] = ACTIONS(1135), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_RPAREN] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_COMMA] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_DOT] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1135), - [anon_sym_COLON] = ACTIONS(1135), - [anon_sym_SEMI] = ACTIONS(1135), - [anon_sym_LT] = ACTIONS(1137), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_GT] = ACTIONS(1135), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1135), - [anon_sym_BSLASH] = ACTIONS(1137), - [anon_sym_RBRACK] = ACTIONS(1135), - [anon_sym_CARET] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - [anon_sym_BQUOTE] = ACTIONS(1135), - [anon_sym_LBRACE] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1135), - [anon_sym_RBRACE] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1135), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), - [anon_sym_LT_QMARK] = ACTIONS(1137), - [aux_sym__html_block_4_token1] = ACTIONS(1137), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1135), - [aux_sym__html_block_6_token1] = ACTIONS(1137), - [aux_sym__html_block_6_token2] = ACTIONS(1135), - [sym__open_tag_html_block] = ACTIONS(1135), - [sym__open_tag_html_block_newline] = ACTIONS(1135), - [sym__closing_tag_html_block] = ACTIONS(1135), - [sym__closing_tag_html_block_newline] = ACTIONS(1135), - [sym_backslash_escape] = ACTIONS(1135), - [sym_uri_autolink] = ACTIONS(1135), - [sym_email_autolink] = ACTIONS(1135), - [sym_entity_reference] = ACTIONS(1135), - [sym_numeric_character_reference] = ACTIONS(1135), - [sym__whitespace_ge_2] = ACTIONS(1135), - [aux_sym__whitespace_token1] = ACTIONS(1137), - [sym__word_no_digit] = ACTIONS(1135), - [sym__digits] = ACTIONS(1135), - [aux_sym__newline_token1] = ACTIONS(1135), - [sym__block_continuation] = ACTIONS(1443), - [sym__block_quote_start] = ACTIONS(1135), - [sym__indented_chunk_start] = ACTIONS(1135), - [sym_atx_h1_marker] = ACTIONS(1135), - [sym_atx_h2_marker] = ACTIONS(1135), - [sym_atx_h3_marker] = ACTIONS(1135), - [sym_atx_h4_marker] = ACTIONS(1135), - [sym_atx_h5_marker] = ACTIONS(1135), - [sym_atx_h6_marker] = ACTIONS(1135), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1135), - [sym__thematic_break] = ACTIONS(1135), - [sym__list_marker_minus] = ACTIONS(1135), - [sym__list_marker_plus] = ACTIONS(1135), - [sym__list_marker_star] = ACTIONS(1135), - [sym__list_marker_parenthesis] = ACTIONS(1135), - [sym__list_marker_dot] = ACTIONS(1135), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1135), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1135), - [sym__fenced_code_block_start_backtick] = ACTIONS(1135), - [sym__fenced_code_block_start_tilde] = ACTIONS(1135), - [sym__blank_line_start] = ACTIONS(1135), - [sym__code_span_start] = ACTIONS(1135), - [sym__last_token_whitespace] = ACTIONS(1443), - [sym__emphasis_open_star] = ACTIONS(1135), - [sym__emphasis_open_underscore] = ACTIONS(1135), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(772), + [aux_sym__html_block_1_token1] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(772), + [anon_sym_PERCENT] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(774), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_DOT] = ACTIONS(772), + [anon_sym_SLASH] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_EQ] = ACTIONS(772), + [anon_sym_GT] = ACTIONS(772), + [anon_sym_QMARK] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_BSLASH] = ACTIONS(774), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_CARET] = ACTIONS(772), + [anon_sym__] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(774), + [anon_sym_LT_QMARK] = ACTIONS(774), + [aux_sym__html_block_4_token1] = ACTIONS(774), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(772), + [aux_sym__html_block_6_token1] = ACTIONS(774), + [aux_sym__html_block_6_token2] = ACTIONS(772), + [sym__open_tag_html_block] = ACTIONS(772), + [sym__open_tag_html_block_newline] = ACTIONS(772), + [sym__closing_tag_html_block] = ACTIONS(772), + [sym__closing_tag_html_block_newline] = ACTIONS(772), + [sym_backslash_escape] = ACTIONS(772), + [sym_uri_autolink] = ACTIONS(772), + [sym_email_autolink] = ACTIONS(772), + [sym_entity_reference] = ACTIONS(772), + [sym_numeric_character_reference] = ACTIONS(772), + [sym__whitespace_ge_2] = ACTIONS(772), + [aux_sym__whitespace_token1] = ACTIONS(774), + [sym__word_no_digit] = ACTIONS(772), + [sym__digits] = ACTIONS(772), + [aux_sym__newline_token1] = ACTIONS(772), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(772), + [sym__indented_chunk_start] = ACTIONS(772), + [sym_atx_h1_marker] = ACTIONS(772), + [sym_atx_h2_marker] = ACTIONS(772), + [sym_atx_h3_marker] = ACTIONS(772), + [sym_atx_h4_marker] = ACTIONS(772), + [sym_atx_h5_marker] = ACTIONS(772), + [sym_atx_h6_marker] = ACTIONS(772), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(772), + [sym__thematic_break] = ACTIONS(772), + [sym__list_marker_minus] = ACTIONS(772), + [sym__list_marker_plus] = ACTIONS(772), + [sym__list_marker_star] = ACTIONS(772), + [sym__list_marker_parenthesis] = ACTIONS(772), + [sym__list_marker_dot] = ACTIONS(772), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(772), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(772), + [sym__list_marker_star_dont_interrupt] = ACTIONS(772), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(772), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(772), + [sym__fenced_code_block_start_backtick] = ACTIONS(772), + [sym__fenced_code_block_start_tilde] = ACTIONS(772), + [sym__blank_line_start] = ACTIONS(772), + [sym__code_span_start] = ACTIONS(772), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(772), + [sym__emphasis_open_underscore] = ACTIONS(772), }, [292] = { - [aux_sym__ignore_matching_tokens] = STATE(173), - [ts_builtin_sym_end] = ACTIONS(944), - [aux_sym__html_block_1_token1] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(944), - [anon_sym_PERCENT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_COLON] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_QMARK] = ACTIONS(944), - [anon_sym_AT] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_BSLASH] = ACTIONS(946), - [anon_sym_RBRACK] = ACTIONS(944), - [anon_sym_CARET] = ACTIONS(944), - [anon_sym__] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(944), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(946), - [anon_sym_LT_QMARK] = ACTIONS(946), - [aux_sym__html_block_4_token1] = ACTIONS(946), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(944), - [aux_sym__html_block_6_token1] = ACTIONS(946), - [aux_sym__html_block_6_token2] = ACTIONS(944), - [sym__open_tag_html_block] = ACTIONS(944), - [sym__open_tag_html_block_newline] = ACTIONS(944), - [sym__closing_tag_html_block] = ACTIONS(944), - [sym__closing_tag_html_block_newline] = ACTIONS(944), - [sym_backslash_escape] = ACTIONS(944), - [sym_uri_autolink] = ACTIONS(944), - [sym_email_autolink] = ACTIONS(944), - [sym_entity_reference] = ACTIONS(944), - [sym_numeric_character_reference] = ACTIONS(944), - [sym__whitespace_ge_2] = ACTIONS(944), - [aux_sym__whitespace_token1] = ACTIONS(946), - [sym__word_no_digit] = ACTIONS(944), - [sym__digits] = ACTIONS(944), - [aux_sym__newline_token1] = ACTIONS(944), - [sym__block_continuation] = ACTIONS(1445), - [sym__block_quote_start] = ACTIONS(944), - [sym__indented_chunk_start] = ACTIONS(944), - [sym_atx_h1_marker] = ACTIONS(944), - [sym_atx_h2_marker] = ACTIONS(944), - [sym_atx_h3_marker] = ACTIONS(944), - [sym_atx_h4_marker] = ACTIONS(944), - [sym_atx_h5_marker] = ACTIONS(944), - [sym_atx_h6_marker] = ACTIONS(944), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(944), - [sym__thematic_break] = ACTIONS(944), - [sym__list_marker_minus] = ACTIONS(944), - [sym__list_marker_plus] = ACTIONS(944), - [sym__list_marker_star] = ACTIONS(944), - [sym__list_marker_parenthesis] = ACTIONS(944), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(944), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(944), - [sym__list_marker_star_dont_interrupt] = ACTIONS(944), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(944), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(944), - [sym__fenced_code_block_start_tilde] = ACTIONS(944), - [sym__blank_line_start] = ACTIONS(944), - [sym__code_span_start] = ACTIONS(944), - [sym__last_token_whitespace] = ACTIONS(1445), - [sym__emphasis_open_star] = ACTIONS(944), - [sym__emphasis_open_underscore] = ACTIONS(944), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(776), + [aux_sym__html_block_1_token1] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_POUND] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(776), + [anon_sym_PERCENT] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(778), + [anon_sym_SQUOTE] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_COMMA] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_DOT] = ACTIONS(776), + [anon_sym_SLASH] = ACTIONS(776), + [anon_sym_COLON] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(776), + [anon_sym_GT] = ACTIONS(776), + [anon_sym_QMARK] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_BSLASH] = ACTIONS(778), + [anon_sym_RBRACK] = ACTIONS(776), + [anon_sym_CARET] = ACTIONS(776), + [anon_sym__] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_TILDE] = ACTIONS(776), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(778), + [anon_sym_LT_QMARK] = ACTIONS(778), + [aux_sym__html_block_4_token1] = ACTIONS(778), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(776), + [aux_sym__html_block_6_token1] = ACTIONS(778), + [aux_sym__html_block_6_token2] = ACTIONS(776), + [sym__open_tag_html_block] = ACTIONS(776), + [sym__open_tag_html_block_newline] = ACTIONS(776), + [sym__closing_tag_html_block] = ACTIONS(776), + [sym__closing_tag_html_block_newline] = ACTIONS(776), + [sym_backslash_escape] = ACTIONS(776), + [sym_uri_autolink] = ACTIONS(776), + [sym_email_autolink] = ACTIONS(776), + [sym_entity_reference] = ACTIONS(776), + [sym_numeric_character_reference] = ACTIONS(776), + [sym__whitespace_ge_2] = ACTIONS(776), + [aux_sym__whitespace_token1] = ACTIONS(778), + [sym__word_no_digit] = ACTIONS(776), + [sym__digits] = ACTIONS(776), + [aux_sym__newline_token1] = ACTIONS(776), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(776), + [sym__indented_chunk_start] = ACTIONS(776), + [sym_atx_h1_marker] = ACTIONS(776), + [sym_atx_h2_marker] = ACTIONS(776), + [sym_atx_h3_marker] = ACTIONS(776), + [sym_atx_h4_marker] = ACTIONS(776), + [sym_atx_h5_marker] = ACTIONS(776), + [sym_atx_h6_marker] = ACTIONS(776), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(776), + [sym__thematic_break] = ACTIONS(776), + [sym__list_marker_minus] = ACTIONS(776), + [sym__list_marker_plus] = ACTIONS(776), + [sym__list_marker_star] = ACTIONS(776), + [sym__list_marker_parenthesis] = ACTIONS(776), + [sym__list_marker_dot] = ACTIONS(776), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(776), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), + [sym__list_marker_star_dont_interrupt] = ACTIONS(776), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(776), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(776), + [sym__fenced_code_block_start_backtick] = ACTIONS(776), + [sym__fenced_code_block_start_tilde] = ACTIONS(776), + [sym__blank_line_start] = ACTIONS(776), + [sym__code_span_start] = ACTIONS(776), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(776), + [sym__emphasis_open_underscore] = ACTIONS(776), }, [293] = { - [sym__blank_line] = STATE(239), - [sym__indented_chunk] = STATE(239), - [aux_sym_indented_code_block_repeat1] = STATE(239), - [aux_sym__html_block_1_token1] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(746), - [anon_sym_POUND] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(746), - [anon_sym_PERCENT] = ACTIONS(746), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(746), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_COMMA] = ACTIONS(746), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_COLON] = ACTIONS(746), - [anon_sym_SEMI] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(748), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_QMARK] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(746), - [anon_sym_BSLASH] = ACTIONS(748), - [anon_sym_RBRACK] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(746), - [anon_sym__] = ACTIONS(746), - [anon_sym_BQUOTE] = ACTIONS(746), - [anon_sym_LBRACE] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(746), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(748), - [anon_sym_LT_QMARK] = ACTIONS(748), - [aux_sym__html_block_4_token1] = ACTIONS(748), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(746), - [aux_sym__html_block_6_token1] = ACTIONS(748), - [aux_sym__html_block_6_token2] = ACTIONS(746), - [sym__open_tag_html_block] = ACTIONS(746), - [sym__open_tag_html_block_newline] = ACTIONS(746), - [sym__closing_tag_html_block] = ACTIONS(746), - [sym__closing_tag_html_block_newline] = ACTIONS(746), - [sym_backslash_escape] = ACTIONS(746), - [sym_uri_autolink] = ACTIONS(746), - [sym_email_autolink] = ACTIONS(746), - [sym_entity_reference] = ACTIONS(746), - [sym_numeric_character_reference] = ACTIONS(746), - [sym__whitespace_ge_2] = ACTIONS(746), - [aux_sym__whitespace_token1] = ACTIONS(748), - [sym__word_no_digit] = ACTIONS(746), - [sym__digits] = ACTIONS(746), - [aux_sym__newline_token1] = ACTIONS(746), - [sym__block_close] = ACTIONS(746), - [sym__block_quote_start] = ACTIONS(746), - [sym__indented_chunk_start] = ACTIONS(101), - [sym_atx_h1_marker] = ACTIONS(746), - [sym_atx_h2_marker] = ACTIONS(746), - [sym_atx_h3_marker] = ACTIONS(746), - [sym_atx_h4_marker] = ACTIONS(746), - [sym_atx_h5_marker] = ACTIONS(746), - [sym_atx_h6_marker] = ACTIONS(746), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(746), - [sym__thematic_break] = ACTIONS(746), - [sym__list_marker_minus] = ACTIONS(746), - [sym__list_marker_plus] = ACTIONS(746), - [sym__list_marker_star] = ACTIONS(746), - [sym__list_marker_parenthesis] = ACTIONS(746), - [sym__list_marker_dot] = ACTIONS(746), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(746), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(746), - [sym__list_marker_star_dont_interrupt] = ACTIONS(746), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(746), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(746), - [sym__fenced_code_block_start_backtick] = ACTIONS(746), - [sym__fenced_code_block_start_tilde] = ACTIONS(746), - [sym__blank_line_start] = ACTIONS(111), - [sym__code_span_start] = ACTIONS(746), - [sym__emphasis_open_star] = ACTIONS(746), - [sym__emphasis_open_underscore] = ACTIONS(746), + [sym__blank_line] = STATE(170), + [sym__indented_chunk] = STATE(170), + [aux_sym_indented_code_block_repeat1] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(1233), + [aux_sym__html_block_1_token1] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_PERCENT] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_COLON] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_BSLASH] = ACTIONS(1235), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym__] = ACTIONS(1233), + [anon_sym_BQUOTE] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1235), + [anon_sym_LT_QMARK] = ACTIONS(1235), + [aux_sym__html_block_4_token1] = ACTIONS(1235), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1233), + [aux_sym__html_block_6_token1] = ACTIONS(1235), + [aux_sym__html_block_6_token2] = ACTIONS(1233), + [sym__open_tag_html_block] = ACTIONS(1233), + [sym__open_tag_html_block_newline] = ACTIONS(1233), + [sym__closing_tag_html_block] = ACTIONS(1233), + [sym__closing_tag_html_block_newline] = ACTIONS(1233), + [sym_backslash_escape] = ACTIONS(1233), + [sym_uri_autolink] = ACTIONS(1233), + [sym_email_autolink] = ACTIONS(1233), + [sym_entity_reference] = ACTIONS(1233), + [sym_numeric_character_reference] = ACTIONS(1233), + [sym__whitespace_ge_2] = ACTIONS(1233), + [aux_sym__whitespace_token1] = ACTIONS(1235), + [sym__word_no_digit] = ACTIONS(1233), + [sym__digits] = ACTIONS(1233), + [aux_sym__newline_token1] = ACTIONS(1233), + [sym__block_quote_start] = ACTIONS(1233), + [sym__indented_chunk_start] = ACTIONS(47), + [sym_atx_h1_marker] = ACTIONS(1233), + [sym_atx_h2_marker] = ACTIONS(1233), + [sym_atx_h3_marker] = ACTIONS(1233), + [sym_atx_h4_marker] = ACTIONS(1233), + [sym_atx_h5_marker] = ACTIONS(1233), + [sym_atx_h6_marker] = ACTIONS(1233), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1233), + [sym__thematic_break] = ACTIONS(1233), + [sym__list_marker_minus] = ACTIONS(1233), + [sym__list_marker_plus] = ACTIONS(1233), + [sym__list_marker_star] = ACTIONS(1233), + [sym__list_marker_parenthesis] = ACTIONS(1233), + [sym__list_marker_dot] = ACTIONS(1233), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1233), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), + [sym__fenced_code_block_start_backtick] = ACTIONS(1233), + [sym__fenced_code_block_start_tilde] = ACTIONS(1233), + [sym__blank_line_start] = ACTIONS(67), + [sym__code_span_start] = ACTIONS(1233), + [sym__emphasis_open_star] = ACTIONS(1233), + [sym__emphasis_open_underscore] = ACTIONS(1233), }, [294] = { - [aux_sym__ignore_matching_tokens] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(1018), - [aux_sym__html_block_1_token1] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_PERCENT] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_DOT] = ACTIONS(1018), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_COLON] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_LT] = ACTIONS(1020), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_AT] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_BSLASH] = ACTIONS(1020), - [anon_sym_RBRACK] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1018), - [anon_sym__] = ACTIONS(1018), - [anon_sym_BQUOTE] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1018), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1020), - [anon_sym_LT_QMARK] = ACTIONS(1020), - [aux_sym__html_block_4_token1] = ACTIONS(1020), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1018), - [aux_sym__html_block_6_token1] = ACTIONS(1020), - [aux_sym__html_block_6_token2] = ACTIONS(1018), - [sym__open_tag_html_block] = ACTIONS(1018), - [sym__open_tag_html_block_newline] = ACTIONS(1018), - [sym__closing_tag_html_block] = ACTIONS(1018), - [sym__closing_tag_html_block_newline] = ACTIONS(1018), - [sym_backslash_escape] = ACTIONS(1018), - [sym_uri_autolink] = ACTIONS(1018), - [sym_email_autolink] = ACTIONS(1018), - [sym_entity_reference] = ACTIONS(1018), - [sym_numeric_character_reference] = ACTIONS(1018), - [sym__whitespace_ge_2] = ACTIONS(1018), - [aux_sym__whitespace_token1] = ACTIONS(1020), - [sym__word_no_digit] = ACTIONS(1018), - [sym__digits] = ACTIONS(1018), - [aux_sym__newline_token1] = ACTIONS(1018), - [sym__block_continuation] = ACTIONS(1447), - [sym__block_quote_start] = ACTIONS(1018), - [sym__indented_chunk_start] = ACTIONS(1018), - [sym_atx_h1_marker] = ACTIONS(1018), - [sym_atx_h2_marker] = ACTIONS(1018), - [sym_atx_h3_marker] = ACTIONS(1018), - [sym_atx_h4_marker] = ACTIONS(1018), - [sym_atx_h5_marker] = ACTIONS(1018), - [sym_atx_h6_marker] = ACTIONS(1018), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1018), - [sym__thematic_break] = ACTIONS(1018), - [sym__list_marker_minus] = ACTIONS(1018), - [sym__list_marker_plus] = ACTIONS(1018), - [sym__list_marker_star] = ACTIONS(1018), - [sym__list_marker_parenthesis] = ACTIONS(1018), - [sym__list_marker_dot] = ACTIONS(1018), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1018), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1018), - [sym__fenced_code_block_start_backtick] = ACTIONS(1018), - [sym__fenced_code_block_start_tilde] = ACTIONS(1018), - [sym__blank_line_start] = ACTIONS(1018), - [sym__code_span_start] = ACTIONS(1018), - [sym__last_token_whitespace] = ACTIONS(1447), - [sym__emphasis_open_star] = ACTIONS(1018), - [sym__emphasis_open_underscore] = ACTIONS(1018), + [aux_sym__ignore_matching_tokens] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(1029), + [aux_sym__html_block_1_token1] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_AT] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_BSLASH] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym__] = ACTIONS(1029), + [anon_sym_BQUOTE] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1031), + [anon_sym_LT_QMARK] = ACTIONS(1031), + [aux_sym__html_block_4_token1] = ACTIONS(1031), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1029), + [aux_sym__html_block_6_token1] = ACTIONS(1031), + [aux_sym__html_block_6_token2] = ACTIONS(1029), + [sym__open_tag_html_block] = ACTIONS(1029), + [sym__open_tag_html_block_newline] = ACTIONS(1029), + [sym__closing_tag_html_block] = ACTIONS(1029), + [sym__closing_tag_html_block_newline] = ACTIONS(1029), + [sym_backslash_escape] = ACTIONS(1029), + [sym_uri_autolink] = ACTIONS(1029), + [sym_email_autolink] = ACTIONS(1029), + [sym_entity_reference] = ACTIONS(1029), + [sym_numeric_character_reference] = ACTIONS(1029), + [sym__whitespace_ge_2] = ACTIONS(1029), + [aux_sym__whitespace_token1] = ACTIONS(1031), + [sym__word_no_digit] = ACTIONS(1029), + [sym__digits] = ACTIONS(1029), + [aux_sym__newline_token1] = ACTIONS(1029), + [sym__block_continuation] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1029), + [sym__indented_chunk_start] = ACTIONS(1029), + [sym_atx_h1_marker] = ACTIONS(1029), + [sym_atx_h2_marker] = ACTIONS(1029), + [sym_atx_h3_marker] = ACTIONS(1029), + [sym_atx_h4_marker] = ACTIONS(1029), + [sym_atx_h5_marker] = ACTIONS(1029), + [sym_atx_h6_marker] = ACTIONS(1029), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1029), + [sym__thematic_break] = ACTIONS(1029), + [sym__list_marker_minus] = ACTIONS(1029), + [sym__list_marker_plus] = ACTIONS(1029), + [sym__list_marker_star] = ACTIONS(1029), + [sym__list_marker_parenthesis] = ACTIONS(1029), + [sym__list_marker_dot] = ACTIONS(1029), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1029), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1029), + [sym__fenced_code_block_start_backtick] = ACTIONS(1029), + [sym__fenced_code_block_start_tilde] = ACTIONS(1029), + [sym__blank_line_start] = ACTIONS(1029), + [sym__code_span_start] = ACTIONS(1029), + [sym__last_token_whitespace] = ACTIONS(1442), + [sym__emphasis_open_star] = ACTIONS(1029), + [sym__emphasis_open_underscore] = ACTIONS(1029), }, [295] = { - [aux_sym__ignore_matching_tokens] = STATE(175), - [ts_builtin_sym_end] = ACTIONS(954), - [aux_sym__html_block_1_token1] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_COMMA] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_COLON] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(954), - [anon_sym_AT] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_BSLASH] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym__] = ACTIONS(954), - [anon_sym_BQUOTE] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(956), - [anon_sym_LT_QMARK] = ACTIONS(956), - [aux_sym__html_block_4_token1] = ACTIONS(956), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(954), - [aux_sym__html_block_6_token1] = ACTIONS(956), - [aux_sym__html_block_6_token2] = ACTIONS(954), - [sym__open_tag_html_block] = ACTIONS(954), - [sym__open_tag_html_block_newline] = ACTIONS(954), - [sym__closing_tag_html_block] = ACTIONS(954), - [sym__closing_tag_html_block_newline] = ACTIONS(954), - [sym_backslash_escape] = ACTIONS(954), - [sym_uri_autolink] = ACTIONS(954), - [sym_email_autolink] = ACTIONS(954), - [sym_entity_reference] = ACTIONS(954), - [sym_numeric_character_reference] = ACTIONS(954), - [sym__whitespace_ge_2] = ACTIONS(954), - [aux_sym__whitespace_token1] = ACTIONS(956), - [sym__word_no_digit] = ACTIONS(954), - [sym__digits] = ACTIONS(954), - [aux_sym__newline_token1] = ACTIONS(954), - [sym__block_continuation] = ACTIONS(1449), - [sym__block_quote_start] = ACTIONS(954), - [sym__indented_chunk_start] = ACTIONS(954), - [sym_atx_h1_marker] = ACTIONS(954), - [sym_atx_h2_marker] = ACTIONS(954), - [sym_atx_h3_marker] = ACTIONS(954), - [sym_atx_h4_marker] = ACTIONS(954), - [sym_atx_h5_marker] = ACTIONS(954), - [sym_atx_h6_marker] = ACTIONS(954), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(954), - [sym__thematic_break] = ACTIONS(954), - [sym__list_marker_minus] = ACTIONS(954), - [sym__list_marker_plus] = ACTIONS(954), - [sym__list_marker_star] = ACTIONS(954), - [sym__list_marker_parenthesis] = ACTIONS(954), - [sym__list_marker_dot] = ACTIONS(954), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(954), - [sym__list_marker_star_dont_interrupt] = ACTIONS(954), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(954), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(954), - [sym__fenced_code_block_start_backtick] = ACTIONS(954), - [sym__fenced_code_block_start_tilde] = ACTIONS(954), - [sym__blank_line_start] = ACTIONS(954), - [sym__code_span_start] = ACTIONS(954), - [sym__last_token_whitespace] = ACTIONS(1449), - [sym__emphasis_open_star] = ACTIONS(954), - [sym__emphasis_open_underscore] = ACTIONS(954), + [sym_link_title] = STATE(2169), + [sym__whitespace] = STATE(2060), + [ts_builtin_sym_end] = ACTIONS(786), + [aux_sym__html_block_1_token1] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(788), + [anon_sym_POUND] = ACTIONS(786), + [anon_sym_DOLLAR] = ACTIONS(786), + [anon_sym_PERCENT] = ACTIONS(786), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_SQUOTE] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(786), + [anon_sym_COMMA] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [anon_sym_SLASH] = ACTIONS(786), + [anon_sym_COLON] = ACTIONS(786), + [anon_sym_SEMI] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(786), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_QMARK] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_BSLASH] = ACTIONS(791), + [anon_sym_RBRACK] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(786), + [anon_sym__] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_TILDE] = ACTIONS(786), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(791), + [anon_sym_LT_QMARK] = ACTIONS(791), + [aux_sym__html_block_4_token1] = ACTIONS(791), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(786), + [aux_sym__html_block_6_token1] = ACTIONS(791), + [aux_sym__html_block_6_token2] = ACTIONS(786), + [sym__open_tag_html_block] = ACTIONS(786), + [sym__open_tag_html_block_newline] = ACTIONS(786), + [sym__closing_tag_html_block] = ACTIONS(786), + [sym__closing_tag_html_block_newline] = ACTIONS(786), + [sym_backslash_escape] = ACTIONS(786), + [sym_uri_autolink] = ACTIONS(786), + [sym_email_autolink] = ACTIONS(786), + [sym_entity_reference] = ACTIONS(786), + [sym_numeric_character_reference] = ACTIONS(786), + [sym__whitespace_ge_2] = ACTIONS(799), + [aux_sym__whitespace_token1] = ACTIONS(802), + [sym__word_no_digit] = ACTIONS(786), + [sym__digits] = ACTIONS(786), + [aux_sym__newline_token1] = ACTIONS(786), + [sym__block_quote_start] = ACTIONS(786), + [sym__indented_chunk_start] = ACTIONS(786), + [sym_atx_h1_marker] = ACTIONS(786), + [sym_atx_h2_marker] = ACTIONS(786), + [sym_atx_h3_marker] = ACTIONS(786), + [sym_atx_h4_marker] = ACTIONS(786), + [sym_atx_h5_marker] = ACTIONS(786), + [sym_atx_h6_marker] = ACTIONS(786), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(786), + [sym__thematic_break] = ACTIONS(786), + [sym__list_marker_minus] = ACTIONS(786), + [sym__list_marker_plus] = ACTIONS(786), + [sym__list_marker_star] = ACTIONS(786), + [sym__list_marker_parenthesis] = ACTIONS(786), + [sym__list_marker_dot] = ACTIONS(786), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(786), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(786), + [sym__list_marker_star_dont_interrupt] = ACTIONS(786), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(786), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(786), + [sym__fenced_code_block_start_backtick] = ACTIONS(786), + [sym__fenced_code_block_start_tilde] = ACTIONS(786), + [sym__blank_line_start] = ACTIONS(786), + [sym__code_span_start] = ACTIONS(786), + [sym__emphasis_open_star] = ACTIONS(786), + [sym__emphasis_open_underscore] = ACTIONS(786), + [sym__no_indented_chunk] = ACTIONS(1444), }, [296] = { - [aux_sym__ignore_matching_tokens] = STATE(263), + [aux_sym__ignore_matching_tokens] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(1047), + [aux_sym__html_block_1_token1] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PERCENT] = ACTIONS(1047), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_BSLASH] = ACTIONS(1049), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1047), + [anon_sym_BQUOTE] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_TILDE] = ACTIONS(1047), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1049), + [anon_sym_LT_QMARK] = ACTIONS(1049), + [aux_sym__html_block_4_token1] = ACTIONS(1049), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1047), + [aux_sym__html_block_6_token1] = ACTIONS(1049), + [aux_sym__html_block_6_token2] = ACTIONS(1047), + [sym__open_tag_html_block] = ACTIONS(1047), + [sym__open_tag_html_block_newline] = ACTIONS(1047), + [sym__closing_tag_html_block] = ACTIONS(1047), + [sym__closing_tag_html_block_newline] = ACTIONS(1047), + [sym_backslash_escape] = ACTIONS(1047), + [sym_uri_autolink] = ACTIONS(1047), + [sym_email_autolink] = ACTIONS(1047), + [sym_entity_reference] = ACTIONS(1047), + [sym_numeric_character_reference] = ACTIONS(1047), + [sym__whitespace_ge_2] = ACTIONS(1047), + [aux_sym__whitespace_token1] = ACTIONS(1049), + [sym__word_no_digit] = ACTIONS(1047), + [sym__digits] = ACTIONS(1047), + [aux_sym__newline_token1] = ACTIONS(1047), + [sym__block_continuation] = ACTIONS(1446), + [sym__block_quote_start] = ACTIONS(1047), + [sym__indented_chunk_start] = ACTIONS(1047), + [sym_atx_h1_marker] = ACTIONS(1047), + [sym_atx_h2_marker] = ACTIONS(1047), + [sym_atx_h3_marker] = ACTIONS(1047), + [sym_atx_h4_marker] = ACTIONS(1047), + [sym_atx_h5_marker] = ACTIONS(1047), + [sym_atx_h6_marker] = ACTIONS(1047), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1047), + [sym__thematic_break] = ACTIONS(1047), + [sym__list_marker_minus] = ACTIONS(1047), + [sym__list_marker_plus] = ACTIONS(1047), + [sym__list_marker_star] = ACTIONS(1047), + [sym__list_marker_parenthesis] = ACTIONS(1047), + [sym__list_marker_dot] = ACTIONS(1047), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1047), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1047), + [sym__fenced_code_block_start_backtick] = ACTIONS(1047), + [sym__fenced_code_block_start_tilde] = ACTIONS(1047), + [sym__blank_line_start] = ACTIONS(1047), + [sym__code_span_start] = ACTIONS(1047), + [sym__last_token_whitespace] = ACTIONS(1446), + [sym__emphasis_open_star] = ACTIONS(1047), + [sym__emphasis_open_underscore] = ACTIONS(1047), + }, + [297] = { + [sym_shortcut_link] = STATE(249), + [sym_full_reference_link] = STATE(249), + [sym_collapsed_reference_link] = STATE(249), + [sym_inline_link] = STATE(249), + [sym_image] = STATE(249), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym__soft_line_break] = STATE(249), + [sym_hard_line_break] = STATE(249), + [sym_html_tag] = STATE(249), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(249), + [sym__word] = STATE(249), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore] = STATE(249), + [aux_sym__inline_no_underscore] = STATE(249), + [sym__text_inline_no_underscore] = STATE(249), + [sym__emphasis_star] = STATE(744), + [sym__strong_emphasis_star] = STATE(249), + [sym__emphasis_underscore] = STATE(744), + [sym__strong_emphasis_underscore] = STATE(249), + [sym__code_span] = STATE(249), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_BSLASH] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(640), + [anon_sym_LT_QMARK] = ACTIONS(642), + [aux_sym__html_block_4_token1] = ACTIONS(644), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(646), + [sym_backslash_escape] = ACTIONS(648), + [sym_uri_autolink] = ACTIONS(648), + [sym_email_autolink] = ACTIONS(648), + [sym_entity_reference] = ACTIONS(648), + [sym_numeric_character_reference] = ACTIONS(648), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(648), + [sym__digits] = ACTIONS(648), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(654), + [sym__emphasis_open_star] = ACTIONS(656), + [sym__emphasis_open_underscore] = ACTIONS(658), + [sym__emphasis_close_underscore] = ACTIONS(1448), + }, + [298] = { + [aux_sym__ignore_matching_tokens] = STATE(275), + [ts_builtin_sym_end] = ACTIONS(807), + [aux_sym__html_block_1_token1] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_PERCENT] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [anon_sym__] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(807), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(809), + [anon_sym_LT_QMARK] = ACTIONS(809), + [aux_sym__html_block_4_token1] = ACTIONS(809), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(807), + [aux_sym__html_block_6_token1] = ACTIONS(809), + [aux_sym__html_block_6_token2] = ACTIONS(807), + [sym__open_tag_html_block] = ACTIONS(807), + [sym__open_tag_html_block_newline] = ACTIONS(807), + [sym__closing_tag_html_block] = ACTIONS(807), + [sym__closing_tag_html_block_newline] = ACTIONS(807), + [sym_backslash_escape] = ACTIONS(807), + [sym_uri_autolink] = ACTIONS(807), + [sym_email_autolink] = ACTIONS(807), + [sym_entity_reference] = ACTIONS(807), + [sym_numeric_character_reference] = ACTIONS(807), + [sym__whitespace_ge_2] = ACTIONS(807), + [aux_sym__whitespace_token1] = ACTIONS(809), + [sym__word_no_digit] = ACTIONS(807), + [sym__digits] = ACTIONS(807), + [aux_sym__newline_token1] = ACTIONS(807), + [sym__block_continuation] = ACTIONS(1450), + [sym__block_quote_start] = ACTIONS(807), + [sym__indented_chunk_start] = ACTIONS(807), + [sym_atx_h1_marker] = ACTIONS(807), + [sym_atx_h2_marker] = ACTIONS(807), + [sym_atx_h3_marker] = ACTIONS(807), + [sym_atx_h4_marker] = ACTIONS(807), + [sym_atx_h5_marker] = ACTIONS(807), + [sym_atx_h6_marker] = ACTIONS(807), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(807), + [sym__thematic_break] = ACTIONS(807), + [sym__list_marker_minus] = ACTIONS(807), + [sym__list_marker_plus] = ACTIONS(807), + [sym__list_marker_star] = ACTIONS(807), + [sym__list_marker_parenthesis] = ACTIONS(807), + [sym__list_marker_dot] = ACTIONS(807), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_star_dont_interrupt] = ACTIONS(807), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(807), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(807), + [sym__fenced_code_block_start_backtick] = ACTIONS(807), + [sym__fenced_code_block_start_tilde] = ACTIONS(807), + [sym__blank_line_start] = ACTIONS(807), + [sym__code_span_start] = ACTIONS(807), + [sym__last_token_whitespace] = ACTIONS(1450), + [sym__emphasis_open_star] = ACTIONS(807), + [sym__emphasis_open_underscore] = ACTIONS(807), + }, + [299] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(807), + [aux_sym__html_block_1_token1] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_DQUOTE] = ACTIONS(807), + [anon_sym_POUND] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(807), + [anon_sym_PERCENT] = ACTIONS(807), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SQUOTE] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_RPAREN] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_SEMI] = ACTIONS(807), + [anon_sym_LT] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(807), + [anon_sym_BSLASH] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(807), + [anon_sym__] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(807), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(809), + [anon_sym_LT_QMARK] = ACTIONS(809), + [aux_sym__html_block_4_token1] = ACTIONS(809), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(807), + [aux_sym__html_block_6_token1] = ACTIONS(809), + [aux_sym__html_block_6_token2] = ACTIONS(807), + [sym__open_tag_html_block] = ACTIONS(807), + [sym__open_tag_html_block_newline] = ACTIONS(807), + [sym__closing_tag_html_block] = ACTIONS(807), + [sym__closing_tag_html_block_newline] = ACTIONS(807), + [sym_backslash_escape] = ACTIONS(807), + [sym_uri_autolink] = ACTIONS(807), + [sym_email_autolink] = ACTIONS(807), + [sym_entity_reference] = ACTIONS(807), + [sym_numeric_character_reference] = ACTIONS(807), + [sym__whitespace_ge_2] = ACTIONS(807), + [aux_sym__whitespace_token1] = ACTIONS(809), + [sym__word_no_digit] = ACTIONS(807), + [sym__digits] = ACTIONS(807), + [aux_sym__newline_token1] = ACTIONS(807), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(807), + [sym__indented_chunk_start] = ACTIONS(807), + [sym_atx_h1_marker] = ACTIONS(807), + [sym_atx_h2_marker] = ACTIONS(807), + [sym_atx_h3_marker] = ACTIONS(807), + [sym_atx_h4_marker] = ACTIONS(807), + [sym_atx_h5_marker] = ACTIONS(807), + [sym_atx_h6_marker] = ACTIONS(807), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(807), + [sym__thematic_break] = ACTIONS(807), + [sym__list_marker_minus] = ACTIONS(807), + [sym__list_marker_plus] = ACTIONS(807), + [sym__list_marker_star] = ACTIONS(807), + [sym__list_marker_parenthesis] = ACTIONS(807), + [sym__list_marker_dot] = ACTIONS(807), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(807), + [sym__list_marker_star_dont_interrupt] = ACTIONS(807), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(807), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(807), + [sym__fenced_code_block_start_backtick] = ACTIONS(807), + [sym__fenced_code_block_start_tilde] = ACTIONS(807), + [sym__blank_line_start] = ACTIONS(807), + [sym__code_span_start] = ACTIONS(807), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(807), + [sym__emphasis_open_underscore] = ACTIONS(807), + }, + [300] = { + [aux_sym__ignore_matching_tokens] = STATE(276), + [ts_builtin_sym_end] = ACTIONS(813), + [aux_sym__html_block_1_token1] = ACTIONS(813), + [anon_sym_BANG] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_POUND] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_QMARK] = ACTIONS(813), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(813), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym__] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(815), + [anon_sym_LT_QMARK] = ACTIONS(815), + [aux_sym__html_block_4_token1] = ACTIONS(815), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(813), + [aux_sym__html_block_6_token1] = ACTIONS(815), + [aux_sym__html_block_6_token2] = ACTIONS(813), + [sym__open_tag_html_block] = ACTIONS(813), + [sym__open_tag_html_block_newline] = ACTIONS(813), + [sym__closing_tag_html_block] = ACTIONS(813), + [sym__closing_tag_html_block_newline] = ACTIONS(813), + [sym_backslash_escape] = ACTIONS(813), + [sym_uri_autolink] = ACTIONS(813), + [sym_email_autolink] = ACTIONS(813), + [sym_entity_reference] = ACTIONS(813), + [sym_numeric_character_reference] = ACTIONS(813), + [sym__whitespace_ge_2] = ACTIONS(813), + [aux_sym__whitespace_token1] = ACTIONS(815), + [sym__word_no_digit] = ACTIONS(813), + [sym__digits] = ACTIONS(813), + [aux_sym__newline_token1] = ACTIONS(813), + [sym__block_continuation] = ACTIONS(1452), + [sym__block_quote_start] = ACTIONS(813), + [sym__indented_chunk_start] = ACTIONS(813), + [sym_atx_h1_marker] = ACTIONS(813), + [sym_atx_h2_marker] = ACTIONS(813), + [sym_atx_h3_marker] = ACTIONS(813), + [sym_atx_h4_marker] = ACTIONS(813), + [sym_atx_h5_marker] = ACTIONS(813), + [sym_atx_h6_marker] = ACTIONS(813), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(813), + [sym__thematic_break] = ACTIONS(813), + [sym__list_marker_minus] = ACTIONS(813), + [sym__list_marker_plus] = ACTIONS(813), + [sym__list_marker_star] = ACTIONS(813), + [sym__list_marker_parenthesis] = ACTIONS(813), + [sym__list_marker_dot] = ACTIONS(813), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_star_dont_interrupt] = ACTIONS(813), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(813), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(813), + [sym__fenced_code_block_start_backtick] = ACTIONS(813), + [sym__fenced_code_block_start_tilde] = ACTIONS(813), + [sym__blank_line_start] = ACTIONS(813), + [sym__code_span_start] = ACTIONS(813), + [sym__last_token_whitespace] = ACTIONS(1452), + [sym__emphasis_open_star] = ACTIONS(813), + [sym__emphasis_open_underscore] = ACTIONS(813), + }, + [301] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(813), + [aux_sym__html_block_1_token1] = ACTIONS(813), + [anon_sym_BANG] = ACTIONS(813), + [anon_sym_DQUOTE] = ACTIONS(813), + [anon_sym_POUND] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(815), + [anon_sym_SQUOTE] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_SEMI] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_QMARK] = ACTIONS(813), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(813), + [anon_sym_BSLASH] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(813), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym__] = ACTIONS(813), + [anon_sym_BQUOTE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(815), + [anon_sym_LT_QMARK] = ACTIONS(815), + [aux_sym__html_block_4_token1] = ACTIONS(815), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(813), + [aux_sym__html_block_6_token1] = ACTIONS(815), + [aux_sym__html_block_6_token2] = ACTIONS(813), + [sym__open_tag_html_block] = ACTIONS(813), + [sym__open_tag_html_block_newline] = ACTIONS(813), + [sym__closing_tag_html_block] = ACTIONS(813), + [sym__closing_tag_html_block_newline] = ACTIONS(813), + [sym_backslash_escape] = ACTIONS(813), + [sym_uri_autolink] = ACTIONS(813), + [sym_email_autolink] = ACTIONS(813), + [sym_entity_reference] = ACTIONS(813), + [sym_numeric_character_reference] = ACTIONS(813), + [sym__whitespace_ge_2] = ACTIONS(813), + [aux_sym__whitespace_token1] = ACTIONS(815), + [sym__word_no_digit] = ACTIONS(813), + [sym__digits] = ACTIONS(813), + [aux_sym__newline_token1] = ACTIONS(813), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(813), + [sym__indented_chunk_start] = ACTIONS(813), + [sym_atx_h1_marker] = ACTIONS(813), + [sym_atx_h2_marker] = ACTIONS(813), + [sym_atx_h3_marker] = ACTIONS(813), + [sym_atx_h4_marker] = ACTIONS(813), + [sym_atx_h5_marker] = ACTIONS(813), + [sym_atx_h6_marker] = ACTIONS(813), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(813), + [sym__thematic_break] = ACTIONS(813), + [sym__list_marker_minus] = ACTIONS(813), + [sym__list_marker_plus] = ACTIONS(813), + [sym__list_marker_star] = ACTIONS(813), + [sym__list_marker_parenthesis] = ACTIONS(813), + [sym__list_marker_dot] = ACTIONS(813), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(813), + [sym__list_marker_star_dont_interrupt] = ACTIONS(813), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(813), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(813), + [sym__fenced_code_block_start_backtick] = ACTIONS(813), + [sym__fenced_code_block_start_tilde] = ACTIONS(813), + [sym__blank_line_start] = ACTIONS(813), + [sym__code_span_start] = ACTIONS(813), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(813), + [sym__emphasis_open_underscore] = ACTIONS(813), + }, + [302] = { + [aux_sym__ignore_matching_tokens] = STATE(277), + [ts_builtin_sym_end] = ACTIONS(819), + [aux_sym__html_block_1_token1] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(819), + [anon_sym_POUND] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_COMMA] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_AT] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_BSLASH] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym__] = ACTIONS(819), + [anon_sym_BQUOTE] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(821), + [anon_sym_LT_QMARK] = ACTIONS(821), + [aux_sym__html_block_4_token1] = ACTIONS(821), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(819), + [aux_sym__html_block_6_token1] = ACTIONS(821), + [aux_sym__html_block_6_token2] = ACTIONS(819), + [sym__open_tag_html_block] = ACTIONS(819), + [sym__open_tag_html_block_newline] = ACTIONS(819), + [sym__closing_tag_html_block] = ACTIONS(819), + [sym__closing_tag_html_block_newline] = ACTIONS(819), + [sym_backslash_escape] = ACTIONS(819), + [sym_uri_autolink] = ACTIONS(819), + [sym_email_autolink] = ACTIONS(819), + [sym_entity_reference] = ACTIONS(819), + [sym_numeric_character_reference] = ACTIONS(819), + [sym__whitespace_ge_2] = ACTIONS(819), + [aux_sym__whitespace_token1] = ACTIONS(821), + [sym__word_no_digit] = ACTIONS(819), + [sym__digits] = ACTIONS(819), + [aux_sym__newline_token1] = ACTIONS(819), + [sym__block_continuation] = ACTIONS(1454), + [sym__block_quote_start] = ACTIONS(819), + [sym__indented_chunk_start] = ACTIONS(819), + [sym_atx_h1_marker] = ACTIONS(819), + [sym_atx_h2_marker] = ACTIONS(819), + [sym_atx_h3_marker] = ACTIONS(819), + [sym_atx_h4_marker] = ACTIONS(819), + [sym_atx_h5_marker] = ACTIONS(819), + [sym_atx_h6_marker] = ACTIONS(819), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(819), + [sym__thematic_break] = ACTIONS(819), + [sym__list_marker_minus] = ACTIONS(819), + [sym__list_marker_plus] = ACTIONS(819), + [sym__list_marker_star] = ACTIONS(819), + [sym__list_marker_parenthesis] = ACTIONS(819), + [sym__list_marker_dot] = ACTIONS(819), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_star_dont_interrupt] = ACTIONS(819), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(819), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(819), + [sym__fenced_code_block_start_backtick] = ACTIONS(819), + [sym__fenced_code_block_start_tilde] = ACTIONS(819), + [sym__blank_line_start] = ACTIONS(819), + [sym__code_span_start] = ACTIONS(819), + [sym__last_token_whitespace] = ACTIONS(1454), + [sym__emphasis_open_star] = ACTIONS(819), + [sym__emphasis_open_underscore] = ACTIONS(819), + }, + [303] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(819), + [aux_sym__html_block_1_token1] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(819), + [anon_sym_POUND] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(821), + [anon_sym_SQUOTE] = ACTIONS(819), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_COMMA] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_AT] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_BSLASH] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym__] = ACTIONS(819), + [anon_sym_BQUOTE] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(821), + [anon_sym_LT_QMARK] = ACTIONS(821), + [aux_sym__html_block_4_token1] = ACTIONS(821), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(819), + [aux_sym__html_block_6_token1] = ACTIONS(821), + [aux_sym__html_block_6_token2] = ACTIONS(819), + [sym__open_tag_html_block] = ACTIONS(819), + [sym__open_tag_html_block_newline] = ACTIONS(819), + [sym__closing_tag_html_block] = ACTIONS(819), + [sym__closing_tag_html_block_newline] = ACTIONS(819), + [sym_backslash_escape] = ACTIONS(819), + [sym_uri_autolink] = ACTIONS(819), + [sym_email_autolink] = ACTIONS(819), + [sym_entity_reference] = ACTIONS(819), + [sym_numeric_character_reference] = ACTIONS(819), + [sym__whitespace_ge_2] = ACTIONS(819), + [aux_sym__whitespace_token1] = ACTIONS(821), + [sym__word_no_digit] = ACTIONS(819), + [sym__digits] = ACTIONS(819), + [aux_sym__newline_token1] = ACTIONS(819), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(819), + [sym__indented_chunk_start] = ACTIONS(819), + [sym_atx_h1_marker] = ACTIONS(819), + [sym_atx_h2_marker] = ACTIONS(819), + [sym_atx_h3_marker] = ACTIONS(819), + [sym_atx_h4_marker] = ACTIONS(819), + [sym_atx_h5_marker] = ACTIONS(819), + [sym_atx_h6_marker] = ACTIONS(819), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(819), + [sym__thematic_break] = ACTIONS(819), + [sym__list_marker_minus] = ACTIONS(819), + [sym__list_marker_plus] = ACTIONS(819), + [sym__list_marker_star] = ACTIONS(819), + [sym__list_marker_parenthesis] = ACTIONS(819), + [sym__list_marker_dot] = ACTIONS(819), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(819), + [sym__list_marker_star_dont_interrupt] = ACTIONS(819), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(819), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(819), + [sym__fenced_code_block_start_backtick] = ACTIONS(819), + [sym__fenced_code_block_start_tilde] = ACTIONS(819), + [sym__blank_line_start] = ACTIONS(819), + [sym__code_span_start] = ACTIONS(819), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(819), + [sym__emphasis_open_underscore] = ACTIONS(819), + }, + [304] = { + [aux_sym__ignore_matching_tokens] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(825), + [aux_sym__html_block_1_token1] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(825), + [anon_sym_PERCENT] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), + [anon_sym_SQUOTE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_DASH] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_SLASH] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_GT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(825), + [anon_sym_BSLASH] = ACTIONS(827), + [anon_sym_RBRACK] = ACTIONS(825), + [anon_sym_CARET] = ACTIONS(825), + [anon_sym__] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_PIPE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(827), + [anon_sym_LT_QMARK] = ACTIONS(827), + [aux_sym__html_block_4_token1] = ACTIONS(827), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(825), + [aux_sym__html_block_6_token1] = ACTIONS(827), + [aux_sym__html_block_6_token2] = ACTIONS(825), + [sym__open_tag_html_block] = ACTIONS(825), + [sym__open_tag_html_block_newline] = ACTIONS(825), + [sym__closing_tag_html_block] = ACTIONS(825), + [sym__closing_tag_html_block_newline] = ACTIONS(825), + [sym_backslash_escape] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(825), + [sym_email_autolink] = ACTIONS(825), + [sym_entity_reference] = ACTIONS(825), + [sym_numeric_character_reference] = ACTIONS(825), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(825), + [sym__digits] = ACTIONS(825), + [aux_sym__newline_token1] = ACTIONS(825), + [sym__block_continuation] = ACTIONS(1456), + [sym__block_quote_start] = ACTIONS(825), + [sym__indented_chunk_start] = ACTIONS(825), + [sym_atx_h1_marker] = ACTIONS(825), + [sym_atx_h2_marker] = ACTIONS(825), + [sym_atx_h3_marker] = ACTIONS(825), + [sym_atx_h4_marker] = ACTIONS(825), + [sym_atx_h5_marker] = ACTIONS(825), + [sym_atx_h6_marker] = ACTIONS(825), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(825), + [sym__thematic_break] = ACTIONS(825), + [sym__list_marker_minus] = ACTIONS(825), + [sym__list_marker_plus] = ACTIONS(825), + [sym__list_marker_star] = ACTIONS(825), + [sym__list_marker_parenthesis] = ACTIONS(825), + [sym__list_marker_dot] = ACTIONS(825), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_star_dont_interrupt] = ACTIONS(825), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(825), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(825), + [sym__fenced_code_block_start_backtick] = ACTIONS(825), + [sym__fenced_code_block_start_tilde] = ACTIONS(825), + [sym__blank_line_start] = ACTIONS(825), + [sym__code_span_start] = ACTIONS(825), + [sym__last_token_whitespace] = ACTIONS(1456), + [sym__emphasis_open_star] = ACTIONS(825), + [sym__emphasis_open_underscore] = ACTIONS(825), + }, + [305] = { + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(825), + [aux_sym__html_block_1_token1] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(825), + [anon_sym_PERCENT] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), + [anon_sym_SQUOTE] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_COMMA] = ACTIONS(825), + [anon_sym_DASH] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_SLASH] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_GT] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(825), + [anon_sym_AT] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(825), + [anon_sym_BSLASH] = ACTIONS(827), + [anon_sym_RBRACK] = ACTIONS(825), + [anon_sym_CARET] = ACTIONS(825), + [anon_sym__] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_PIPE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(827), + [anon_sym_LT_QMARK] = ACTIONS(827), + [aux_sym__html_block_4_token1] = ACTIONS(827), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(825), + [aux_sym__html_block_6_token1] = ACTIONS(827), + [aux_sym__html_block_6_token2] = ACTIONS(825), + [sym__open_tag_html_block] = ACTIONS(825), + [sym__open_tag_html_block_newline] = ACTIONS(825), + [sym__closing_tag_html_block] = ACTIONS(825), + [sym__closing_tag_html_block_newline] = ACTIONS(825), + [sym_backslash_escape] = ACTIONS(825), + [sym_uri_autolink] = ACTIONS(825), + [sym_email_autolink] = ACTIONS(825), + [sym_entity_reference] = ACTIONS(825), + [sym_numeric_character_reference] = ACTIONS(825), + [sym__whitespace_ge_2] = ACTIONS(825), + [aux_sym__whitespace_token1] = ACTIONS(827), + [sym__word_no_digit] = ACTIONS(825), + [sym__digits] = ACTIONS(825), + [aux_sym__newline_token1] = ACTIONS(825), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(825), + [sym__indented_chunk_start] = ACTIONS(825), + [sym_atx_h1_marker] = ACTIONS(825), + [sym_atx_h2_marker] = ACTIONS(825), + [sym_atx_h3_marker] = ACTIONS(825), + [sym_atx_h4_marker] = ACTIONS(825), + [sym_atx_h5_marker] = ACTIONS(825), + [sym_atx_h6_marker] = ACTIONS(825), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(825), + [sym__thematic_break] = ACTIONS(825), + [sym__list_marker_minus] = ACTIONS(825), + [sym__list_marker_plus] = ACTIONS(825), + [sym__list_marker_star] = ACTIONS(825), + [sym__list_marker_parenthesis] = ACTIONS(825), + [sym__list_marker_dot] = ACTIONS(825), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(825), + [sym__list_marker_star_dont_interrupt] = ACTIONS(825), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(825), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(825), + [sym__fenced_code_block_start_backtick] = ACTIONS(825), + [sym__fenced_code_block_start_tilde] = ACTIONS(825), + [sym__blank_line_start] = ACTIONS(825), + [sym__code_span_start] = ACTIONS(825), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(825), + [sym__emphasis_open_underscore] = ACTIONS(825), + }, + [306] = { + [aux_sym__ignore_matching_tokens] = STATE(257), + [ts_builtin_sym_end] = ACTIONS(1041), [aux_sym__html_block_1_token1] = ACTIONS(1041), [anon_sym_BANG] = ACTIONS(1041), [anon_sym_DQUOTE] = ACTIONS(1041), @@ -57930,8 +58797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word_no_digit] = ACTIONS(1041), [sym__digits] = ACTIONS(1041), [aux_sym__newline_token1] = ACTIONS(1041), - [sym__block_close] = ACTIONS(1041), - [sym__block_continuation] = ACTIONS(1451), + [sym__block_continuation] = ACTIONS(1458), [sym__block_quote_start] = ACTIONS(1041), [sym__indented_chunk_start] = ACTIONS(1041), [sym_atx_h1_marker] = ACTIONS(1041), @@ -57956,1997 +58822,1147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__fenced_code_block_start_tilde] = ACTIONS(1041), [sym__blank_line_start] = ACTIONS(1041), [sym__code_span_start] = ACTIONS(1041), - [sym__last_token_whitespace] = ACTIONS(1451), + [sym__last_token_whitespace] = ACTIONS(1458), [sym__emphasis_open_star] = ACTIONS(1041), [sym__emphasis_open_underscore] = ACTIONS(1041), }, - [297] = { - [aux_sym__ignore_matching_tokens] = STATE(179), - [ts_builtin_sym_end] = ACTIONS(960), - [aux_sym__html_block_1_token1] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_PERCENT] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_AT] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_BSLASH] = ACTIONS(962), - [anon_sym_RBRACK] = ACTIONS(960), - [anon_sym_CARET] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(962), - [anon_sym_LT_QMARK] = ACTIONS(962), - [aux_sym__html_block_4_token1] = ACTIONS(962), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(960), - [aux_sym__html_block_6_token1] = ACTIONS(962), - [aux_sym__html_block_6_token2] = ACTIONS(960), - [sym__open_tag_html_block] = ACTIONS(960), - [sym__open_tag_html_block_newline] = ACTIONS(960), - [sym__closing_tag_html_block] = ACTIONS(960), - [sym__closing_tag_html_block_newline] = ACTIONS(960), - [sym_backslash_escape] = ACTIONS(960), - [sym_uri_autolink] = ACTIONS(960), - [sym_email_autolink] = ACTIONS(960), - [sym_entity_reference] = ACTIONS(960), - [sym_numeric_character_reference] = ACTIONS(960), - [sym__whitespace_ge_2] = ACTIONS(960), - [aux_sym__whitespace_token1] = ACTIONS(962), - [sym__word_no_digit] = ACTIONS(960), - [sym__digits] = ACTIONS(960), - [aux_sym__newline_token1] = ACTIONS(960), - [sym__block_continuation] = ACTIONS(1453), - [sym__block_quote_start] = ACTIONS(960), - [sym__indented_chunk_start] = ACTIONS(960), - [sym_atx_h1_marker] = ACTIONS(960), - [sym_atx_h2_marker] = ACTIONS(960), - [sym_atx_h3_marker] = ACTIONS(960), - [sym_atx_h4_marker] = ACTIONS(960), - [sym_atx_h5_marker] = ACTIONS(960), - [sym_atx_h6_marker] = ACTIONS(960), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(960), - [sym__thematic_break] = ACTIONS(960), - [sym__list_marker_minus] = ACTIONS(960), - [sym__list_marker_plus] = ACTIONS(960), - [sym__list_marker_star] = ACTIONS(960), - [sym__list_marker_parenthesis] = ACTIONS(960), - [sym__list_marker_dot] = ACTIONS(960), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(960), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(960), - [sym__list_marker_star_dont_interrupt] = ACTIONS(960), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(960), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(960), - [sym__fenced_code_block_start_backtick] = ACTIONS(960), - [sym__fenced_code_block_start_tilde] = ACTIONS(960), - [sym__blank_line_start] = ACTIONS(960), - [sym__code_span_start] = ACTIONS(960), - [sym__last_token_whitespace] = ACTIONS(1453), - [sym__emphasis_open_star] = ACTIONS(960), - [sym__emphasis_open_underscore] = ACTIONS(960), - }, - [298] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_PERCENT] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1024), - [anon_sym_SLASH] = ACTIONS(1024), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1024), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_BSLASH] = ACTIONS(1026), - [anon_sym_RBRACK] = ACTIONS(1024), - [anon_sym_CARET] = ACTIONS(1024), - [anon_sym__] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1026), - [anon_sym_LT_QMARK] = ACTIONS(1026), - [aux_sym__html_block_4_token1] = ACTIONS(1026), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1024), - [aux_sym__html_block_6_token1] = ACTIONS(1026), - [aux_sym__html_block_6_token2] = ACTIONS(1024), - [sym__open_tag_html_block] = ACTIONS(1024), - [sym__open_tag_html_block_newline] = ACTIONS(1024), - [sym__closing_tag_html_block] = ACTIONS(1024), - [sym__closing_tag_html_block_newline] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [sym_uri_autolink] = ACTIONS(1024), - [sym_email_autolink] = ACTIONS(1024), - [sym_entity_reference] = ACTIONS(1024), - [sym_numeric_character_reference] = ACTIONS(1024), - [sym__whitespace_ge_2] = ACTIONS(1024), - [aux_sym__whitespace_token1] = ACTIONS(1026), - [sym__word_no_digit] = ACTIONS(1024), - [sym__digits] = ACTIONS(1024), - [aux_sym__newline_token1] = ACTIONS(1024), - [sym__block_close] = ACTIONS(1024), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(1024), - [sym__indented_chunk_start] = ACTIONS(1024), - [sym_atx_h1_marker] = ACTIONS(1024), - [sym_atx_h2_marker] = ACTIONS(1024), - [sym_atx_h3_marker] = ACTIONS(1024), - [sym_atx_h4_marker] = ACTIONS(1024), - [sym_atx_h5_marker] = ACTIONS(1024), - [sym_atx_h6_marker] = ACTIONS(1024), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1024), - [sym__thematic_break] = ACTIONS(1024), - [sym__list_marker_minus] = ACTIONS(1024), - [sym__list_marker_plus] = ACTIONS(1024), - [sym__list_marker_star] = ACTIONS(1024), - [sym__list_marker_parenthesis] = ACTIONS(1024), - [sym__list_marker_dot] = ACTIONS(1024), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1024), - [sym__fenced_code_block_start_backtick] = ACTIONS(1024), - [sym__fenced_code_block_start_tilde] = ACTIONS(1024), - [sym__blank_line_start] = ACTIONS(1024), - [sym__code_span_start] = ACTIONS(1024), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(1024), - [sym__emphasis_open_underscore] = ACTIONS(1024), - }, - [299] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(798), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_POUND] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [anon_sym_PERCENT] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_STAR] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(798), - [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_DOT] = ACTIONS(798), - [anon_sym_SLASH] = ACTIONS(798), - [anon_sym_COLON] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_EQ] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_QMARK] = ACTIONS(798), - [anon_sym_AT] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(798), - [anon_sym_BSLASH] = ACTIONS(800), - [anon_sym_RBRACK] = ACTIONS(798), - [anon_sym_CARET] = ACTIONS(798), - [anon_sym__] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RBRACE] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(798), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(800), - [anon_sym_LT_QMARK] = ACTIONS(800), - [aux_sym__html_block_4_token1] = ACTIONS(800), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(798), - [aux_sym__html_block_6_token1] = ACTIONS(800), - [aux_sym__html_block_6_token2] = ACTIONS(798), - [sym__open_tag_html_block] = ACTIONS(798), - [sym__open_tag_html_block_newline] = ACTIONS(798), - [sym__closing_tag_html_block] = ACTIONS(798), - [sym__closing_tag_html_block_newline] = ACTIONS(798), - [sym_backslash_escape] = ACTIONS(798), - [sym_uri_autolink] = ACTIONS(798), - [sym_email_autolink] = ACTIONS(798), - [sym_entity_reference] = ACTIONS(798), - [sym_numeric_character_reference] = ACTIONS(798), - [sym__whitespace_ge_2] = ACTIONS(798), - [aux_sym__whitespace_token1] = ACTIONS(800), - [sym__word_no_digit] = ACTIONS(798), - [sym__digits] = ACTIONS(798), - [aux_sym__newline_token1] = ACTIONS(798), - [sym__block_close] = ACTIONS(798), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(798), - [sym__indented_chunk_start] = ACTIONS(798), - [sym_atx_h1_marker] = ACTIONS(798), - [sym_atx_h2_marker] = ACTIONS(798), - [sym_atx_h3_marker] = ACTIONS(798), - [sym_atx_h4_marker] = ACTIONS(798), - [sym_atx_h5_marker] = ACTIONS(798), - [sym_atx_h6_marker] = ACTIONS(798), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(798), - [sym__thematic_break] = ACTIONS(798), - [sym__list_marker_minus] = ACTIONS(798), - [sym__list_marker_plus] = ACTIONS(798), - [sym__list_marker_star] = ACTIONS(798), - [sym__list_marker_parenthesis] = ACTIONS(798), - [sym__list_marker_dot] = ACTIONS(798), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(798), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(798), - [sym__list_marker_star_dont_interrupt] = ACTIONS(798), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(798), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(798), - [sym__fenced_code_block_start_backtick] = ACTIONS(798), - [sym__fenced_code_block_start_tilde] = ACTIONS(798), - [sym__blank_line_start] = ACTIONS(798), - [sym__code_span_start] = ACTIONS(798), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(798), - [sym__emphasis_open_underscore] = ACTIONS(798), - }, - [300] = { - [aux_sym__ignore_matching_tokens] = STATE(188), - [ts_builtin_sym_end] = ACTIONS(966), - [aux_sym__html_block_1_token1] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(966), - [anon_sym_AT] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym__] = ACTIONS(966), - [anon_sym_BQUOTE] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(968), - [anon_sym_LT_QMARK] = ACTIONS(968), - [aux_sym__html_block_4_token1] = ACTIONS(968), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(966), - [aux_sym__html_block_6_token1] = ACTIONS(968), - [aux_sym__html_block_6_token2] = ACTIONS(966), - [sym__open_tag_html_block] = ACTIONS(966), - [sym__open_tag_html_block_newline] = ACTIONS(966), - [sym__closing_tag_html_block] = ACTIONS(966), - [sym__closing_tag_html_block_newline] = ACTIONS(966), - [sym_backslash_escape] = ACTIONS(966), - [sym_uri_autolink] = ACTIONS(966), - [sym_email_autolink] = ACTIONS(966), - [sym_entity_reference] = ACTIONS(966), - [sym_numeric_character_reference] = ACTIONS(966), - [sym__whitespace_ge_2] = ACTIONS(966), - [aux_sym__whitespace_token1] = ACTIONS(968), - [sym__word_no_digit] = ACTIONS(966), - [sym__digits] = ACTIONS(966), - [aux_sym__newline_token1] = ACTIONS(966), - [sym__block_continuation] = ACTIONS(1455), - [sym__block_quote_start] = ACTIONS(966), - [sym__indented_chunk_start] = ACTIONS(966), - [sym_atx_h1_marker] = ACTIONS(966), - [sym_atx_h2_marker] = ACTIONS(966), - [sym_atx_h3_marker] = ACTIONS(966), - [sym_atx_h4_marker] = ACTIONS(966), - [sym_atx_h5_marker] = ACTIONS(966), - [sym_atx_h6_marker] = ACTIONS(966), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(966), - [sym__thematic_break] = ACTIONS(966), - [sym__list_marker_minus] = ACTIONS(966), - [sym__list_marker_plus] = ACTIONS(966), - [sym__list_marker_star] = ACTIONS(966), - [sym__list_marker_parenthesis] = ACTIONS(966), - [sym__list_marker_dot] = ACTIONS(966), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(966), - [sym__list_marker_star_dont_interrupt] = ACTIONS(966), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(966), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(966), - [sym__fenced_code_block_start_backtick] = ACTIONS(966), - [sym__fenced_code_block_start_tilde] = ACTIONS(966), - [sym__blank_line_start] = ACTIONS(966), - [sym__code_span_start] = ACTIONS(966), - [sym__last_token_whitespace] = ACTIONS(1455), - [sym__emphasis_open_star] = ACTIONS(966), - [sym__emphasis_open_underscore] = ACTIONS(966), - }, - [301] = { - [aux_sym__ignore_matching_tokens] = STATE(193), - [ts_builtin_sym_end] = ACTIONS(972), - [aux_sym__html_block_1_token1] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_COLON] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_BSLASH] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym__] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(972), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(974), - [anon_sym_LT_QMARK] = ACTIONS(974), - [aux_sym__html_block_4_token1] = ACTIONS(974), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(972), - [aux_sym__html_block_6_token1] = ACTIONS(974), - [aux_sym__html_block_6_token2] = ACTIONS(972), - [sym__open_tag_html_block] = ACTIONS(972), - [sym__open_tag_html_block_newline] = ACTIONS(972), - [sym__closing_tag_html_block] = ACTIONS(972), - [sym__closing_tag_html_block_newline] = ACTIONS(972), - [sym_backslash_escape] = ACTIONS(972), - [sym_uri_autolink] = ACTIONS(972), - [sym_email_autolink] = ACTIONS(972), - [sym_entity_reference] = ACTIONS(972), - [sym_numeric_character_reference] = ACTIONS(972), - [sym__whitespace_ge_2] = ACTIONS(972), - [aux_sym__whitespace_token1] = ACTIONS(974), - [sym__word_no_digit] = ACTIONS(972), - [sym__digits] = ACTIONS(972), - [aux_sym__newline_token1] = ACTIONS(972), - [sym__block_continuation] = ACTIONS(1457), - [sym__block_quote_start] = ACTIONS(972), - [sym__indented_chunk_start] = ACTIONS(972), - [sym_atx_h1_marker] = ACTIONS(972), - [sym_atx_h2_marker] = ACTIONS(972), - [sym_atx_h3_marker] = ACTIONS(972), - [sym_atx_h4_marker] = ACTIONS(972), - [sym_atx_h5_marker] = ACTIONS(972), - [sym_atx_h6_marker] = ACTIONS(972), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(972), - [sym__thematic_break] = ACTIONS(972), - [sym__list_marker_minus] = ACTIONS(972), - [sym__list_marker_plus] = ACTIONS(972), - [sym__list_marker_star] = ACTIONS(972), - [sym__list_marker_parenthesis] = ACTIONS(972), - [sym__list_marker_dot] = ACTIONS(972), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(972), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(972), - [sym__list_marker_star_dont_interrupt] = ACTIONS(972), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(972), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(972), - [sym__fenced_code_block_start_backtick] = ACTIONS(972), - [sym__fenced_code_block_start_tilde] = ACTIONS(972), - [sym__blank_line_start] = ACTIONS(972), - [sym__code_span_start] = ACTIONS(972), - [sym__last_token_whitespace] = ACTIONS(1457), - [sym__emphasis_open_star] = ACTIONS(972), - [sym__emphasis_open_underscore] = ACTIONS(972), - }, - [302] = { - [sym__blank_line] = STATE(302), - [sym__indented_chunk] = STATE(302), - [aux_sym_indented_code_block_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(978), - [aux_sym__html_block_1_token1] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_COLON] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_RBRACK] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym__] = ACTIONS(978), - [anon_sym_BQUOTE] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(980), - [anon_sym_LT_QMARK] = ACTIONS(980), - [aux_sym__html_block_4_token1] = ACTIONS(980), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(978), - [aux_sym__html_block_6_token1] = ACTIONS(980), - [aux_sym__html_block_6_token2] = ACTIONS(978), - [sym__open_tag_html_block] = ACTIONS(978), - [sym__open_tag_html_block_newline] = ACTIONS(978), - [sym__closing_tag_html_block] = ACTIONS(978), - [sym__closing_tag_html_block_newline] = ACTIONS(978), - [sym_backslash_escape] = ACTIONS(978), - [sym_uri_autolink] = ACTIONS(978), - [sym_email_autolink] = ACTIONS(978), - [sym_entity_reference] = ACTIONS(978), - [sym_numeric_character_reference] = ACTIONS(978), - [sym__whitespace_ge_2] = ACTIONS(978), - [aux_sym__whitespace_token1] = ACTIONS(980), - [sym__word_no_digit] = ACTIONS(978), - [sym__digits] = ACTIONS(978), - [aux_sym__newline_token1] = ACTIONS(978), - [sym__block_quote_start] = ACTIONS(978), - [sym__indented_chunk_start] = ACTIONS(1459), - [sym_atx_h1_marker] = ACTIONS(978), - [sym_atx_h2_marker] = ACTIONS(978), - [sym_atx_h3_marker] = ACTIONS(978), - [sym_atx_h4_marker] = ACTIONS(978), - [sym_atx_h5_marker] = ACTIONS(978), - [sym_atx_h6_marker] = ACTIONS(978), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(978), - [sym__thematic_break] = ACTIONS(978), - [sym__list_marker_minus] = ACTIONS(978), - [sym__list_marker_plus] = ACTIONS(978), - [sym__list_marker_star] = ACTIONS(978), - [sym__list_marker_parenthesis] = ACTIONS(978), - [sym__list_marker_dot] = ACTIONS(978), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(978), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(978), - [sym__list_marker_star_dont_interrupt] = ACTIONS(978), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(978), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(978), - [sym__fenced_code_block_start_backtick] = ACTIONS(978), - [sym__fenced_code_block_start_tilde] = ACTIONS(978), - [sym__blank_line_start] = ACTIONS(1462), - [sym__code_span_start] = ACTIONS(978), - [sym__emphasis_open_star] = ACTIONS(978), - [sym__emphasis_open_underscore] = ACTIONS(978), - }, - [303] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_COLON] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_EQ] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(527), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_BSLASH] = ACTIONS(529), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym__] = ACTIONS(527), - [anon_sym_BQUOTE] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(529), - [anon_sym_LT_QMARK] = ACTIONS(529), - [aux_sym__html_block_4_token1] = ACTIONS(529), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(527), - [aux_sym__html_block_6_token1] = ACTIONS(529), - [aux_sym__html_block_6_token2] = ACTIONS(527), - [sym__open_tag_html_block] = ACTIONS(527), - [sym__open_tag_html_block_newline] = ACTIONS(527), - [sym__closing_tag_html_block] = ACTIONS(527), - [sym__closing_tag_html_block_newline] = ACTIONS(527), - [sym_backslash_escape] = ACTIONS(527), - [sym_uri_autolink] = ACTIONS(527), - [sym_email_autolink] = ACTIONS(527), - [sym_entity_reference] = ACTIONS(527), - [sym_numeric_character_reference] = ACTIONS(527), - [sym__whitespace_ge_2] = ACTIONS(527), - [aux_sym__whitespace_token1] = ACTIONS(529), - [sym__word_no_digit] = ACTIONS(527), - [sym__digits] = ACTIONS(527), - [aux_sym__newline_token1] = ACTIONS(527), - [sym__block_close] = ACTIONS(527), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(527), - [sym__indented_chunk_start] = ACTIONS(527), - [sym_atx_h1_marker] = ACTIONS(527), - [sym_atx_h2_marker] = ACTIONS(527), - [sym_atx_h3_marker] = ACTIONS(527), - [sym_atx_h4_marker] = ACTIONS(527), - [sym_atx_h5_marker] = ACTIONS(527), - [sym_atx_h6_marker] = ACTIONS(527), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(527), - [sym__thematic_break] = ACTIONS(527), - [sym__list_marker_minus] = ACTIONS(527), - [sym__list_marker_plus] = ACTIONS(527), - [sym__list_marker_star] = ACTIONS(527), - [sym__list_marker_parenthesis] = ACTIONS(527), - [sym__list_marker_dot] = ACTIONS(527), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(527), - [sym__list_marker_star_dont_interrupt] = ACTIONS(527), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(527), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(527), - [sym__fenced_code_block_start_backtick] = ACTIONS(527), - [sym__fenced_code_block_start_tilde] = ACTIONS(527), - [sym__blank_line_start] = ACTIONS(527), - [sym__code_span_start] = ACTIONS(527), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(527), - [sym__emphasis_open_underscore] = ACTIONS(527), - }, - [304] = { - [aux_sym__ignore_matching_tokens] = STATE(232), - [ts_builtin_sym_end] = ACTIONS(1012), - [aux_sym__html_block_1_token1] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [anon_sym_DQUOTE] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_PERCENT] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_COLON] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1012), - [anon_sym_AT] = ACTIONS(1012), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_BSLASH] = ACTIONS(1014), - [anon_sym_RBRACK] = ACTIONS(1012), - [anon_sym_CARET] = ACTIONS(1012), - [anon_sym__] = ACTIONS(1012), - [anon_sym_BQUOTE] = ACTIONS(1012), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_TILDE] = ACTIONS(1012), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1014), - [anon_sym_LT_QMARK] = ACTIONS(1014), - [aux_sym__html_block_4_token1] = ACTIONS(1014), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1012), - [aux_sym__html_block_6_token1] = ACTIONS(1014), - [aux_sym__html_block_6_token2] = ACTIONS(1012), - [sym__open_tag_html_block] = ACTIONS(1012), - [sym__open_tag_html_block_newline] = ACTIONS(1012), - [sym__closing_tag_html_block] = ACTIONS(1012), - [sym__closing_tag_html_block_newline] = ACTIONS(1012), - [sym_backslash_escape] = ACTIONS(1012), - [sym_uri_autolink] = ACTIONS(1012), - [sym_email_autolink] = ACTIONS(1012), - [sym_entity_reference] = ACTIONS(1012), - [sym_numeric_character_reference] = ACTIONS(1012), - [sym__whitespace_ge_2] = ACTIONS(1012), - [aux_sym__whitespace_token1] = ACTIONS(1014), - [sym__word_no_digit] = ACTIONS(1012), - [sym__digits] = ACTIONS(1012), - [aux_sym__newline_token1] = ACTIONS(1012), - [sym__block_continuation] = ACTIONS(1465), - [sym__block_quote_start] = ACTIONS(1012), - [sym__indented_chunk_start] = ACTIONS(1012), - [sym_atx_h1_marker] = ACTIONS(1012), - [sym_atx_h2_marker] = ACTIONS(1012), - [sym_atx_h3_marker] = ACTIONS(1012), - [sym_atx_h4_marker] = ACTIONS(1012), - [sym_atx_h5_marker] = ACTIONS(1012), - [sym_atx_h6_marker] = ACTIONS(1012), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1012), - [sym__thematic_break] = ACTIONS(1012), - [sym__list_marker_minus] = ACTIONS(1012), - [sym__list_marker_plus] = ACTIONS(1012), - [sym__list_marker_star] = ACTIONS(1012), - [sym__list_marker_parenthesis] = ACTIONS(1012), - [sym__list_marker_dot] = ACTIONS(1012), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1012), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1012), - [sym__fenced_code_block_start_backtick] = ACTIONS(1012), - [sym__fenced_code_block_start_tilde] = ACTIONS(1012), - [sym__blank_line_start] = ACTIONS(1012), - [sym__code_span_start] = ACTIONS(1012), - [sym__last_token_whitespace] = ACTIONS(1465), - [sym__emphasis_open_star] = ACTIONS(1012), - [sym__emphasis_open_underscore] = ACTIONS(1012), - }, - [305] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(802), - [anon_sym_BANG] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [anon_sym_PERCENT] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(804), - [anon_sym_SQUOTE] = ACTIONS(802), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(802), - [anon_sym_PLUS] = ACTIONS(802), - [anon_sym_COMMA] = ACTIONS(802), - [anon_sym_DASH] = ACTIONS(802), - [anon_sym_DOT] = ACTIONS(802), - [anon_sym_SLASH] = ACTIONS(802), - [anon_sym_COLON] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_QMARK] = ACTIONS(802), - [anon_sym_AT] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_BSLASH] = ACTIONS(804), - [anon_sym_RBRACK] = ACTIONS(802), - [anon_sym_CARET] = ACTIONS(802), - [anon_sym__] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LBRACE] = ACTIONS(802), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RBRACE] = ACTIONS(802), - [anon_sym_TILDE] = ACTIONS(802), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(804), - [anon_sym_LT_QMARK] = ACTIONS(804), - [aux_sym__html_block_4_token1] = ACTIONS(804), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(802), - [aux_sym__html_block_6_token1] = ACTIONS(804), - [aux_sym__html_block_6_token2] = ACTIONS(802), - [sym__open_tag_html_block] = ACTIONS(802), - [sym__open_tag_html_block_newline] = ACTIONS(802), - [sym__closing_tag_html_block] = ACTIONS(802), - [sym__closing_tag_html_block_newline] = ACTIONS(802), - [sym_backslash_escape] = ACTIONS(802), - [sym_uri_autolink] = ACTIONS(802), - [sym_email_autolink] = ACTIONS(802), - [sym_entity_reference] = ACTIONS(802), - [sym_numeric_character_reference] = ACTIONS(802), - [sym__whitespace_ge_2] = ACTIONS(802), - [aux_sym__whitespace_token1] = ACTIONS(804), - [sym__word_no_digit] = ACTIONS(802), - [sym__digits] = ACTIONS(802), - [aux_sym__newline_token1] = ACTIONS(802), - [sym__block_close] = ACTIONS(802), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(802), - [sym__indented_chunk_start] = ACTIONS(802), - [sym_atx_h1_marker] = ACTIONS(802), - [sym_atx_h2_marker] = ACTIONS(802), - [sym_atx_h3_marker] = ACTIONS(802), - [sym_atx_h4_marker] = ACTIONS(802), - [sym_atx_h5_marker] = ACTIONS(802), - [sym_atx_h6_marker] = ACTIONS(802), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(802), - [sym__thematic_break] = ACTIONS(802), - [sym__list_marker_minus] = ACTIONS(802), - [sym__list_marker_plus] = ACTIONS(802), - [sym__list_marker_star] = ACTIONS(802), - [sym__list_marker_parenthesis] = ACTIONS(802), - [sym__list_marker_dot] = ACTIONS(802), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(802), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(802), - [sym__list_marker_star_dont_interrupt] = ACTIONS(802), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(802), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(802), - [sym__fenced_code_block_start_backtick] = ACTIONS(802), - [sym__fenced_code_block_start_tilde] = ACTIONS(802), - [sym__blank_line_start] = ACTIONS(802), - [sym__code_span_start] = ACTIONS(802), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(802), - [sym__emphasis_open_underscore] = ACTIONS(802), - }, - [306] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__block_close] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), - }, [307] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(806), - [anon_sym_BANG] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_POUND] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [anon_sym_PERCENT] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(808), - [anon_sym_SQUOTE] = ACTIONS(806), - [anon_sym_LPAREN] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_SLASH] = ACTIONS(806), - [anon_sym_COLON] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_QMARK] = ACTIONS(806), - [anon_sym_AT] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(806), - [anon_sym_BSLASH] = ACTIONS(808), - [anon_sym_RBRACK] = ACTIONS(806), - [anon_sym_CARET] = ACTIONS(806), - [anon_sym__] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RBRACE] = ACTIONS(806), - [anon_sym_TILDE] = ACTIONS(806), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(808), - [anon_sym_LT_QMARK] = ACTIONS(808), - [aux_sym__html_block_4_token1] = ACTIONS(808), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(806), - [aux_sym__html_block_6_token1] = ACTIONS(808), - [aux_sym__html_block_6_token2] = ACTIONS(806), - [sym__open_tag_html_block] = ACTIONS(806), - [sym__open_tag_html_block_newline] = ACTIONS(806), - [sym__closing_tag_html_block] = ACTIONS(806), - [sym__closing_tag_html_block_newline] = ACTIONS(806), - [sym_backslash_escape] = ACTIONS(806), - [sym_uri_autolink] = ACTIONS(806), - [sym_email_autolink] = ACTIONS(806), - [sym_entity_reference] = ACTIONS(806), - [sym_numeric_character_reference] = ACTIONS(806), - [sym__whitespace_ge_2] = ACTIONS(806), - [aux_sym__whitespace_token1] = ACTIONS(808), - [sym__word_no_digit] = ACTIONS(806), - [sym__digits] = ACTIONS(806), - [aux_sym__newline_token1] = ACTIONS(806), - [sym__block_close] = ACTIONS(806), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(806), - [sym__indented_chunk_start] = ACTIONS(806), - [sym_atx_h1_marker] = ACTIONS(806), - [sym_atx_h2_marker] = ACTIONS(806), - [sym_atx_h3_marker] = ACTIONS(806), - [sym_atx_h4_marker] = ACTIONS(806), - [sym_atx_h5_marker] = ACTIONS(806), - [sym_atx_h6_marker] = ACTIONS(806), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(806), - [sym__thematic_break] = ACTIONS(806), - [sym__list_marker_minus] = ACTIONS(806), - [sym__list_marker_plus] = ACTIONS(806), - [sym__list_marker_star] = ACTIONS(806), - [sym__list_marker_parenthesis] = ACTIONS(806), - [sym__list_marker_dot] = ACTIONS(806), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(806), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(806), - [sym__list_marker_star_dont_interrupt] = ACTIONS(806), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(806), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(806), - [sym__fenced_code_block_start_backtick] = ACTIONS(806), - [sym__fenced_code_block_start_tilde] = ACTIONS(806), - [sym__blank_line_start] = ACTIONS(806), - [sym__code_span_start] = ACTIONS(806), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(806), - [sym__emphasis_open_underscore] = ACTIONS(806), + [aux_sym__ignore_matching_tokens] = STATE(279), + [ts_builtin_sym_end] = ACTIONS(831), + [aux_sym__html_block_1_token1] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_SQUOTE] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_DOT] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(833), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_BSLASH] = ACTIONS(833), + [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym__] = ACTIONS(831), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(833), + [anon_sym_LT_QMARK] = ACTIONS(833), + [aux_sym__html_block_4_token1] = ACTIONS(833), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(831), + [aux_sym__html_block_6_token1] = ACTIONS(833), + [aux_sym__html_block_6_token2] = ACTIONS(831), + [sym__open_tag_html_block] = ACTIONS(831), + [sym__open_tag_html_block_newline] = ACTIONS(831), + [sym__closing_tag_html_block] = ACTIONS(831), + [sym__closing_tag_html_block_newline] = ACTIONS(831), + [sym_backslash_escape] = ACTIONS(831), + [sym_uri_autolink] = ACTIONS(831), + [sym_email_autolink] = ACTIONS(831), + [sym_entity_reference] = ACTIONS(831), + [sym_numeric_character_reference] = ACTIONS(831), + [sym__whitespace_ge_2] = ACTIONS(831), + [aux_sym__whitespace_token1] = ACTIONS(833), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [aux_sym__newline_token1] = ACTIONS(831), + [sym__block_continuation] = ACTIONS(1460), + [sym__block_quote_start] = ACTIONS(831), + [sym__indented_chunk_start] = ACTIONS(831), + [sym_atx_h1_marker] = ACTIONS(831), + [sym_atx_h2_marker] = ACTIONS(831), + [sym_atx_h3_marker] = ACTIONS(831), + [sym_atx_h4_marker] = ACTIONS(831), + [sym_atx_h5_marker] = ACTIONS(831), + [sym_atx_h6_marker] = ACTIONS(831), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(831), + [sym__thematic_break] = ACTIONS(831), + [sym__list_marker_minus] = ACTIONS(831), + [sym__list_marker_plus] = ACTIONS(831), + [sym__list_marker_star] = ACTIONS(831), + [sym__list_marker_parenthesis] = ACTIONS(831), + [sym__list_marker_dot] = ACTIONS(831), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_star_dont_interrupt] = ACTIONS(831), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(831), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(831), + [sym__fenced_code_block_start_backtick] = ACTIONS(831), + [sym__fenced_code_block_start_tilde] = ACTIONS(831), + [sym__blank_line_start] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(831), + [sym__last_token_whitespace] = ACTIONS(1460), + [sym__emphasis_open_star] = ACTIONS(831), + [sym__emphasis_open_underscore] = ACTIONS(831), }, [308] = { - [aux_sym__ignore_matching_tokens] = STATE(236), - [aux_sym__html_block_1_token1] = ACTIONS(814), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DQUOTE] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(814), - [anon_sym_DOLLAR] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_STAR] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_COMMA] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_SEMI] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(816), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_QMARK] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(814), - [anon_sym_BSLASH] = ACTIONS(816), - [anon_sym_RBRACK] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(814), - [anon_sym__] = ACTIONS(814), - [anon_sym_BQUOTE] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_RBRACE] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(814), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(816), - [anon_sym_LT_QMARK] = ACTIONS(816), - [aux_sym__html_block_4_token1] = ACTIONS(816), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(814), - [aux_sym__html_block_6_token1] = ACTIONS(816), - [aux_sym__html_block_6_token2] = ACTIONS(814), - [sym__open_tag_html_block] = ACTIONS(814), - [sym__open_tag_html_block_newline] = ACTIONS(814), - [sym__closing_tag_html_block] = ACTIONS(814), - [sym__closing_tag_html_block_newline] = ACTIONS(814), - [sym_backslash_escape] = ACTIONS(814), - [sym_uri_autolink] = ACTIONS(814), - [sym_email_autolink] = ACTIONS(814), - [sym_entity_reference] = ACTIONS(814), - [sym_numeric_character_reference] = ACTIONS(814), - [sym__whitespace_ge_2] = ACTIONS(814), - [aux_sym__whitespace_token1] = ACTIONS(816), - [sym__word_no_digit] = ACTIONS(814), - [sym__digits] = ACTIONS(814), - [aux_sym__newline_token1] = ACTIONS(814), - [sym__block_close] = ACTIONS(814), - [sym__block_continuation] = ACTIONS(97), - [sym__block_quote_start] = ACTIONS(814), - [sym__indented_chunk_start] = ACTIONS(814), - [sym_atx_h1_marker] = ACTIONS(814), - [sym_atx_h2_marker] = ACTIONS(814), - [sym_atx_h3_marker] = ACTIONS(814), - [sym_atx_h4_marker] = ACTIONS(814), - [sym_atx_h5_marker] = ACTIONS(814), - [sym_atx_h6_marker] = ACTIONS(814), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(814), - [sym__thematic_break] = ACTIONS(814), - [sym__list_marker_minus] = ACTIONS(814), - [sym__list_marker_plus] = ACTIONS(814), - [sym__list_marker_star] = ACTIONS(814), - [sym__list_marker_parenthesis] = ACTIONS(814), - [sym__list_marker_dot] = ACTIONS(814), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(814), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(814), - [sym__list_marker_star_dont_interrupt] = ACTIONS(814), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(814), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(814), - [sym__fenced_code_block_start_backtick] = ACTIONS(814), - [sym__fenced_code_block_start_tilde] = ACTIONS(814), - [sym__blank_line_start] = ACTIONS(814), - [sym__code_span_start] = ACTIONS(814), - [sym__last_token_whitespace] = ACTIONS(97), - [sym__emphasis_open_star] = ACTIONS(814), - [sym__emphasis_open_underscore] = ACTIONS(814), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(831), + [aux_sym__html_block_1_token1] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [anon_sym_POUND] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_PERCENT] = ACTIONS(831), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_SQUOTE] = ACTIONS(831), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_DOT] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(833), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_AT] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_BSLASH] = ACTIONS(833), + [anon_sym_RBRACK] = ACTIONS(831), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym__] = ACTIONS(831), + [anon_sym_BQUOTE] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(833), + [anon_sym_LT_QMARK] = ACTIONS(833), + [aux_sym__html_block_4_token1] = ACTIONS(833), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(831), + [aux_sym__html_block_6_token1] = ACTIONS(833), + [aux_sym__html_block_6_token2] = ACTIONS(831), + [sym__open_tag_html_block] = ACTIONS(831), + [sym__open_tag_html_block_newline] = ACTIONS(831), + [sym__closing_tag_html_block] = ACTIONS(831), + [sym__closing_tag_html_block_newline] = ACTIONS(831), + [sym_backslash_escape] = ACTIONS(831), + [sym_uri_autolink] = ACTIONS(831), + [sym_email_autolink] = ACTIONS(831), + [sym_entity_reference] = ACTIONS(831), + [sym_numeric_character_reference] = ACTIONS(831), + [sym__whitespace_ge_2] = ACTIONS(831), + [aux_sym__whitespace_token1] = ACTIONS(833), + [sym__word_no_digit] = ACTIONS(831), + [sym__digits] = ACTIONS(831), + [aux_sym__newline_token1] = ACTIONS(831), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(831), + [sym__indented_chunk_start] = ACTIONS(831), + [sym_atx_h1_marker] = ACTIONS(831), + [sym_atx_h2_marker] = ACTIONS(831), + [sym_atx_h3_marker] = ACTIONS(831), + [sym_atx_h4_marker] = ACTIONS(831), + [sym_atx_h5_marker] = ACTIONS(831), + [sym_atx_h6_marker] = ACTIONS(831), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(831), + [sym__thematic_break] = ACTIONS(831), + [sym__list_marker_minus] = ACTIONS(831), + [sym__list_marker_plus] = ACTIONS(831), + [sym__list_marker_star] = ACTIONS(831), + [sym__list_marker_parenthesis] = ACTIONS(831), + [sym__list_marker_dot] = ACTIONS(831), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(831), + [sym__list_marker_star_dont_interrupt] = ACTIONS(831), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(831), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(831), + [sym__fenced_code_block_start_backtick] = ACTIONS(831), + [sym__fenced_code_block_start_tilde] = ACTIONS(831), + [sym__blank_line_start] = ACTIONS(831), + [sym__code_span_start] = ACTIONS(831), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(831), + [sym__emphasis_open_underscore] = ACTIONS(831), }, [309] = { - [aux_sym__ignore_matching_tokens] = STATE(200), - [ts_builtin_sym_end] = ACTIONS(990), - [aux_sym__html_block_1_token1] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_PERCENT] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_AT] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_BSLASH] = ACTIONS(992), - [anon_sym_RBRACK] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym__] = ACTIONS(990), - [anon_sym_BQUOTE] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(992), - [anon_sym_LT_QMARK] = ACTIONS(992), - [aux_sym__html_block_4_token1] = ACTIONS(992), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(990), - [aux_sym__html_block_6_token1] = ACTIONS(992), - [aux_sym__html_block_6_token2] = ACTIONS(990), - [sym__open_tag_html_block] = ACTIONS(990), - [sym__open_tag_html_block_newline] = ACTIONS(990), - [sym__closing_tag_html_block] = ACTIONS(990), - [sym__closing_tag_html_block_newline] = ACTIONS(990), - [sym_backslash_escape] = ACTIONS(990), - [sym_uri_autolink] = ACTIONS(990), - [sym_email_autolink] = ACTIONS(990), - [sym_entity_reference] = ACTIONS(990), - [sym_numeric_character_reference] = ACTIONS(990), - [sym__whitespace_ge_2] = ACTIONS(990), - [aux_sym__whitespace_token1] = ACTIONS(992), - [sym__word_no_digit] = ACTIONS(990), - [sym__digits] = ACTIONS(990), - [aux_sym__newline_token1] = ACTIONS(990), - [sym__block_continuation] = ACTIONS(1467), - [sym__block_quote_start] = ACTIONS(990), - [sym__indented_chunk_start] = ACTIONS(990), - [sym_atx_h1_marker] = ACTIONS(990), - [sym_atx_h2_marker] = ACTIONS(990), - [sym_atx_h3_marker] = ACTIONS(990), - [sym_atx_h4_marker] = ACTIONS(990), - [sym_atx_h5_marker] = ACTIONS(990), - [sym_atx_h6_marker] = ACTIONS(990), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(990), - [sym__thematic_break] = ACTIONS(990), - [sym__list_marker_minus] = ACTIONS(990), - [sym__list_marker_plus] = ACTIONS(990), - [sym__list_marker_star] = ACTIONS(990), - [sym__list_marker_parenthesis] = ACTIONS(990), - [sym__list_marker_dot] = ACTIONS(990), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(990), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(990), - [sym__list_marker_star_dont_interrupt] = ACTIONS(990), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(990), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(990), - [sym__fenced_code_block_start_backtick] = ACTIONS(990), - [sym__fenced_code_block_start_tilde] = ACTIONS(990), - [sym__blank_line_start] = ACTIONS(990), - [sym__code_span_start] = ACTIONS(990), - [sym__last_token_whitespace] = ACTIONS(1467), - [sym__emphasis_open_star] = ACTIONS(990), - [sym__emphasis_open_underscore] = ACTIONS(990), + [aux_sym__ignore_matching_tokens] = STATE(282), + [ts_builtin_sym_end] = ACTIONS(837), + [aux_sym__html_block_1_token1] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_PERCENT] = ACTIONS(837), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(837), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(837), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_BSLASH] = ACTIONS(839), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(837), + [anon_sym__] = ACTIONS(837), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(839), + [anon_sym_LT_QMARK] = ACTIONS(839), + [aux_sym__html_block_4_token1] = ACTIONS(839), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(837), + [aux_sym__html_block_6_token1] = ACTIONS(839), + [aux_sym__html_block_6_token2] = ACTIONS(837), + [sym__open_tag_html_block] = ACTIONS(837), + [sym__open_tag_html_block_newline] = ACTIONS(837), + [sym__closing_tag_html_block] = ACTIONS(837), + [sym__closing_tag_html_block_newline] = ACTIONS(837), + [sym_backslash_escape] = ACTIONS(837), + [sym_uri_autolink] = ACTIONS(837), + [sym_email_autolink] = ACTIONS(837), + [sym_entity_reference] = ACTIONS(837), + [sym_numeric_character_reference] = ACTIONS(837), + [sym__whitespace_ge_2] = ACTIONS(837), + [aux_sym__whitespace_token1] = ACTIONS(839), + [sym__word_no_digit] = ACTIONS(837), + [sym__digits] = ACTIONS(837), + [aux_sym__newline_token1] = ACTIONS(837), + [sym__block_continuation] = ACTIONS(1462), + [sym__block_quote_start] = ACTIONS(837), + [sym__indented_chunk_start] = ACTIONS(837), + [sym_atx_h1_marker] = ACTIONS(837), + [sym_atx_h2_marker] = ACTIONS(837), + [sym_atx_h3_marker] = ACTIONS(837), + [sym_atx_h4_marker] = ACTIONS(837), + [sym_atx_h5_marker] = ACTIONS(837), + [sym_atx_h6_marker] = ACTIONS(837), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(837), + [sym__thematic_break] = ACTIONS(837), + [sym__list_marker_minus] = ACTIONS(837), + [sym__list_marker_plus] = ACTIONS(837), + [sym__list_marker_star] = ACTIONS(837), + [sym__list_marker_parenthesis] = ACTIONS(837), + [sym__list_marker_dot] = ACTIONS(837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(837), + [sym__fenced_code_block_start_backtick] = ACTIONS(837), + [sym__fenced_code_block_start_tilde] = ACTIONS(837), + [sym__blank_line_start] = ACTIONS(837), + [sym__code_span_start] = ACTIONS(837), + [sym__last_token_whitespace] = ACTIONS(1462), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(837), }, [310] = { - [aux_sym__ignore_matching_tokens] = STATE(266), - [aux_sym__html_block_1_token1] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_PERCENT] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_SQUOTE] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1024), - [anon_sym_SLASH] = ACTIONS(1024), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1024), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_BSLASH] = ACTIONS(1026), - [anon_sym_RBRACK] = ACTIONS(1024), - [anon_sym_CARET] = ACTIONS(1024), - [anon_sym__] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1026), - [anon_sym_LT_QMARK] = ACTIONS(1026), - [aux_sym__html_block_4_token1] = ACTIONS(1026), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1024), - [aux_sym__html_block_6_token1] = ACTIONS(1026), - [aux_sym__html_block_6_token2] = ACTIONS(1024), - [sym__open_tag_html_block] = ACTIONS(1024), - [sym__open_tag_html_block_newline] = ACTIONS(1024), - [sym__closing_tag_html_block] = ACTIONS(1024), - [sym__closing_tag_html_block_newline] = ACTIONS(1024), - [sym_backslash_escape] = ACTIONS(1024), - [sym_uri_autolink] = ACTIONS(1024), - [sym_email_autolink] = ACTIONS(1024), - [sym_entity_reference] = ACTIONS(1024), - [sym_numeric_character_reference] = ACTIONS(1024), - [sym__whitespace_ge_2] = ACTIONS(1024), - [aux_sym__whitespace_token1] = ACTIONS(1026), - [sym__word_no_digit] = ACTIONS(1024), - [sym__digits] = ACTIONS(1024), - [aux_sym__newline_token1] = ACTIONS(1024), - [sym__block_close] = ACTIONS(1024), - [sym__block_continuation] = ACTIONS(1469), - [sym__block_quote_start] = ACTIONS(1024), - [sym__indented_chunk_start] = ACTIONS(1024), - [sym_atx_h1_marker] = ACTIONS(1024), - [sym_atx_h2_marker] = ACTIONS(1024), - [sym_atx_h3_marker] = ACTIONS(1024), - [sym_atx_h4_marker] = ACTIONS(1024), - [sym_atx_h5_marker] = ACTIONS(1024), - [sym_atx_h6_marker] = ACTIONS(1024), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1024), - [sym__thematic_break] = ACTIONS(1024), - [sym__list_marker_minus] = ACTIONS(1024), - [sym__list_marker_plus] = ACTIONS(1024), - [sym__list_marker_star] = ACTIONS(1024), - [sym__list_marker_parenthesis] = ACTIONS(1024), - [sym__list_marker_dot] = ACTIONS(1024), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1024), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1024), - [sym__fenced_code_block_start_backtick] = ACTIONS(1024), - [sym__fenced_code_block_start_tilde] = ACTIONS(1024), - [sym__blank_line_start] = ACTIONS(1024), - [sym__code_span_start] = ACTIONS(1024), - [sym__last_token_whitespace] = ACTIONS(1469), - [sym__emphasis_open_star] = ACTIONS(1024), - [sym__emphasis_open_underscore] = ACTIONS(1024), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(837), + [aux_sym__html_block_1_token1] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_PERCENT] = ACTIONS(837), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_SQUOTE] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(837), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(837), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_BSLASH] = ACTIONS(839), + [anon_sym_RBRACK] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(837), + [anon_sym__] = ACTIONS(837), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(837), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(839), + [anon_sym_LT_QMARK] = ACTIONS(839), + [aux_sym__html_block_4_token1] = ACTIONS(839), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(837), + [aux_sym__html_block_6_token1] = ACTIONS(839), + [aux_sym__html_block_6_token2] = ACTIONS(837), + [sym__open_tag_html_block] = ACTIONS(837), + [sym__open_tag_html_block_newline] = ACTIONS(837), + [sym__closing_tag_html_block] = ACTIONS(837), + [sym__closing_tag_html_block_newline] = ACTIONS(837), + [sym_backslash_escape] = ACTIONS(837), + [sym_uri_autolink] = ACTIONS(837), + [sym_email_autolink] = ACTIONS(837), + [sym_entity_reference] = ACTIONS(837), + [sym_numeric_character_reference] = ACTIONS(837), + [sym__whitespace_ge_2] = ACTIONS(837), + [aux_sym__whitespace_token1] = ACTIONS(839), + [sym__word_no_digit] = ACTIONS(837), + [sym__digits] = ACTIONS(837), + [aux_sym__newline_token1] = ACTIONS(837), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(837), + [sym__indented_chunk_start] = ACTIONS(837), + [sym_atx_h1_marker] = ACTIONS(837), + [sym_atx_h2_marker] = ACTIONS(837), + [sym_atx_h3_marker] = ACTIONS(837), + [sym_atx_h4_marker] = ACTIONS(837), + [sym_atx_h5_marker] = ACTIONS(837), + [sym_atx_h6_marker] = ACTIONS(837), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(837), + [sym__thematic_break] = ACTIONS(837), + [sym__list_marker_minus] = ACTIONS(837), + [sym__list_marker_plus] = ACTIONS(837), + [sym__list_marker_star] = ACTIONS(837), + [sym__list_marker_parenthesis] = ACTIONS(837), + [sym__list_marker_dot] = ACTIONS(837), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(837), + [sym__list_marker_star_dont_interrupt] = ACTIONS(837), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(837), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(837), + [sym__fenced_code_block_start_backtick] = ACTIONS(837), + [sym__fenced_code_block_start_tilde] = ACTIONS(837), + [sym__blank_line_start] = ACTIONS(837), + [sym__code_span_start] = ACTIONS(837), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(837), + [sym__emphasis_open_underscore] = ACTIONS(837), }, [311] = { - [sym_link_title] = STATE(2132), - [sym__whitespace] = STATE(2057), - [aux_sym__html_block_1_token1] = ACTIONS(864), - [anon_sym_BANG] = ACTIONS(864), - [anon_sym_DQUOTE] = ACTIONS(866), - [anon_sym_POUND] = ACTIONS(864), - [anon_sym_DOLLAR] = ACTIONS(864), - [anon_sym_PERCENT] = ACTIONS(864), - [anon_sym_AMP] = ACTIONS(869), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(864), - [anon_sym_STAR] = ACTIONS(864), - [anon_sym_PLUS] = ACTIONS(864), - [anon_sym_COMMA] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(864), - [anon_sym_SLASH] = ACTIONS(864), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_SEMI] = ACTIONS(864), - [anon_sym_LT] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(864), - [anon_sym_GT] = ACTIONS(864), - [anon_sym_QMARK] = ACTIONS(864), - [anon_sym_AT] = ACTIONS(864), - [anon_sym_LBRACK] = ACTIONS(864), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_RBRACK] = ACTIONS(864), - [anon_sym_CARET] = ACTIONS(864), - [anon_sym__] = ACTIONS(864), - [anon_sym_BQUOTE] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(864), - [anon_sym_PIPE] = ACTIONS(864), - [anon_sym_RBRACE] = ACTIONS(864), - [anon_sym_TILDE] = ACTIONS(864), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(869), - [anon_sym_LT_QMARK] = ACTIONS(869), - [aux_sym__html_block_4_token1] = ACTIONS(869), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(864), - [aux_sym__html_block_6_token1] = ACTIONS(869), - [aux_sym__html_block_6_token2] = ACTIONS(864), - [sym__open_tag_html_block] = ACTIONS(864), - [sym__open_tag_html_block_newline] = ACTIONS(864), - [sym__closing_tag_html_block] = ACTIONS(864), - [sym__closing_tag_html_block_newline] = ACTIONS(864), - [sym_backslash_escape] = ACTIONS(864), - [sym_uri_autolink] = ACTIONS(864), - [sym_email_autolink] = ACTIONS(864), - [sym_entity_reference] = ACTIONS(864), - [sym_numeric_character_reference] = ACTIONS(864), - [sym__whitespace_ge_2] = ACTIONS(877), - [aux_sym__whitespace_token1] = ACTIONS(880), - [sym__word_no_digit] = ACTIONS(864), - [sym__digits] = ACTIONS(864), - [aux_sym__newline_token1] = ACTIONS(864), - [sym__block_close] = ACTIONS(864), - [sym__block_quote_start] = ACTIONS(864), - [sym__indented_chunk_start] = ACTIONS(864), - [sym_atx_h1_marker] = ACTIONS(864), - [sym_atx_h2_marker] = ACTIONS(864), - [sym_atx_h3_marker] = ACTIONS(864), - [sym_atx_h4_marker] = ACTIONS(864), - [sym_atx_h5_marker] = ACTIONS(864), - [sym_atx_h6_marker] = ACTIONS(864), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(864), - [sym__thematic_break] = ACTIONS(864), - [sym__list_marker_minus] = ACTIONS(864), - [sym__list_marker_plus] = ACTIONS(864), - [sym__list_marker_star] = ACTIONS(864), - [sym__list_marker_parenthesis] = ACTIONS(864), - [sym__list_marker_dot] = ACTIONS(864), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(864), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(864), - [sym__list_marker_star_dont_interrupt] = ACTIONS(864), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(864), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(864), - [sym__fenced_code_block_start_backtick] = ACTIONS(864), - [sym__fenced_code_block_start_tilde] = ACTIONS(864), - [sym__blank_line_start] = ACTIONS(864), - [sym__code_span_start] = ACTIONS(864), - [sym__emphasis_open_star] = ACTIONS(864), - [sym__emphasis_open_underscore] = ACTIONS(864), - [sym__no_indented_chunk] = ACTIONS(1471), + [aux_sym__ignore_matching_tokens] = STATE(274), + [ts_builtin_sym_end] = ACTIONS(1035), + [aux_sym__html_block_1_token1] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1035), + [anon_sym_PERCENT] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_SQUOTE] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1035), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_BSLASH] = ACTIONS(1037), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1035), + [anon_sym_BQUOTE] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_TILDE] = ACTIONS(1035), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1037), + [anon_sym_LT_QMARK] = ACTIONS(1037), + [aux_sym__html_block_4_token1] = ACTIONS(1037), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1035), + [aux_sym__html_block_6_token1] = ACTIONS(1037), + [aux_sym__html_block_6_token2] = ACTIONS(1035), + [sym__open_tag_html_block] = ACTIONS(1035), + [sym__open_tag_html_block_newline] = ACTIONS(1035), + [sym__closing_tag_html_block] = ACTIONS(1035), + [sym__closing_tag_html_block_newline] = ACTIONS(1035), + [sym_backslash_escape] = ACTIONS(1035), + [sym_uri_autolink] = ACTIONS(1035), + [sym_email_autolink] = ACTIONS(1035), + [sym_entity_reference] = ACTIONS(1035), + [sym_numeric_character_reference] = ACTIONS(1035), + [sym__whitespace_ge_2] = ACTIONS(1035), + [aux_sym__whitespace_token1] = ACTIONS(1037), + [sym__word_no_digit] = ACTIONS(1035), + [sym__digits] = ACTIONS(1035), + [aux_sym__newline_token1] = ACTIONS(1035), + [sym__block_continuation] = ACTIONS(1464), + [sym__block_quote_start] = ACTIONS(1035), + [sym__indented_chunk_start] = ACTIONS(1035), + [sym_atx_h1_marker] = ACTIONS(1035), + [sym_atx_h2_marker] = ACTIONS(1035), + [sym_atx_h3_marker] = ACTIONS(1035), + [sym_atx_h4_marker] = ACTIONS(1035), + [sym_atx_h5_marker] = ACTIONS(1035), + [sym_atx_h6_marker] = ACTIONS(1035), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1035), + [sym__thematic_break] = ACTIONS(1035), + [sym__list_marker_minus] = ACTIONS(1035), + [sym__list_marker_plus] = ACTIONS(1035), + [sym__list_marker_star] = ACTIONS(1035), + [sym__list_marker_parenthesis] = ACTIONS(1035), + [sym__list_marker_dot] = ACTIONS(1035), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1035), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1035), + [sym__fenced_code_block_start_backtick] = ACTIONS(1035), + [sym__fenced_code_block_start_tilde] = ACTIONS(1035), + [sym__blank_line_start] = ACTIONS(1035), + [sym__code_span_start] = ACTIONS(1035), + [sym__last_token_whitespace] = ACTIONS(1464), + [sym__emphasis_open_star] = ACTIONS(1035), + [sym__emphasis_open_underscore] = ACTIONS(1035), }, [312] = { - [aux_sym__ignore_matching_tokens] = STATE(218), - [ts_builtin_sym_end] = ACTIONS(996), - [aux_sym__html_block_1_token1] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_DQUOTE] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(996), - [anon_sym_PERCENT] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_SLASH] = ACTIONS(996), - [anon_sym_COLON] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_GT] = ACTIONS(996), - [anon_sym_QMARK] = ACTIONS(996), - [anon_sym_AT] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_BSLASH] = ACTIONS(998), - [anon_sym_RBRACK] = ACTIONS(996), - [anon_sym_CARET] = ACTIONS(996), - [anon_sym__] = ACTIONS(996), - [anon_sym_BQUOTE] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_TILDE] = ACTIONS(996), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(998), - [anon_sym_LT_QMARK] = ACTIONS(998), - [aux_sym__html_block_4_token1] = ACTIONS(998), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(996), - [aux_sym__html_block_6_token1] = ACTIONS(998), - [aux_sym__html_block_6_token2] = ACTIONS(996), - [sym__open_tag_html_block] = ACTIONS(996), - [sym__open_tag_html_block_newline] = ACTIONS(996), - [sym__closing_tag_html_block] = ACTIONS(996), - [sym__closing_tag_html_block_newline] = ACTIONS(996), - [sym_backslash_escape] = ACTIONS(996), - [sym_uri_autolink] = ACTIONS(996), - [sym_email_autolink] = ACTIONS(996), - [sym_entity_reference] = ACTIONS(996), - [sym_numeric_character_reference] = ACTIONS(996), - [sym__whitespace_ge_2] = ACTIONS(996), - [aux_sym__whitespace_token1] = ACTIONS(998), - [sym__word_no_digit] = ACTIONS(996), - [sym__digits] = ACTIONS(996), - [aux_sym__newline_token1] = ACTIONS(996), - [sym__block_continuation] = ACTIONS(1473), - [sym__block_quote_start] = ACTIONS(996), - [sym__indented_chunk_start] = ACTIONS(996), - [sym_atx_h1_marker] = ACTIONS(996), - [sym_atx_h2_marker] = ACTIONS(996), - [sym_atx_h3_marker] = ACTIONS(996), - [sym_atx_h4_marker] = ACTIONS(996), - [sym_atx_h5_marker] = ACTIONS(996), - [sym_atx_h6_marker] = ACTIONS(996), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(996), - [sym__thematic_break] = ACTIONS(996), - [sym__list_marker_minus] = ACTIONS(996), - [sym__list_marker_plus] = ACTIONS(996), - [sym__list_marker_star] = ACTIONS(996), - [sym__list_marker_parenthesis] = ACTIONS(996), - [sym__list_marker_dot] = ACTIONS(996), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(996), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(996), - [sym__list_marker_star_dont_interrupt] = ACTIONS(996), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(996), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(996), - [sym__fenced_code_block_start_backtick] = ACTIONS(996), - [sym__fenced_code_block_start_tilde] = ACTIONS(996), - [sym__blank_line_start] = ACTIONS(996), - [sym__code_span_start] = ACTIONS(996), - [sym__last_token_whitespace] = ACTIONS(1473), - [sym__emphasis_open_star] = ACTIONS(996), - [sym__emphasis_open_underscore] = ACTIONS(996), + [aux_sym__ignore_matching_tokens] = STATE(286), + [ts_builtin_sym_end] = ACTIONS(843), + [aux_sym__html_block_1_token1] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DOT] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BSLASH] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym__] = ACTIONS(843), + [anon_sym_BQUOTE] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), + [anon_sym_LT_QMARK] = ACTIONS(845), + [aux_sym__html_block_4_token1] = ACTIONS(845), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), + [aux_sym__html_block_6_token1] = ACTIONS(845), + [aux_sym__html_block_6_token2] = ACTIONS(843), + [sym__open_tag_html_block] = ACTIONS(843), + [sym__open_tag_html_block_newline] = ACTIONS(843), + [sym__closing_tag_html_block] = ACTIONS(843), + [sym__closing_tag_html_block_newline] = ACTIONS(843), + [sym_backslash_escape] = ACTIONS(843), + [sym_uri_autolink] = ACTIONS(843), + [sym_email_autolink] = ACTIONS(843), + [sym_entity_reference] = ACTIONS(843), + [sym_numeric_character_reference] = ACTIONS(843), + [sym__whitespace_ge_2] = ACTIONS(843), + [aux_sym__whitespace_token1] = ACTIONS(845), + [sym__word_no_digit] = ACTIONS(843), + [sym__digits] = ACTIONS(843), + [aux_sym__newline_token1] = ACTIONS(843), + [sym__block_continuation] = ACTIONS(1466), + [sym__block_quote_start] = ACTIONS(843), + [sym__indented_chunk_start] = ACTIONS(843), + [sym_atx_h1_marker] = ACTIONS(843), + [sym_atx_h2_marker] = ACTIONS(843), + [sym_atx_h3_marker] = ACTIONS(843), + [sym_atx_h4_marker] = ACTIONS(843), + [sym_atx_h5_marker] = ACTIONS(843), + [sym_atx_h6_marker] = ACTIONS(843), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(843), + [sym__thematic_break] = ACTIONS(843), + [sym__list_marker_minus] = ACTIONS(843), + [sym__list_marker_plus] = ACTIONS(843), + [sym__list_marker_star] = ACTIONS(843), + [sym__list_marker_parenthesis] = ACTIONS(843), + [sym__list_marker_dot] = ACTIONS(843), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_star_dont_interrupt] = ACTIONS(843), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), + [sym__fenced_code_block_start_backtick] = ACTIONS(843), + [sym__fenced_code_block_start_tilde] = ACTIONS(843), + [sym__blank_line_start] = ACTIONS(843), + [sym__code_span_start] = ACTIONS(843), + [sym__last_token_whitespace] = ACTIONS(1466), + [sym__emphasis_open_star] = ACTIONS(843), + [sym__emphasis_open_underscore] = ACTIONS(843), }, [313] = { - [sym_link_title] = STATE(2216), - [sym__whitespace] = STATE(2053), - [ts_builtin_sym_end] = ACTIONS(1112), - [aux_sym__html_block_1_token1] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1112), - [anon_sym_PERCENT] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1117), - [anon_sym_SQUOTE] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1122), - [anon_sym_RPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_QMARK] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_BSLASH] = ACTIONS(1117), - [anon_sym_RBRACK] = ACTIONS(1112), - [anon_sym_CARET] = ACTIONS(1112), - [anon_sym__] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_TILDE] = ACTIONS(1112), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1117), - [anon_sym_LT_QMARK] = ACTIONS(1117), - [aux_sym__html_block_4_token1] = ACTIONS(1117), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1112), - [aux_sym__html_block_6_token1] = ACTIONS(1117), - [aux_sym__html_block_6_token2] = ACTIONS(1112), - [sym__open_tag_html_block] = ACTIONS(1112), - [sym__open_tag_html_block_newline] = ACTIONS(1112), - [sym__closing_tag_html_block] = ACTIONS(1112), - [sym__closing_tag_html_block_newline] = ACTIONS(1112), - [sym_backslash_escape] = ACTIONS(1112), - [sym_uri_autolink] = ACTIONS(1112), - [sym_email_autolink] = ACTIONS(1112), - [sym_entity_reference] = ACTIONS(1112), - [sym_numeric_character_reference] = ACTIONS(1112), - [sym__whitespace_ge_2] = ACTIONS(1125), - [aux_sym__whitespace_token1] = ACTIONS(1128), - [sym__word_no_digit] = ACTIONS(1112), - [sym__digits] = ACTIONS(1112), - [aux_sym__newline_token1] = ACTIONS(1112), - [sym__block_quote_start] = ACTIONS(1112), - [sym__indented_chunk_start] = ACTIONS(1112), - [sym_atx_h1_marker] = ACTIONS(1112), - [sym_atx_h2_marker] = ACTIONS(1112), - [sym_atx_h3_marker] = ACTIONS(1112), - [sym_atx_h4_marker] = ACTIONS(1112), - [sym_atx_h5_marker] = ACTIONS(1112), - [sym_atx_h6_marker] = ACTIONS(1112), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1112), - [sym__thematic_break] = ACTIONS(1112), - [sym__list_marker_minus] = ACTIONS(1112), - [sym__list_marker_plus] = ACTIONS(1112), - [sym__list_marker_star] = ACTIONS(1112), - [sym__list_marker_parenthesis] = ACTIONS(1112), - [sym__list_marker_dot] = ACTIONS(1112), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1112), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1112), - [sym__fenced_code_block_start_backtick] = ACTIONS(1112), - [sym__fenced_code_block_start_tilde] = ACTIONS(1112), - [sym__blank_line_start] = ACTIONS(1112), - [sym__code_span_start] = ACTIONS(1112), - [sym__emphasis_open_star] = ACTIONS(1112), - [sym__emphasis_open_underscore] = ACTIONS(1112), - [sym__no_indented_chunk] = ACTIONS(1475), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(843), + [aux_sym__html_block_1_token1] = ACTIONS(843), + [anon_sym_BANG] = ACTIONS(843), + [anon_sym_DQUOTE] = ACTIONS(843), + [anon_sym_POUND] = ACTIONS(843), + [anon_sym_DOLLAR] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_SQUOTE] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(843), + [anon_sym_RPAREN] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(843), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_DOT] = ACTIONS(843), + [anon_sym_SLASH] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_LT] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_GT] = ACTIONS(843), + [anon_sym_QMARK] = ACTIONS(843), + [anon_sym_AT] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(843), + [anon_sym_BSLASH] = ACTIONS(845), + [anon_sym_RBRACK] = ACTIONS(843), + [anon_sym_CARET] = ACTIONS(843), + [anon_sym__] = ACTIONS(843), + [anon_sym_BQUOTE] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(843), + [anon_sym_PIPE] = ACTIONS(843), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_TILDE] = ACTIONS(843), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(845), + [anon_sym_LT_QMARK] = ACTIONS(845), + [aux_sym__html_block_4_token1] = ACTIONS(845), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(843), + [aux_sym__html_block_6_token1] = ACTIONS(845), + [aux_sym__html_block_6_token2] = ACTIONS(843), + [sym__open_tag_html_block] = ACTIONS(843), + [sym__open_tag_html_block_newline] = ACTIONS(843), + [sym__closing_tag_html_block] = ACTIONS(843), + [sym__closing_tag_html_block_newline] = ACTIONS(843), + [sym_backslash_escape] = ACTIONS(843), + [sym_uri_autolink] = ACTIONS(843), + [sym_email_autolink] = ACTIONS(843), + [sym_entity_reference] = ACTIONS(843), + [sym_numeric_character_reference] = ACTIONS(843), + [sym__whitespace_ge_2] = ACTIONS(843), + [aux_sym__whitespace_token1] = ACTIONS(845), + [sym__word_no_digit] = ACTIONS(843), + [sym__digits] = ACTIONS(843), + [aux_sym__newline_token1] = ACTIONS(843), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(843), + [sym__indented_chunk_start] = ACTIONS(843), + [sym_atx_h1_marker] = ACTIONS(843), + [sym_atx_h2_marker] = ACTIONS(843), + [sym_atx_h3_marker] = ACTIONS(843), + [sym_atx_h4_marker] = ACTIONS(843), + [sym_atx_h5_marker] = ACTIONS(843), + [sym_atx_h6_marker] = ACTIONS(843), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(843), + [sym__thematic_break] = ACTIONS(843), + [sym__list_marker_minus] = ACTIONS(843), + [sym__list_marker_plus] = ACTIONS(843), + [sym__list_marker_star] = ACTIONS(843), + [sym__list_marker_parenthesis] = ACTIONS(843), + [sym__list_marker_dot] = ACTIONS(843), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(843), + [sym__list_marker_star_dont_interrupt] = ACTIONS(843), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(843), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(843), + [sym__fenced_code_block_start_backtick] = ACTIONS(843), + [sym__fenced_code_block_start_tilde] = ACTIONS(843), + [sym__blank_line_start] = ACTIONS(843), + [sym__code_span_start] = ACTIONS(843), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(843), + [sym__emphasis_open_underscore] = ACTIONS(843), }, [314] = { - [aux_sym__ignore_matching_tokens] = STATE(303), - [aux_sym__html_block_1_token1] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_BSLASH] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym__] = ACTIONS(512), - [anon_sym_BQUOTE] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(514), - [anon_sym_LT_QMARK] = ACTIONS(514), - [aux_sym__html_block_4_token1] = ACTIONS(514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(512), - [aux_sym__html_block_6_token1] = ACTIONS(514), - [aux_sym__html_block_6_token2] = ACTIONS(512), - [sym__open_tag_html_block] = ACTIONS(512), - [sym__open_tag_html_block_newline] = ACTIONS(512), - [sym__closing_tag_html_block] = ACTIONS(512), - [sym__closing_tag_html_block_newline] = ACTIONS(512), - [sym_backslash_escape] = ACTIONS(512), - [sym_uri_autolink] = ACTIONS(512), - [sym_email_autolink] = ACTIONS(512), - [sym_entity_reference] = ACTIONS(512), - [sym_numeric_character_reference] = ACTIONS(512), - [sym__whitespace_ge_2] = ACTIONS(512), - [aux_sym__whitespace_token1] = ACTIONS(514), - [sym__word_no_digit] = ACTIONS(512), - [sym__digits] = ACTIONS(512), - [aux_sym__newline_token1] = ACTIONS(512), - [sym__block_close] = ACTIONS(512), - [sym__block_continuation] = ACTIONS(1477), - [sym__block_quote_start] = ACTIONS(512), - [sym__indented_chunk_start] = ACTIONS(512), - [sym_atx_h1_marker] = ACTIONS(512), - [sym_atx_h2_marker] = ACTIONS(512), - [sym_atx_h3_marker] = ACTIONS(512), - [sym_atx_h4_marker] = ACTIONS(512), - [sym_atx_h5_marker] = ACTIONS(512), - [sym_atx_h6_marker] = ACTIONS(512), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(512), - [sym__thematic_break] = ACTIONS(512), - [sym__list_marker_minus] = ACTIONS(512), - [sym__list_marker_plus] = ACTIONS(512), - [sym__list_marker_star] = ACTIONS(512), - [sym__list_marker_parenthesis] = ACTIONS(512), - [sym__list_marker_dot] = ACTIONS(512), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(512), - [sym__list_marker_star_dont_interrupt] = ACTIONS(512), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(512), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(512), - [sym__fenced_code_block_start_backtick] = ACTIONS(512), - [sym__fenced_code_block_start_tilde] = ACTIONS(512), - [sym__blank_line_start] = ACTIONS(512), - [sym__code_span_start] = ACTIONS(512), - [sym__last_token_whitespace] = ACTIONS(1477), - [sym__emphasis_open_star] = ACTIONS(512), - [sym__emphasis_open_underscore] = ACTIONS(512), + [aux_sym__ignore_matching_tokens] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(849), + [aux_sym__html_block_1_token1] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_POUND] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_SQUOTE] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_BSLASH] = ACTIONS(851), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym__] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), + [anon_sym_LT_QMARK] = ACTIONS(851), + [aux_sym__html_block_4_token1] = ACTIONS(851), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), + [aux_sym__html_block_6_token1] = ACTIONS(851), + [aux_sym__html_block_6_token2] = ACTIONS(849), + [sym__open_tag_html_block] = ACTIONS(849), + [sym__open_tag_html_block_newline] = ACTIONS(849), + [sym__closing_tag_html_block] = ACTIONS(849), + [sym__closing_tag_html_block_newline] = ACTIONS(849), + [sym_backslash_escape] = ACTIONS(849), + [sym_uri_autolink] = ACTIONS(849), + [sym_email_autolink] = ACTIONS(849), + [sym_entity_reference] = ACTIONS(849), + [sym_numeric_character_reference] = ACTIONS(849), + [sym__whitespace_ge_2] = ACTIONS(849), + [aux_sym__whitespace_token1] = ACTIONS(851), + [sym__word_no_digit] = ACTIONS(849), + [sym__digits] = ACTIONS(849), + [aux_sym__newline_token1] = ACTIONS(849), + [sym__block_continuation] = ACTIONS(1468), + [sym__block_quote_start] = ACTIONS(849), + [sym__indented_chunk_start] = ACTIONS(849), + [sym_atx_h1_marker] = ACTIONS(849), + [sym_atx_h2_marker] = ACTIONS(849), + [sym_atx_h3_marker] = ACTIONS(849), + [sym_atx_h4_marker] = ACTIONS(849), + [sym_atx_h5_marker] = ACTIONS(849), + [sym_atx_h6_marker] = ACTIONS(849), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(849), + [sym__thematic_break] = ACTIONS(849), + [sym__list_marker_minus] = ACTIONS(849), + [sym__list_marker_plus] = ACTIONS(849), + [sym__list_marker_star] = ACTIONS(849), + [sym__list_marker_parenthesis] = ACTIONS(849), + [sym__list_marker_dot] = ACTIONS(849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), + [sym__fenced_code_block_start_backtick] = ACTIONS(849), + [sym__fenced_code_block_start_tilde] = ACTIONS(849), + [sym__blank_line_start] = ACTIONS(849), + [sym__code_span_start] = ACTIONS(849), + [sym__last_token_whitespace] = ACTIONS(1468), + [sym__emphasis_open_star] = ACTIONS(849), + [sym__emphasis_open_underscore] = ACTIONS(849), }, [315] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1100), - [aux_sym__html_block_1_token1] = ACTIONS(1100), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1100), - [anon_sym_PERCENT] = ACTIONS(1100), - [anon_sym_AMP] = ACTIONS(1102), - [anon_sym_SQUOTE] = ACTIONS(1100), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1100), - [anon_sym_STAR] = ACTIONS(1100), - [anon_sym_PLUS] = ACTIONS(1100), - [anon_sym_COMMA] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1100), - [anon_sym_DOT] = ACTIONS(1100), - [anon_sym_SLASH] = ACTIONS(1100), - [anon_sym_COLON] = ACTIONS(1100), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_EQ] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_QMARK] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1100), - [anon_sym_BSLASH] = ACTIONS(1102), - [anon_sym_RBRACK] = ACTIONS(1100), - [anon_sym_CARET] = ACTIONS(1100), - [anon_sym__] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_TILDE] = ACTIONS(1100), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1102), - [anon_sym_LT_QMARK] = ACTIONS(1102), - [aux_sym__html_block_4_token1] = ACTIONS(1102), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1100), - [aux_sym__html_block_6_token1] = ACTIONS(1102), - [aux_sym__html_block_6_token2] = ACTIONS(1100), - [sym__open_tag_html_block] = ACTIONS(1100), - [sym__open_tag_html_block_newline] = ACTIONS(1100), - [sym__closing_tag_html_block] = ACTIONS(1100), - [sym__closing_tag_html_block_newline] = ACTIONS(1100), - [sym_backslash_escape] = ACTIONS(1100), - [sym_uri_autolink] = ACTIONS(1100), - [sym_email_autolink] = ACTIONS(1100), - [sym_entity_reference] = ACTIONS(1100), - [sym_numeric_character_reference] = ACTIONS(1100), - [sym__whitespace_ge_2] = ACTIONS(1100), - [aux_sym__whitespace_token1] = ACTIONS(1102), - [sym__word_no_digit] = ACTIONS(1100), - [sym__digits] = ACTIONS(1100), - [aux_sym__newline_token1] = ACTIONS(1100), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1100), - [sym__indented_chunk_start] = ACTIONS(1100), - [sym_atx_h1_marker] = ACTIONS(1100), - [sym_atx_h2_marker] = ACTIONS(1100), - [sym_atx_h3_marker] = ACTIONS(1100), - [sym_atx_h4_marker] = ACTIONS(1100), - [sym_atx_h5_marker] = ACTIONS(1100), - [sym_atx_h6_marker] = ACTIONS(1100), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1100), - [sym__thematic_break] = ACTIONS(1100), - [sym__list_marker_minus] = ACTIONS(1100), - [sym__list_marker_plus] = ACTIONS(1100), - [sym__list_marker_star] = ACTIONS(1100), - [sym__list_marker_parenthesis] = ACTIONS(1100), - [sym__list_marker_dot] = ACTIONS(1100), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1100), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1100), - [sym__fenced_code_block_start_backtick] = ACTIONS(1100), - [sym__fenced_code_block_start_tilde] = ACTIONS(1100), - [sym__blank_line_start] = ACTIONS(1100), - [sym__code_span_start] = ACTIONS(1100), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1100), - [sym__emphasis_open_underscore] = ACTIONS(1100), + [aux_sym__ignore_matching_tokens] = STATE(199), + [ts_builtin_sym_end] = ACTIONS(849), + [aux_sym__html_block_1_token1] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [anon_sym_POUND] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_PERCENT] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_SQUOTE] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DOT] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_BSLASH] = ACTIONS(851), + [anon_sym_RBRACK] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym__] = ACTIONS(849), + [anon_sym_BQUOTE] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(851), + [anon_sym_LT_QMARK] = ACTIONS(851), + [aux_sym__html_block_4_token1] = ACTIONS(851), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(849), + [aux_sym__html_block_6_token1] = ACTIONS(851), + [aux_sym__html_block_6_token2] = ACTIONS(849), + [sym__open_tag_html_block] = ACTIONS(849), + [sym__open_tag_html_block_newline] = ACTIONS(849), + [sym__closing_tag_html_block] = ACTIONS(849), + [sym__closing_tag_html_block_newline] = ACTIONS(849), + [sym_backslash_escape] = ACTIONS(849), + [sym_uri_autolink] = ACTIONS(849), + [sym_email_autolink] = ACTIONS(849), + [sym_entity_reference] = ACTIONS(849), + [sym_numeric_character_reference] = ACTIONS(849), + [sym__whitespace_ge_2] = ACTIONS(849), + [aux_sym__whitespace_token1] = ACTIONS(851), + [sym__word_no_digit] = ACTIONS(849), + [sym__digits] = ACTIONS(849), + [aux_sym__newline_token1] = ACTIONS(849), + [sym__block_continuation] = ACTIONS(183), + [sym__block_quote_start] = ACTIONS(849), + [sym__indented_chunk_start] = ACTIONS(849), + [sym_atx_h1_marker] = ACTIONS(849), + [sym_atx_h2_marker] = ACTIONS(849), + [sym_atx_h3_marker] = ACTIONS(849), + [sym_atx_h4_marker] = ACTIONS(849), + [sym_atx_h5_marker] = ACTIONS(849), + [sym_atx_h6_marker] = ACTIONS(849), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(849), + [sym__thematic_break] = ACTIONS(849), + [sym__list_marker_minus] = ACTIONS(849), + [sym__list_marker_plus] = ACTIONS(849), + [sym__list_marker_star] = ACTIONS(849), + [sym__list_marker_parenthesis] = ACTIONS(849), + [sym__list_marker_dot] = ACTIONS(849), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(849), + [sym__list_marker_star_dont_interrupt] = ACTIONS(849), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(849), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(849), + [sym__fenced_code_block_start_backtick] = ACTIONS(849), + [sym__fenced_code_block_start_tilde] = ACTIONS(849), + [sym__blank_line_start] = ACTIONS(849), + [sym__code_span_start] = ACTIONS(849), + [sym__last_token_whitespace] = ACTIONS(183), + [sym__emphasis_open_star] = ACTIONS(849), + [sym__emphasis_open_underscore] = ACTIONS(849), }, [316] = { - [aux_sym__ignore_matching_tokens] = STATE(223), - [ts_builtin_sym_end] = ACTIONS(1004), - [aux_sym__html_block_1_token1] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1004), - [anon_sym_AT] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_BSLASH] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym__] = ACTIONS(1004), - [anon_sym_BQUOTE] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1006), - [anon_sym_LT_QMARK] = ACTIONS(1006), - [aux_sym__html_block_4_token1] = ACTIONS(1006), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1004), - [aux_sym__html_block_6_token1] = ACTIONS(1006), - [aux_sym__html_block_6_token2] = ACTIONS(1004), - [sym__open_tag_html_block] = ACTIONS(1004), - [sym__open_tag_html_block_newline] = ACTIONS(1004), - [sym__closing_tag_html_block] = ACTIONS(1004), - [sym__closing_tag_html_block_newline] = ACTIONS(1004), - [sym_backslash_escape] = ACTIONS(1004), - [sym_uri_autolink] = ACTIONS(1004), - [sym_email_autolink] = ACTIONS(1004), - [sym_entity_reference] = ACTIONS(1004), - [sym_numeric_character_reference] = ACTIONS(1004), - [sym__whitespace_ge_2] = ACTIONS(1004), - [aux_sym__whitespace_token1] = ACTIONS(1006), - [sym__word_no_digit] = ACTIONS(1004), - [sym__digits] = ACTIONS(1004), - [aux_sym__newline_token1] = ACTIONS(1004), - [sym__block_continuation] = ACTIONS(1479), - [sym__block_quote_start] = ACTIONS(1004), - [sym__indented_chunk_start] = ACTIONS(1004), - [sym_atx_h1_marker] = ACTIONS(1004), - [sym_atx_h2_marker] = ACTIONS(1004), - [sym_atx_h3_marker] = ACTIONS(1004), - [sym_atx_h4_marker] = ACTIONS(1004), - [sym_atx_h5_marker] = ACTIONS(1004), - [sym_atx_h6_marker] = ACTIONS(1004), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1004), - [sym__thematic_break] = ACTIONS(1004), - [sym__list_marker_minus] = ACTIONS(1004), - [sym__list_marker_plus] = ACTIONS(1004), - [sym__list_marker_star] = ACTIONS(1004), - [sym__list_marker_parenthesis] = ACTIONS(1004), - [sym__list_marker_dot] = ACTIONS(1004), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1004), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1004), - [sym__fenced_code_block_start_backtick] = ACTIONS(1004), - [sym__fenced_code_block_start_tilde] = ACTIONS(1004), - [sym__blank_line_start] = ACTIONS(1004), - [sym__code_span_start] = ACTIONS(1004), - [sym__last_token_whitespace] = ACTIONS(1479), - [sym__emphasis_open_star] = ACTIONS(1004), - [sym__emphasis_open_underscore] = ACTIONS(1004), + [sym_shortcut_link] = STATE(245), + [sym_full_reference_link] = STATE(245), + [sym_collapsed_reference_link] = STATE(245), + [sym_inline_link] = STATE(245), + [sym_image] = STATE(245), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym__soft_line_break] = STATE(245), + [sym_hard_line_break] = STATE(245), + [sym_html_tag] = STATE(245), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(245), + [sym__word] = STATE(245), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star] = STATE(245), + [aux_sym__inline_no_star] = STATE(245), + [sym__text_inline_no_star] = STATE(245), + [sym__emphasis_star] = STATE(747), + [sym__strong_emphasis_star] = STATE(245), + [sym__emphasis_underscore] = STATE(747), + [sym__strong_emphasis_underscore] = STATE(245), + [sym__code_span] = STATE(245), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(885), + [anon_sym_LT_QMARK] = ACTIONS(887), + [aux_sym__html_block_4_token1] = ACTIONS(889), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(893), + [sym_uri_autolink] = ACTIONS(893), + [sym_email_autolink] = ACTIONS(893), + [sym_entity_reference] = ACTIONS(893), + [sym_numeric_character_reference] = ACTIONS(893), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(893), + [sym__digits] = ACTIONS(893), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(899), + [sym__emphasis_open_star] = ACTIONS(901), + [sym__emphasis_open_underscore] = ACTIONS(903), + [sym__emphasis_close_star] = ACTIONS(1470), }, [317] = { - [aux_sym__ignore_matching_tokens] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(1106), - [aux_sym__html_block_1_token1] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1106), - [anon_sym_PERCENT] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1106), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_COMMA] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_DOT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1106), - [anon_sym_COLON] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_EQ] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(1106), - [anon_sym_QMARK] = ACTIONS(1106), - [anon_sym_AT] = ACTIONS(1106), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_BSLASH] = ACTIONS(1108), - [anon_sym_RBRACK] = ACTIONS(1106), - [anon_sym_CARET] = ACTIONS(1106), - [anon_sym__] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1106), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1108), - [anon_sym_LT_QMARK] = ACTIONS(1108), - [aux_sym__html_block_4_token1] = ACTIONS(1108), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1106), - [aux_sym__html_block_6_token1] = ACTIONS(1108), - [aux_sym__html_block_6_token2] = ACTIONS(1106), - [sym__open_tag_html_block] = ACTIONS(1106), - [sym__open_tag_html_block_newline] = ACTIONS(1106), - [sym__closing_tag_html_block] = ACTIONS(1106), - [sym__closing_tag_html_block_newline] = ACTIONS(1106), - [sym_backslash_escape] = ACTIONS(1106), - [sym_uri_autolink] = ACTIONS(1106), - [sym_email_autolink] = ACTIONS(1106), - [sym_entity_reference] = ACTIONS(1106), - [sym_numeric_character_reference] = ACTIONS(1106), - [sym__whitespace_ge_2] = ACTIONS(1106), - [aux_sym__whitespace_token1] = ACTIONS(1108), - [sym__word_no_digit] = ACTIONS(1106), - [sym__digits] = ACTIONS(1106), - [aux_sym__newline_token1] = ACTIONS(1106), - [sym__block_continuation] = ACTIONS(177), - [sym__block_quote_start] = ACTIONS(1106), - [sym__indented_chunk_start] = ACTIONS(1106), - [sym_atx_h1_marker] = ACTIONS(1106), - [sym_atx_h2_marker] = ACTIONS(1106), - [sym_atx_h3_marker] = ACTIONS(1106), - [sym_atx_h4_marker] = ACTIONS(1106), - [sym_atx_h5_marker] = ACTIONS(1106), - [sym_atx_h6_marker] = ACTIONS(1106), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1106), - [sym__thematic_break] = ACTIONS(1106), - [sym__list_marker_minus] = ACTIONS(1106), - [sym__list_marker_plus] = ACTIONS(1106), - [sym__list_marker_star] = ACTIONS(1106), - [sym__list_marker_parenthesis] = ACTIONS(1106), - [sym__list_marker_dot] = ACTIONS(1106), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1106), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1106), - [sym__fenced_code_block_start_backtick] = ACTIONS(1106), - [sym__fenced_code_block_start_tilde] = ACTIONS(1106), - [sym__blank_line_start] = ACTIONS(1106), - [sym__code_span_start] = ACTIONS(1106), - [sym__last_token_whitespace] = ACTIONS(177), - [sym__emphasis_open_star] = ACTIONS(1106), - [sym__emphasis_open_underscore] = ACTIONS(1106), + [aux_sym__ignore_matching_tokens] = STATE(288), + [ts_builtin_sym_end] = ACTIONS(855), + [aux_sym__html_block_1_token1] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_DQUOTE] = ACTIONS(855), + [anon_sym_POUND] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(855), + [anon_sym_RPAREN] = ACTIONS(855), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(857), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(855), + [anon_sym_BSLASH] = ACTIONS(857), + [anon_sym_RBRACK] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(855), + [anon_sym__] = ACTIONS(855), + [anon_sym_BQUOTE] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(857), + [anon_sym_LT_QMARK] = ACTIONS(857), + [aux_sym__html_block_4_token1] = ACTIONS(857), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(855), + [aux_sym__html_block_6_token1] = ACTIONS(857), + [aux_sym__html_block_6_token2] = ACTIONS(855), + [sym__open_tag_html_block] = ACTIONS(855), + [sym__open_tag_html_block_newline] = ACTIONS(855), + [sym__closing_tag_html_block] = ACTIONS(855), + [sym__closing_tag_html_block_newline] = ACTIONS(855), + [sym_backslash_escape] = ACTIONS(855), + [sym_uri_autolink] = ACTIONS(855), + [sym_email_autolink] = ACTIONS(855), + [sym_entity_reference] = ACTIONS(855), + [sym_numeric_character_reference] = ACTIONS(855), + [sym__whitespace_ge_2] = ACTIONS(855), + [aux_sym__whitespace_token1] = ACTIONS(857), + [sym__word_no_digit] = ACTIONS(855), + [sym__digits] = ACTIONS(855), + [aux_sym__newline_token1] = ACTIONS(855), + [sym__block_continuation] = ACTIONS(1472), + [sym__block_quote_start] = ACTIONS(855), + [sym__indented_chunk_start] = ACTIONS(855), + [sym_atx_h1_marker] = ACTIONS(855), + [sym_atx_h2_marker] = ACTIONS(855), + [sym_atx_h3_marker] = ACTIONS(855), + [sym_atx_h4_marker] = ACTIONS(855), + [sym_atx_h5_marker] = ACTIONS(855), + [sym_atx_h6_marker] = ACTIONS(855), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(855), + [sym__thematic_break] = ACTIONS(855), + [sym__list_marker_minus] = ACTIONS(855), + [sym__list_marker_plus] = ACTIONS(855), + [sym__list_marker_star] = ACTIONS(855), + [sym__list_marker_parenthesis] = ACTIONS(855), + [sym__list_marker_dot] = ACTIONS(855), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(855), + [sym__list_marker_star_dont_interrupt] = ACTIONS(855), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(855), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(855), + [sym__fenced_code_block_start_backtick] = ACTIONS(855), + [sym__fenced_code_block_start_tilde] = ACTIONS(855), + [sym__blank_line_start] = ACTIONS(855), + [sym__code_span_start] = ACTIONS(855), + [sym__last_token_whitespace] = ACTIONS(1472), + [sym__emphasis_open_star] = ACTIONS(855), + [sym__emphasis_open_underscore] = ACTIONS(855), }, [318] = { - [sym_shortcut_link] = STATE(254), - [sym_full_reference_link] = STATE(254), - [sym_collapsed_reference_link] = STATE(254), - [sym_inline_link] = STATE(254), - [sym_image] = STATE(254), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym__soft_line_break] = STATE(254), - [sym_hard_line_break] = STATE(254), - [sym_html_tag] = STATE(254), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(254), - [sym__word] = STATE(254), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore] = STATE(254), - [aux_sym__inline_no_underscore] = STATE(254), - [sym__text_inline_no_underscore] = STATE(254), - [sym__emphasis_star] = STATE(725), - [sym__strong_emphasis_star] = STATE(254), - [sym__emphasis_underscore] = STATE(686), - [sym__strong_emphasis_underscore] = STATE(254), - [sym__code_span] = STATE(254), - [anon_sym_BANG] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_BSLASH] = ACTIONS(639), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(641), - [anon_sym_LT_QMARK] = ACTIONS(643), - [aux_sym__html_block_4_token1] = ACTIONS(645), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(647), - [sym_backslash_escape] = ACTIONS(1481), - [sym_uri_autolink] = ACTIONS(1481), - [sym_email_autolink] = ACTIONS(1481), - [sym_entity_reference] = ACTIONS(1481), - [sym_numeric_character_reference] = ACTIONS(1481), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(1481), - [sym__digits] = ACTIONS(1481), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(655), - [sym__emphasis_open_star] = ACTIONS(657), - [sym__emphasis_open_underscore] = ACTIONS(659), + [sym__block_interrupt_paragraph] = STATE(1574), + [sym__blank_line] = STATE(1574), + [sym_block_quote] = STATE(1574), + [sym_atx_heading] = STATE(1574), + [sym_setext_h1_underline] = STATE(1574), + [sym_setext_h2_underline] = STATE(1574), + [sym_thematic_break] = STATE(1574), + [sym_fenced_code_block] = STATE(1574), + [sym__html_block_1] = STATE(1574), + [sym__html_block_2] = STATE(1574), + [sym__html_block_3] = STATE(1574), + [sym__html_block_4] = STATE(1574), + [sym__html_block_5] = STATE(1574), + [sym__html_block_6] = STATE(1574), + [aux_sym__html_block_1_token1] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1476), + [anon_sym_LT_QMARK] = ACTIONS(1478), + [aux_sym__html_block_4_token1] = ACTIONS(1480), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1482), + [aux_sym__html_block_6_token1] = ACTIONS(1484), + [aux_sym__html_block_6_token2] = ACTIONS(1486), + [sym_backslash_escape] = ACTIONS(419), + [sym_entity_reference] = ACTIONS(419), + [sym_numeric_character_reference] = ACTIONS(419), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [aux_sym__newline_token1] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__setext_h1_underline] = ACTIONS(1492), + [sym__setext_h2_underline] = ACTIONS(1494), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1498), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1502), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1506), }, [319] = { - [aux_sym__ignore_matching_tokens] = STATE(319), - [aux_sym__html_block_1_token1] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_BSLASH] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym__] = ACTIONS(520), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(522), - [anon_sym_LT_QMARK] = ACTIONS(522), - [aux_sym__html_block_4_token1] = ACTIONS(522), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(520), - [aux_sym__html_block_6_token1] = ACTIONS(522), - [aux_sym__html_block_6_token2] = ACTIONS(520), - [sym__open_tag_html_block] = ACTIONS(520), - [sym__open_tag_html_block_newline] = ACTIONS(520), - [sym__closing_tag_html_block] = ACTIONS(520), - [sym__closing_tag_html_block_newline] = ACTIONS(520), - [sym_backslash_escape] = ACTIONS(520), - [sym_uri_autolink] = ACTIONS(520), - [sym_email_autolink] = ACTIONS(520), - [sym_entity_reference] = ACTIONS(520), - [sym_numeric_character_reference] = ACTIONS(520), - [sym__whitespace_ge_2] = ACTIONS(520), - [aux_sym__whitespace_token1] = ACTIONS(522), - [sym__word_no_digit] = ACTIONS(520), - [sym__digits] = ACTIONS(520), - [aux_sym__newline_token1] = ACTIONS(520), - [sym__block_continuation] = ACTIONS(1483), - [sym__block_quote_start] = ACTIONS(520), - [sym__indented_chunk_start] = ACTIONS(520), - [sym_atx_h1_marker] = ACTIONS(520), - [sym_atx_h2_marker] = ACTIONS(520), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(520), - [sym_atx_h5_marker] = ACTIONS(520), - [sym_atx_h6_marker] = ACTIONS(520), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(520), - [sym__thematic_break] = ACTIONS(520), - [sym__list_marker_minus] = ACTIONS(520), - [sym__list_marker_plus] = ACTIONS(520), - [sym__list_marker_star] = ACTIONS(520), - [sym__list_marker_parenthesis] = ACTIONS(520), - [sym__list_marker_dot] = ACTIONS(520), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(520), - [sym__list_marker_star_dont_interrupt] = ACTIONS(520), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(520), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(520), - [sym__fenced_code_block_start_backtick] = ACTIONS(520), - [sym__fenced_code_block_start_tilde] = ACTIONS(520), - [sym__blank_line_start] = ACTIONS(520), - [sym__code_span_start] = ACTIONS(520), - [sym__last_token_whitespace] = ACTIONS(1483), - [sym__emphasis_open_star] = ACTIONS(520), - [sym__emphasis_open_underscore] = ACTIONS(520), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(11), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(9), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(9), + [anon_sym_GT] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_BSLASH] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(9), + [anon_sym__] = ACTIONS(9), + [anon_sym_BQUOTE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PIPE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(9), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), }, [320] = { - [sym_shortcut_link] = STATE(324), - [sym_full_reference_link] = STATE(324), - [sym_collapsed_reference_link] = STATE(324), - [sym_inline_link] = STATE(324), - [sym_image] = STATE(324), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(324), - [sym_hard_line_break] = STATE(324), - [sym_html_tag] = STATE(324), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(324), - [sym__word] = STATE(324), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(324), - [aux_sym__inline] = STATE(324), - [sym__text_inline] = STATE(324), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(324), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(324), - [sym__code_span] = STATE(324), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -59969,9 +59985,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1510), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -59979,142 +59995,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1488), - [sym_uri_autolink] = ACTIONS(1488), - [sym_email_autolink] = ACTIONS(1488), - [sym_entity_reference] = ACTIONS(1488), - [sym_numeric_character_reference] = ACTIONS(1488), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1488), - [sym__digits] = ACTIONS(1488), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [321] = { - [sym_shortcut_link] = STATE(116), - [sym_full_reference_link] = STATE(116), - [sym_collapsed_reference_link] = STATE(116), - [sym_inline_link] = STATE(116), - [sym_image] = STATE(116), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym__soft_line_break] = STATE(116), - [sym_hard_line_break] = STATE(116), - [sym_html_tag] = STATE(116), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(116), - [sym__word] = STATE(116), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore] = STATE(116), - [aux_sym__inline_no_underscore] = STATE(116), - [sym__text_inline_no_underscore] = STATE(116), - [sym__emphasis_star] = STATE(725), - [sym__strong_emphasis_star] = STATE(116), - [sym__emphasis_underscore] = STATE(822), - [sym__strong_emphasis_underscore] = STATE(116), - [sym__code_span] = STATE(116), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_COLON] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_BSLASH] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym__] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1508), - [anon_sym_LT_QMARK] = ACTIONS(1511), - [aux_sym__html_block_4_token1] = ACTIONS(1514), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1517), - [sym_backslash_escape] = ACTIONS(1520), - [sym_uri_autolink] = ACTIONS(1520), - [sym_email_autolink] = ACTIONS(1520), - [sym_entity_reference] = ACTIONS(1520), - [sym_numeric_character_reference] = ACTIONS(1520), - [sym__whitespace_ge_2] = ACTIONS(1523), - [aux_sym__whitespace_token1] = ACTIONS(1526), - [sym__word_no_digit] = ACTIONS(1520), - [sym__digits] = ACTIONS(1520), - [aux_sym__newline_token1] = ACTIONS(1529), - [sym__code_span_start] = ACTIONS(1532), - [sym__emphasis_open_star] = ACTIONS(1535), - [sym__emphasis_open_underscore] = ACTIONS(1538), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(334), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_DOLLAR] = ACTIONS(9), + [anon_sym_PERCENT] = ACTIONS(9), + [anon_sym_AMP] = ACTIONS(11), + [anon_sym_SQUOTE] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_RPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(9), + [anon_sym_PLUS] = ACTIONS(9), + [anon_sym_COMMA] = ACTIONS(9), + [anon_sym_DASH] = ACTIONS(9), + [anon_sym_DOT] = ACTIONS(9), + [anon_sym_SLASH] = ACTIONS(9), + [anon_sym_COLON] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_LT] = ACTIONS(13), + [anon_sym_EQ] = ACTIONS(9), + [anon_sym_GT] = ACTIONS(9), + [anon_sym_QMARK] = ACTIONS(9), + [anon_sym_AT] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(1135), + [anon_sym_BSLASH] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(9), + [anon_sym__] = ACTIONS(9), + [anon_sym_BQUOTE] = ACTIONS(9), + [anon_sym_LBRACE] = ACTIONS(9), + [anon_sym_PIPE] = ACTIONS(9), + [anon_sym_RBRACE] = ACTIONS(9), + [anon_sym_TILDE] = ACTIONS(9), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(69), + [sym__emphasis_open_star] = ACTIONS(71), + [sym__emphasis_open_underscore] = ACTIONS(73), }, [322] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -60137,9 +60153,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_RBRACK] = ACTIONS(1514), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -60147,58 +60163,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [323] = { - [sym_shortcut_link] = STATE(335), - [sym_full_reference_link] = STATE(335), - [sym_collapsed_reference_link] = STATE(335), - [sym_inline_link] = STATE(335), - [sym_image] = STATE(335), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(335), - [sym_hard_line_break] = STATE(335), - [sym_html_tag] = STATE(335), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(335), - [sym__word] = STATE(335), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(335), - [aux_sym__inline] = STATE(335), - [sym__text_inline] = STATE(335), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(335), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(335), - [sym__code_span] = STATE(335), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -60221,9 +60237,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1516), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -60231,58 +60247,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1543), - [sym_uri_autolink] = ACTIONS(1543), - [sym_email_autolink] = ACTIONS(1543), - [sym_entity_reference] = ACTIONS(1543), - [sym_numeric_character_reference] = ACTIONS(1543), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1543), - [sym__digits] = ACTIONS(1543), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [324] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -60305,9 +60321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_RBRACK] = ACTIONS(1518), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -60315,142 +60331,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [325] = { - [sym_shortcut_link] = STATE(338), - [sym_full_reference_link] = STATE(338), - [sym_collapsed_reference_link] = STATE(338), - [sym_inline_link] = STATE(338), - [sym_image] = STATE(338), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(338), - [sym_hard_line_break] = STATE(338), - [sym_html_tag] = STATE(338), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(338), - [sym__word] = STATE(338), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(338), - [aux_sym__inline] = STATE(338), - [sym__text_inline] = STATE(338), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(338), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(338), - [sym__code_span] = STATE(338), - [anon_sym_BANG] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(9), - [anon_sym_DASH] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(9), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(13), - [anon_sym_EQ] = ACTIONS(9), - [anon_sym_GT] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(9), - [anon_sym__] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_PIPE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1547), - [sym_uri_autolink] = ACTIONS(1547), - [sym_email_autolink] = ACTIONS(1547), - [sym_entity_reference] = ACTIONS(1547), - [sym_numeric_character_reference] = ACTIONS(1547), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1547), - [sym__digits] = ACTIONS(1547), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), + [sym_shortcut_link] = STATE(117), + [sym_full_reference_link] = STATE(117), + [sym_collapsed_reference_link] = STATE(117), + [sym_inline_link] = STATE(117), + [sym_image] = STATE(117), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym__soft_line_break] = STATE(117), + [sym_hard_line_break] = STATE(117), + [sym_html_tag] = STATE(117), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(117), + [sym__word] = STATE(117), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore] = STATE(117), + [aux_sym__inline_no_underscore] = STATE(117), + [sym__text_inline_no_underscore] = STATE(117), + [sym__emphasis_star] = STATE(744), + [sym__strong_emphasis_star] = STATE(117), + [sym__emphasis_underscore] = STATE(715), + [sym__strong_emphasis_underscore] = STATE(117), + [sym__code_span] = STATE(117), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1523), + [anon_sym_DOLLAR] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_BSLASH] = ACTIONS(1535), + [anon_sym_RBRACK] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym__] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1538), + [anon_sym_LT_QMARK] = ACTIONS(1541), + [aux_sym__html_block_4_token1] = ACTIONS(1544), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1547), + [sym_backslash_escape] = ACTIONS(1550), + [sym_uri_autolink] = ACTIONS(1550), + [sym_email_autolink] = ACTIONS(1550), + [sym_entity_reference] = ACTIONS(1550), + [sym_numeric_character_reference] = ACTIONS(1550), + [sym__whitespace_ge_2] = ACTIONS(1553), + [aux_sym__whitespace_token1] = ACTIONS(1556), + [sym__word_no_digit] = ACTIONS(1550), + [sym__digits] = ACTIONS(1550), + [aux_sym__newline_token1] = ACTIONS(1559), + [sym__code_span_start] = ACTIONS(1562), + [sym__emphasis_open_star] = ACTIONS(1565), + [sym__emphasis_open_underscore] = ACTIONS(1568), }, [326] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), + [sym_shortcut_link] = STATE(202), + [sym_full_reference_link] = STATE(202), + [sym_collapsed_reference_link] = STATE(202), + [sym_inline_link] = STATE(202), + [sym_image] = STATE(202), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym__soft_line_break] = STATE(202), + [sym_hard_line_break] = STATE(202), + [sym_html_tag] = STATE(202), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(202), + [sym__word] = STATE(202), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star] = STATE(202), + [aux_sym__inline_no_star] = STATE(202), + [sym__text_inline_no_star] = STATE(202), + [sym__emphasis_star] = STATE(714), + [sym__strong_emphasis_star] = STATE(202), + [sym__emphasis_underscore] = STATE(747), + [sym__strong_emphasis_underscore] = STATE(202), + [sym__code_span] = STATE(202), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_COLON] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_GT] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1589), + [anon_sym_LT_QMARK] = ACTIONS(1592), + [aux_sym__html_block_4_token1] = ACTIONS(1595), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1598), + [sym_backslash_escape] = ACTIONS(1601), + [sym_uri_autolink] = ACTIONS(1601), + [sym_email_autolink] = ACTIONS(1601), + [sym_entity_reference] = ACTIONS(1601), + [sym_numeric_character_reference] = ACTIONS(1601), + [sym__whitespace_ge_2] = ACTIONS(1604), + [aux_sym__whitespace_token1] = ACTIONS(1607), + [sym__word_no_digit] = ACTIONS(1601), + [sym__digits] = ACTIONS(1601), + [aux_sym__newline_token1] = ACTIONS(1559), + [sym__code_span_start] = ACTIONS(1610), + [sym__emphasis_open_star] = ACTIONS(1613), + [sym__emphasis_open_underscore] = ACTIONS(1616), + }, + [327] = { + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(324), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -60473,9 +60573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -60483,58 +60583,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [327] = { - [sym_shortcut_link] = STATE(326), - [sym_full_reference_link] = STATE(326), - [sym_collapsed_reference_link] = STATE(326), - [sym_inline_link] = STATE(326), - [sym_image] = STATE(326), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(326), - [sym_hard_line_break] = STATE(326), - [sym_html_tag] = STATE(326), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(326), - [sym__word] = STATE(326), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(326), - [aux_sym__inline] = STATE(326), - [sym__text_inline] = STATE(326), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(326), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(326), - [sym__code_span] = STATE(326), + [328] = { + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -60557,9 +60657,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1619), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -60567,142 +60667,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1551), - [sym_uri_autolink] = ACTIONS(1551), - [sym_email_autolink] = ACTIONS(1551), - [sym_entity_reference] = ACTIONS(1551), - [sym_numeric_character_reference] = ACTIONS(1551), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1551), - [sym__digits] = ACTIONS(1551), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [328] = { - [sym_shortcut_link] = STATE(178), - [sym_full_reference_link] = STATE(178), - [sym_collapsed_reference_link] = STATE(178), - [sym_inline_link] = STATE(178), - [sym_image] = STATE(178), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym__soft_line_break] = STATE(178), - [sym_hard_line_break] = STATE(178), - [sym_html_tag] = STATE(178), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(178), - [sym__word] = STATE(178), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star] = STATE(178), - [aux_sym__inline_no_star] = STATE(178), - [sym__text_inline_no_star] = STATE(178), - [sym__emphasis_star] = STATE(778), - [sym__strong_emphasis_star] = STATE(178), - [sym__emphasis_underscore] = STATE(780), - [sym__strong_emphasis_underscore] = STATE(178), - [sym__code_span] = STATE(178), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_COLON] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_AT] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_BSLASH] = ACTIONS(1568), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_BQUOTE] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1571), - [anon_sym_LT_QMARK] = ACTIONS(1574), - [aux_sym__html_block_4_token1] = ACTIONS(1577), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1580), - [sym_backslash_escape] = ACTIONS(1583), - [sym_uri_autolink] = ACTIONS(1583), - [sym_email_autolink] = ACTIONS(1583), - [sym_entity_reference] = ACTIONS(1583), - [sym_numeric_character_reference] = ACTIONS(1583), - [sym__whitespace_ge_2] = ACTIONS(1586), - [aux_sym__whitespace_token1] = ACTIONS(1589), - [sym__word_no_digit] = ACTIONS(1583), - [sym__digits] = ACTIONS(1583), - [aux_sym__newline_token1] = ACTIONS(1529), - [sym__code_span_start] = ACTIONS(1592), - [sym__emphasis_open_star] = ACTIONS(1595), - [sym__emphasis_open_underscore] = ACTIONS(1598), - }, [329] = { - [sym_shortcut_link] = STATE(336), - [sym_full_reference_link] = STATE(336), - [sym_collapsed_reference_link] = STATE(336), - [sym_inline_link] = STATE(336), - [sym_image] = STATE(336), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(336), - [sym_hard_line_break] = STATE(336), - [sym_html_tag] = STATE(336), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(336), - [sym__word] = STATE(336), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(336), - [aux_sym__inline] = STATE(336), - [sym__text_inline] = STATE(336), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(336), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(336), - [sym__code_span] = STATE(336), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(319), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -60725,9 +60741,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -60735,394 +60751,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1601), - [sym_uri_autolink] = ACTIONS(1601), - [sym_email_autolink] = ACTIONS(1601), - [sym_entity_reference] = ACTIONS(1601), - [sym_numeric_character_reference] = ACTIONS(1601), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1601), - [sym__digits] = ACTIONS(1601), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [330] = { - [sym__block_interrupt_paragraph] = STATE(1559), - [sym__blank_line] = STATE(1559), - [sym_block_quote] = STATE(1559), - [sym_atx_heading] = STATE(1559), - [sym_setext_h1_underline] = STATE(1559), - [sym_setext_h2_underline] = STATE(1559), - [sym_thematic_break] = STATE(1559), - [sym_fenced_code_block] = STATE(1559), - [sym__html_block_1] = STATE(1559), - [sym__html_block_2] = STATE(1559), - [sym__html_block_3] = STATE(1559), - [sym__html_block_4] = STATE(1559), - [sym__html_block_5] = STATE(1559), - [sym__html_block_6] = STATE(1559), - [aux_sym__html_block_1_token1] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1605), - [anon_sym_LT_QMARK] = ACTIONS(1607), - [aux_sym__html_block_4_token1] = ACTIONS(1609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1611), - [aux_sym__html_block_6_token1] = ACTIONS(1613), - [aux_sym__html_block_6_token2] = ACTIONS(1615), - [sym_backslash_escape] = ACTIONS(394), - [sym_entity_reference] = ACTIONS(394), - [sym_numeric_character_reference] = ACTIONS(394), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [aux_sym__newline_token1] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(1617), - [sym_atx_h1_marker] = ACTIONS(1619), - [sym_atx_h2_marker] = ACTIONS(1619), - [sym_atx_h3_marker] = ACTIONS(1619), - [sym_atx_h4_marker] = ACTIONS(1619), - [sym_atx_h5_marker] = ACTIONS(1619), - [sym_atx_h6_marker] = ACTIONS(1619), - [sym__setext_h1_underline] = ACTIONS(1621), - [sym__setext_h2_underline] = ACTIONS(1623), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1625), - [sym__thematic_break] = ACTIONS(1627), - [sym__list_marker_minus] = ACTIONS(1629), - [sym__list_marker_plus] = ACTIONS(1629), - [sym__list_marker_star] = ACTIONS(1629), - [sym__list_marker_parenthesis] = ACTIONS(1629), - [sym__list_marker_dot] = ACTIONS(1629), - [sym__fenced_code_block_start_backtick] = ACTIONS(1631), - [sym__fenced_code_block_start_tilde] = ACTIONS(1633), - [sym__blank_line_start] = ACTIONS(1635), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_RPAREN] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(1624), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_DOT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1624), + [anon_sym_AT] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1624), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym__] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_TILDE] = ACTIONS(1624), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1639), + [anon_sym_LT_QMARK] = ACTIONS(1642), + [aux_sym__html_block_4_token1] = ACTIONS(1645), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1648), + [sym_backslash_escape] = ACTIONS(1651), + [sym_uri_autolink] = ACTIONS(1651), + [sym_email_autolink] = ACTIONS(1651), + [sym_entity_reference] = ACTIONS(1651), + [sym_numeric_character_reference] = ACTIONS(1651), + [sym__whitespace_ge_2] = ACTIONS(1654), + [aux_sym__whitespace_token1] = ACTIONS(1657), + [sym__word_no_digit] = ACTIONS(1651), + [sym__digits] = ACTIONS(1651), + [aux_sym__newline_token1] = ACTIONS(1660), + [sym__code_span_start] = ACTIONS(1663), + [sym__emphasis_open_star] = ACTIONS(1666), + [sym__emphasis_open_underscore] = ACTIONS(1669), }, [331] = { - [sym_shortcut_link] = STATE(167), - [sym_full_reference_link] = STATE(167), - [sym_collapsed_reference_link] = STATE(167), - [sym_inline_link] = STATE(167), - [sym_image] = STATE(167), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym__soft_line_break] = STATE(167), - [sym_hard_line_break] = STATE(167), - [sym_html_tag] = STATE(167), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(167), - [sym__word] = STATE(167), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star] = STATE(167), - [aux_sym__inline_no_star] = STATE(167), - [sym__text_inline_no_star] = STATE(167), - [sym__emphasis_star] = STATE(736), - [sym__strong_emphasis_star] = STATE(167), - [sym__emphasis_underscore] = STATE(780), - [sym__strong_emphasis_underscore] = STATE(167), - [sym__code_span] = STATE(167), - [anon_sym_BANG] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(834), - [anon_sym_BSLASH] = ACTIONS(836), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(838), - [anon_sym_LT_QMARK] = ACTIONS(840), - [aux_sym__html_block_4_token1] = ACTIONS(842), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(844), - [sym_backslash_escape] = ACTIONS(1637), - [sym_uri_autolink] = ACTIONS(1637), - [sym_email_autolink] = ACTIONS(1637), - [sym_entity_reference] = ACTIONS(1637), - [sym_numeric_character_reference] = ACTIONS(1637), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(1637), - [sym__digits] = ACTIONS(1637), + [sym_shortcut_link] = STATE(165), + [sym_full_reference_link] = STATE(165), + [sym_collapsed_reference_link] = STATE(165), + [sym_inline_link] = STATE(165), + [sym_image] = STATE(165), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym__soft_line_break] = STATE(165), + [sym_hard_line_break] = STATE(165), + [sym_html_tag] = STATE(165), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(165), + [sym__word] = STATE(165), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star] = STATE(165), + [aux_sym__inline_no_star] = STATE(165), + [sym__text_inline_no_star] = STATE(165), + [sym__emphasis_star] = STATE(731), + [sym__strong_emphasis_star] = STATE(165), + [sym__emphasis_underscore] = STATE(747), + [sym__strong_emphasis_underscore] = STATE(165), + [sym__code_span] = STATE(165), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_BSLASH] = ACTIONS(883), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(885), + [anon_sym_LT_QMARK] = ACTIONS(887), + [aux_sym__html_block_4_token1] = ACTIONS(889), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(891), + [sym_backslash_escape] = ACTIONS(1672), + [sym_uri_autolink] = ACTIONS(1672), + [sym_email_autolink] = ACTIONS(1672), + [sym_entity_reference] = ACTIONS(1672), + [sym_numeric_character_reference] = ACTIONS(1672), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(1672), + [sym__digits] = ACTIONS(1672), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(852), - [sym__emphasis_open_star] = ACTIONS(854), - [sym__emphasis_open_underscore] = ACTIONS(856), + [sym__code_span_start] = ACTIONS(899), + [sym__emphasis_open_star] = ACTIONS(901), + [sym__emphasis_open_underscore] = ACTIONS(903), }, [332] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), - [anon_sym_BANG] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(9), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_DOLLAR] = ACTIONS(9), - [anon_sym_PERCENT] = ACTIONS(9), - [anon_sym_AMP] = ACTIONS(11), - [anon_sym_SQUOTE] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(9), - [anon_sym_RPAREN] = ACTIONS(9), - [anon_sym_STAR] = ACTIONS(9), - [anon_sym_PLUS] = ACTIONS(9), - [anon_sym_COMMA] = ACTIONS(9), - [anon_sym_DASH] = ACTIONS(9), - [anon_sym_DOT] = ACTIONS(9), - [anon_sym_SLASH] = ACTIONS(9), - [anon_sym_COLON] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_LT] = ACTIONS(13), - [anon_sym_EQ] = ACTIONS(9), - [anon_sym_GT] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(9), - [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1639), - [anon_sym_CARET] = ACTIONS(9), - [anon_sym__] = ACTIONS(9), - [anon_sym_BQUOTE] = ACTIONS(9), - [anon_sym_LBRACE] = ACTIONS(9), - [anon_sym_PIPE] = ACTIONS(9), - [anon_sym_RBRACE] = ACTIONS(9), - [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(69), - [sym__emphasis_open_star] = ACTIONS(71), - [sym__emphasis_open_underscore] = ACTIONS(73), + [aux_sym__html_block_1_token1] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_COLON] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1676), + [anon_sym_LT_QMARK] = ACTIONS(1676), + [aux_sym__html_block_4_token1] = ACTIONS(1676), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1674), + [aux_sym__html_block_6_token1] = ACTIONS(1676), + [aux_sym__html_block_6_token2] = ACTIONS(1674), + [sym__open_tag_html_block] = ACTIONS(1674), + [sym__open_tag_html_block_newline] = ACTIONS(1674), + [sym__closing_tag_html_block] = ACTIONS(1674), + [sym__closing_tag_html_block_newline] = ACTIONS(1674), + [sym_backslash_escape] = ACTIONS(1674), + [sym_uri_autolink] = ACTIONS(1674), + [sym_email_autolink] = ACTIONS(1674), + [sym_entity_reference] = ACTIONS(1674), + [sym_numeric_character_reference] = ACTIONS(1674), + [sym__whitespace_ge_2] = ACTIONS(1674), + [aux_sym__whitespace_token1] = ACTIONS(1676), + [sym__word_no_digit] = ACTIONS(1674), + [sym__digits] = ACTIONS(1674), + [aux_sym__newline_token1] = ACTIONS(1674), + [sym__block_close] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__setext_h1_underline] = ACTIONS(1674), + [sym__setext_h2_underline] = ACTIONS(1674), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym__code_span_start] = ACTIONS(1674), + [sym__emphasis_open_star] = ACTIONS(1674), + [sym__emphasis_open_underscore] = ACTIONS(1674), }, [333] = { - [aux_sym__html_block_1_token1] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_PERCENT] = ACTIONS(1641), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_SLASH] = ACTIONS(1641), - [anon_sym_COLON] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1643), - [anon_sym_EQ] = ACTIONS(1641), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_AT] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_BSLASH] = ACTIONS(1643), - [anon_sym_RBRACK] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1641), - [anon_sym__] = ACTIONS(1641), - [anon_sym_BQUOTE] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_TILDE] = ACTIONS(1641), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1643), - [anon_sym_LT_QMARK] = ACTIONS(1643), - [aux_sym__html_block_4_token1] = ACTIONS(1643), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1641), - [aux_sym__html_block_6_token1] = ACTIONS(1643), - [aux_sym__html_block_6_token2] = ACTIONS(1641), - [sym__open_tag_html_block] = ACTIONS(1641), - [sym__open_tag_html_block_newline] = ACTIONS(1641), - [sym__closing_tag_html_block] = ACTIONS(1641), - [sym__closing_tag_html_block_newline] = ACTIONS(1641), - [sym_backslash_escape] = ACTIONS(1641), - [sym_uri_autolink] = ACTIONS(1641), - [sym_email_autolink] = ACTIONS(1641), - [sym_entity_reference] = ACTIONS(1641), - [sym_numeric_character_reference] = ACTIONS(1641), - [sym__whitespace_ge_2] = ACTIONS(1641), - [aux_sym__whitespace_token1] = ACTIONS(1643), - [sym__word_no_digit] = ACTIONS(1641), - [sym__digits] = ACTIONS(1641), - [aux_sym__newline_token1] = ACTIONS(1641), - [sym__block_close] = ACTIONS(1641), - [sym__block_quote_start] = ACTIONS(1641), - [sym__indented_chunk_start] = ACTIONS(1641), - [sym_atx_h1_marker] = ACTIONS(1641), - [sym_atx_h2_marker] = ACTIONS(1641), - [sym_atx_h3_marker] = ACTIONS(1641), - [sym_atx_h4_marker] = ACTIONS(1641), - [sym_atx_h5_marker] = ACTIONS(1641), - [sym_atx_h6_marker] = ACTIONS(1641), - [sym__setext_h1_underline] = ACTIONS(1641), - [sym__setext_h2_underline] = ACTIONS(1641), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1641), - [sym__thematic_break] = ACTIONS(1641), - [sym__list_marker_minus] = ACTIONS(1641), - [sym__list_marker_plus] = ACTIONS(1641), - [sym__list_marker_star] = ACTIONS(1641), - [sym__list_marker_parenthesis] = ACTIONS(1641), - [sym__list_marker_dot] = ACTIONS(1641), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1641), - [sym__fenced_code_block_start_backtick] = ACTIONS(1641), - [sym__fenced_code_block_start_tilde] = ACTIONS(1641), - [sym__blank_line_start] = ACTIONS(1641), - [sym__code_span_start] = ACTIONS(1641), - [sym__emphasis_open_star] = ACTIONS(1641), - [sym__emphasis_open_underscore] = ACTIONS(1641), + [aux_sym__ignore_matching_tokens] = STATE(333), + [aux_sym__html_block_1_token1] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_DQUOTE] = ACTIONS(473), + [anon_sym_POUND] = ACTIONS(473), + [anon_sym_DOLLAR] = ACTIONS(473), + [anon_sym_PERCENT] = ACTIONS(473), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SQUOTE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(473), + [anon_sym_RPAREN] = ACTIONS(473), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_COMMA] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_DOT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(473), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(475), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_BSLASH] = ACTIONS(475), + [anon_sym_RBRACK] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym__] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(473), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_TILDE] = ACTIONS(473), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(475), + [anon_sym_LT_QMARK] = ACTIONS(475), + [aux_sym__html_block_4_token1] = ACTIONS(475), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(473), + [aux_sym__html_block_6_token1] = ACTIONS(475), + [aux_sym__html_block_6_token2] = ACTIONS(473), + [sym__open_tag_html_block] = ACTIONS(473), + [sym__open_tag_html_block_newline] = ACTIONS(473), + [sym__closing_tag_html_block] = ACTIONS(473), + [sym__closing_tag_html_block_newline] = ACTIONS(473), + [sym_backslash_escape] = ACTIONS(473), + [sym_uri_autolink] = ACTIONS(473), + [sym_email_autolink] = ACTIONS(473), + [sym_entity_reference] = ACTIONS(473), + [sym_numeric_character_reference] = ACTIONS(473), + [sym__whitespace_ge_2] = ACTIONS(473), + [aux_sym__whitespace_token1] = ACTIONS(475), + [sym__word_no_digit] = ACTIONS(473), + [sym__digits] = ACTIONS(473), + [aux_sym__newline_token1] = ACTIONS(473), + [sym__block_continuation] = ACTIONS(1678), + [sym__block_quote_start] = ACTIONS(473), + [sym__indented_chunk_start] = ACTIONS(473), + [sym_atx_h1_marker] = ACTIONS(473), + [sym_atx_h2_marker] = ACTIONS(473), + [sym_atx_h3_marker] = ACTIONS(473), + [sym_atx_h4_marker] = ACTIONS(473), + [sym_atx_h5_marker] = ACTIONS(473), + [sym_atx_h6_marker] = ACTIONS(473), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(473), + [sym__thematic_break] = ACTIONS(473), + [sym__list_marker_minus] = ACTIONS(473), + [sym__list_marker_plus] = ACTIONS(473), + [sym__list_marker_star] = ACTIONS(473), + [sym__list_marker_parenthesis] = ACTIONS(473), + [sym__list_marker_dot] = ACTIONS(473), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(473), + [sym__list_marker_star_dont_interrupt] = ACTIONS(473), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(473), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(473), + [sym__fenced_code_block_start_backtick] = ACTIONS(473), + [sym__fenced_code_block_start_tilde] = ACTIONS(473), + [sym__blank_line_start] = ACTIONS(473), + [sym__code_span_start] = ACTIONS(473), + [sym__last_token_whitespace] = ACTIONS(1678), + [sym__emphasis_open_star] = ACTIONS(473), + [sym__emphasis_open_underscore] = ACTIONS(473), }, [334] = { - [sym_shortcut_link] = STATE(332), - [sym_full_reference_link] = STATE(332), - [sym_collapsed_reference_link] = STATE(332), - [sym_inline_link] = STATE(332), - [sym_image] = STATE(332), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(332), - [sym_hard_line_break] = STATE(332), - [sym_html_tag] = STATE(332), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(332), - [sym__word] = STATE(332), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(332), - [aux_sym__inline] = STATE(332), - [sym__text_inline] = STATE(332), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(332), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(332), - [sym__code_span] = STATE(332), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(330), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -61145,9 +61161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1681), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -61155,58 +61171,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1645), - [sym_uri_autolink] = ACTIONS(1645), - [sym_email_autolink] = ACTIONS(1645), - [sym_entity_reference] = ACTIONS(1645), - [sym_numeric_character_reference] = ACTIONS(1645), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1645), - [sym__digits] = ACTIONS(1645), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [335] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(328), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -61229,9 +61245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1647), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -61239,58 +61255,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [336] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), + [ts_builtin_sym_end] = ACTIONS(1674), + [aux_sym__html_block_1_token1] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_COLON] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1676), + [anon_sym_LT_QMARK] = ACTIONS(1676), + [aux_sym__html_block_4_token1] = ACTIONS(1676), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1674), + [aux_sym__html_block_6_token1] = ACTIONS(1676), + [aux_sym__html_block_6_token2] = ACTIONS(1674), + [sym__open_tag_html_block] = ACTIONS(1674), + [sym__open_tag_html_block_newline] = ACTIONS(1674), + [sym__closing_tag_html_block] = ACTIONS(1674), + [sym__closing_tag_html_block_newline] = ACTIONS(1674), + [sym_backslash_escape] = ACTIONS(1674), + [sym_uri_autolink] = ACTIONS(1674), + [sym_email_autolink] = ACTIONS(1674), + [sym_entity_reference] = ACTIONS(1674), + [sym_numeric_character_reference] = ACTIONS(1674), + [sym__whitespace_ge_2] = ACTIONS(1674), + [aux_sym__whitespace_token1] = ACTIONS(1676), + [sym__word_no_digit] = ACTIONS(1674), + [sym__digits] = ACTIONS(1674), + [aux_sym__newline_token1] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__setext_h1_underline] = ACTIONS(1674), + [sym__setext_h2_underline] = ACTIONS(1674), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym__code_span_start] = ACTIONS(1674), + [sym__emphasis_open_star] = ACTIONS(1674), + [sym__emphasis_open_underscore] = ACTIONS(1674), + }, + [337] = { + [sym_shortcut_link] = STATE(297), + [sym_full_reference_link] = STATE(297), + [sym_collapsed_reference_link] = STATE(297), + [sym_inline_link] = STATE(297), + [sym_image] = STATE(297), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym__soft_line_break] = STATE(297), + [sym_hard_line_break] = STATE(297), + [sym_html_tag] = STATE(297), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(297), + [sym__word] = STATE(297), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore] = STATE(297), + [aux_sym__inline_no_underscore] = STATE(297), + [sym__text_inline_no_underscore] = STATE(297), + [sym__emphasis_star] = STATE(744), + [sym__strong_emphasis_star] = STATE(297), + [sym__emphasis_underscore] = STATE(693), + [sym__strong_emphasis_underscore] = STATE(297), + [sym__code_span] = STATE(297), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(636), + [anon_sym_BSLASH] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(640), + [anon_sym_LT_QMARK] = ACTIONS(642), + [aux_sym__html_block_4_token1] = ACTIONS(644), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(646), + [sym_backslash_escape] = ACTIONS(1683), + [sym_uri_autolink] = ACTIONS(1683), + [sym_email_autolink] = ACTIONS(1683), + [sym_entity_reference] = ACTIONS(1683), + [sym_numeric_character_reference] = ACTIONS(1683), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(1683), + [sym__digits] = ACTIONS(1683), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(654), + [sym__emphasis_open_star] = ACTIONS(656), + [sym__emphasis_open_underscore] = ACTIONS(658), + }, + [338] = { + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(320), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -61313,9 +61497,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1649), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -61323,142 +61507,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [337] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_DOLLAR] = ACTIONS(1654), - [anon_sym_PERCENT] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_PLUS] = ACTIONS(1654), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_DOT] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1654), - [anon_sym_COLON] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_EQ] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_QMARK] = ACTIONS(1654), - [anon_sym_AT] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_BSLASH] = ACTIONS(1666), - [anon_sym_RBRACK] = ACTIONS(1654), - [anon_sym_CARET] = ACTIONS(1654), - [anon_sym__] = ACTIONS(1654), - [anon_sym_BQUOTE] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1669), - [anon_sym_LT_QMARK] = ACTIONS(1672), - [aux_sym__html_block_4_token1] = ACTIONS(1675), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1678), - [sym_backslash_escape] = ACTIONS(1681), - [sym_uri_autolink] = ACTIONS(1681), - [sym_email_autolink] = ACTIONS(1681), - [sym_entity_reference] = ACTIONS(1681), - [sym_numeric_character_reference] = ACTIONS(1681), - [sym__whitespace_ge_2] = ACTIONS(1684), - [aux_sym__whitespace_token1] = ACTIONS(1687), - [sym__word_no_digit] = ACTIONS(1681), - [sym__digits] = ACTIONS(1681), - [aux_sym__newline_token1] = ACTIONS(1690), - [sym__code_span_start] = ACTIONS(1693), - [sym__emphasis_open_star] = ACTIONS(1696), - [sym__emphasis_open_underscore] = ACTIONS(1699), + [339] = { + [sym__block_interrupt_paragraph] = STATE(1581), + [sym__blank_line] = STATE(1581), + [sym_block_quote] = STATE(1581), + [sym_atx_heading] = STATE(1581), + [sym_setext_h1_underline] = STATE(1581), + [sym_setext_h2_underline] = STATE(1581), + [sym_thematic_break] = STATE(1581), + [sym_fenced_code_block] = STATE(1581), + [sym__html_block_1] = STATE(1581), + [sym__html_block_2] = STATE(1581), + [sym__html_block_3] = STATE(1581), + [sym__html_block_4] = STATE(1581), + [sym__html_block_5] = STATE(1581), + [sym__html_block_6] = STATE(1581), + [aux_sym__html_block_1_token1] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1476), + [anon_sym_LT_QMARK] = ACTIONS(1478), + [aux_sym__html_block_4_token1] = ACTIONS(1480), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1482), + [aux_sym__html_block_6_token1] = ACTIONS(1484), + [aux_sym__html_block_6_token2] = ACTIONS(1486), + [sym_backslash_escape] = ACTIONS(381), + [sym_entity_reference] = ACTIONS(381), + [sym_numeric_character_reference] = ACTIONS(381), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [aux_sym__newline_token1] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__setext_h1_underline] = ACTIONS(1492), + [sym__setext_h2_underline] = ACTIONS(1494), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1498), + [sym__list_marker_minus] = ACTIONS(1685), + [sym__list_marker_plus] = ACTIONS(1685), + [sym__list_marker_star] = ACTIONS(1685), + [sym__list_marker_parenthesis] = ACTIONS(1685), + [sym__list_marker_dot] = ACTIONS(1685), + [sym__fenced_code_block_start_backtick] = ACTIONS(1502), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1506), }, - [338] = { - [sym_shortcut_link] = STATE(337), - [sym_full_reference_link] = STATE(337), - [sym_collapsed_reference_link] = STATE(337), - [sym_inline_link] = STATE(337), - [sym_image] = STATE(337), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(337), - [sym_hard_line_break] = STATE(337), - [sym_html_tag] = STATE(337), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(337), - [sym__word] = STATE(337), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(337), - [aux_sym__inline] = STATE(337), - [sym__text_inline] = STATE(337), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(337), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(337), - [sym__code_span] = STATE(337), + [340] = { + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), + [aux_sym__inline] = STATE(323), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -61481,9 +61665,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -61491,226 +61675,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1293), - [sym_uri_autolink] = ACTIONS(1293), - [sym_email_autolink] = ACTIONS(1293), - [sym_entity_reference] = ACTIONS(1293), - [sym_numeric_character_reference] = ACTIONS(1293), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1293), - [sym__digits] = ACTIONS(1293), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1641), - [aux_sym__html_block_1_token1] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_PERCENT] = ACTIONS(1641), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(1641), - [anon_sym_SLASH] = ACTIONS(1641), - [anon_sym_COLON] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1643), - [anon_sym_EQ] = ACTIONS(1641), - [anon_sym_GT] = ACTIONS(1641), - [anon_sym_QMARK] = ACTIONS(1641), - [anon_sym_AT] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_BSLASH] = ACTIONS(1643), - [anon_sym_RBRACK] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1641), - [anon_sym__] = ACTIONS(1641), - [anon_sym_BQUOTE] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_TILDE] = ACTIONS(1641), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1643), - [anon_sym_LT_QMARK] = ACTIONS(1643), - [aux_sym__html_block_4_token1] = ACTIONS(1643), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1641), - [aux_sym__html_block_6_token1] = ACTIONS(1643), - [aux_sym__html_block_6_token2] = ACTIONS(1641), - [sym__open_tag_html_block] = ACTIONS(1641), - [sym__open_tag_html_block_newline] = ACTIONS(1641), - [sym__closing_tag_html_block] = ACTIONS(1641), - [sym__closing_tag_html_block_newline] = ACTIONS(1641), - [sym_backslash_escape] = ACTIONS(1641), - [sym_uri_autolink] = ACTIONS(1641), - [sym_email_autolink] = ACTIONS(1641), - [sym_entity_reference] = ACTIONS(1641), - [sym_numeric_character_reference] = ACTIONS(1641), - [sym__whitespace_ge_2] = ACTIONS(1641), - [aux_sym__whitespace_token1] = ACTIONS(1643), - [sym__word_no_digit] = ACTIONS(1641), - [sym__digits] = ACTIONS(1641), - [aux_sym__newline_token1] = ACTIONS(1641), - [sym__block_quote_start] = ACTIONS(1641), - [sym__indented_chunk_start] = ACTIONS(1641), - [sym_atx_h1_marker] = ACTIONS(1641), - [sym_atx_h2_marker] = ACTIONS(1641), - [sym_atx_h3_marker] = ACTIONS(1641), - [sym_atx_h4_marker] = ACTIONS(1641), - [sym_atx_h5_marker] = ACTIONS(1641), - [sym_atx_h6_marker] = ACTIONS(1641), - [sym__setext_h1_underline] = ACTIONS(1641), - [sym__setext_h2_underline] = ACTIONS(1641), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1641), - [sym__thematic_break] = ACTIONS(1641), - [sym__list_marker_minus] = ACTIONS(1641), - [sym__list_marker_plus] = ACTIONS(1641), - [sym__list_marker_star] = ACTIONS(1641), - [sym__list_marker_parenthesis] = ACTIONS(1641), - [sym__list_marker_dot] = ACTIONS(1641), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1641), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1641), - [sym__fenced_code_block_start_backtick] = ACTIONS(1641), - [sym__fenced_code_block_start_tilde] = ACTIONS(1641), - [sym__blank_line_start] = ACTIONS(1641), - [sym__code_span_start] = ACTIONS(1641), - [sym__emphasis_open_star] = ACTIONS(1641), - [sym__emphasis_open_underscore] = ACTIONS(1641), - }, - [340] = { - [sym__block_interrupt_paragraph] = STATE(1614), - [sym__blank_line] = STATE(1614), - [sym_block_quote] = STATE(1614), - [sym_atx_heading] = STATE(1614), - [sym_setext_h1_underline] = STATE(1614), - [sym_setext_h2_underline] = STATE(1614), - [sym_thematic_break] = STATE(1614), - [sym_fenced_code_block] = STATE(1614), - [sym__html_block_1] = STATE(1614), - [sym__html_block_2] = STATE(1614), - [sym__html_block_3] = STATE(1614), - [sym__html_block_4] = STATE(1614), - [sym__html_block_5] = STATE(1614), - [sym__html_block_6] = STATE(1614), - [aux_sym__html_block_1_token1] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1605), - [anon_sym_LT_QMARK] = ACTIONS(1607), - [aux_sym__html_block_4_token1] = ACTIONS(1609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1611), - [aux_sym__html_block_6_token1] = ACTIONS(1613), - [aux_sym__html_block_6_token2] = ACTIONS(1615), - [sym_backslash_escape] = ACTIONS(436), - [sym_entity_reference] = ACTIONS(436), - [sym_numeric_character_reference] = ACTIONS(436), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [aux_sym__newline_token1] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(1617), - [sym_atx_h1_marker] = ACTIONS(1619), - [sym_atx_h2_marker] = ACTIONS(1619), - [sym_atx_h3_marker] = ACTIONS(1619), - [sym_atx_h4_marker] = ACTIONS(1619), - [sym_atx_h5_marker] = ACTIONS(1619), - [sym_atx_h6_marker] = ACTIONS(1619), - [sym__setext_h1_underline] = ACTIONS(1621), - [sym__setext_h2_underline] = ACTIONS(1623), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1625), - [sym__thematic_break] = ACTIONS(1627), - [sym__list_marker_minus] = ACTIONS(1704), - [sym__list_marker_plus] = ACTIONS(1704), - [sym__list_marker_star] = ACTIONS(1704), - [sym__list_marker_parenthesis] = ACTIONS(1704), - [sym__list_marker_dot] = ACTIONS(1704), - [sym__fenced_code_block_start_backtick] = ACTIONS(1631), - [sym__fenced_code_block_start_tilde] = ACTIONS(1633), - [sym__blank_line_start] = ACTIONS(1635), - }, [341] = { - [sym_shortcut_link] = STATE(322), - [sym_full_reference_link] = STATE(322), - [sym_collapsed_reference_link] = STATE(322), - [sym_inline_link] = STATE(322), - [sym_image] = STATE(322), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym__soft_line_break] = STATE(322), - [sym_hard_line_break] = STATE(322), - [sym_html_tag] = STATE(322), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(322), - [sym__word] = STATE(322), - [sym__newline] = STATE(2114), - [sym__inline_element] = STATE(322), + [sym_shortcut_link] = STATE(912), + [sym_full_reference_link] = STATE(912), + [sym_collapsed_reference_link] = STATE(912), + [sym_inline_link] = STATE(912), + [sym_image] = STATE(912), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym__soft_line_break] = STATE(912), + [sym_hard_line_break] = STATE(912), + [sym_html_tag] = STATE(912), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(912), + [sym__word] = STATE(912), + [sym__newline] = STATE(2108), + [sym__inline_element] = STATE(912), [aux_sym__inline] = STATE(322), - [sym__text_inline] = STATE(322), - [sym__emphasis_star] = STATE(893), - [sym__strong_emphasis_star] = STATE(322), - [sym__emphasis_underscore] = STATE(893), - [sym__strong_emphasis_underscore] = STATE(322), - [sym__code_span] = STATE(322), + [sym__text_inline] = STATE(912), + [sym__emphasis_star] = STATE(911), + [sym__strong_emphasis_star] = STATE(912), + [sym__emphasis_underscore] = STATE(911), + [sym__strong_emphasis_underscore] = STATE(912), + [sym__code_span] = STATE(912), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -61733,9 +61749,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1512), [anon_sym_CARET] = ACTIONS(9), [anon_sym__] = ACTIONS(9), [anon_sym_BQUOTE] = ACTIONS(9), @@ -61743,140 +61759,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1706), - [sym_uri_autolink] = ACTIONS(1706), - [sym_email_autolink] = ACTIONS(1706), - [sym_entity_reference] = ACTIONS(1706), - [sym_numeric_character_reference] = ACTIONS(1706), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1706), - [sym__digits] = ACTIONS(1706), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(35), + [sym_uri_autolink] = ACTIONS(35), + [sym_email_autolink] = ACTIONS(35), + [sym_entity_reference] = ACTIONS(35), + [sym_numeric_character_reference] = ACTIONS(35), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(35), + [sym__digits] = ACTIONS(35), [aux_sym__newline_token1] = ACTIONS(41), [sym__code_span_start] = ACTIONS(69), [sym__emphasis_open_star] = ACTIONS(71), [sym__emphasis_open_underscore] = ACTIONS(73), }, [342] = { - [aux_sym__html_block_1_token1] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_DQUOTE] = ACTIONS(1708), - [anon_sym_POUND] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1708), - [anon_sym_RPAREN] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_COMMA] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_DOT] = ACTIONS(1708), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_COLON] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(1708), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_QMARK] = ACTIONS(1708), - [anon_sym_AT] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_BSLASH] = ACTIONS(1710), - [anon_sym_RBRACK] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1708), - [anon_sym__] = ACTIONS(1708), - [anon_sym_BQUOTE] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1708), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1710), - [anon_sym_LT_QMARK] = ACTIONS(1710), - [aux_sym__html_block_4_token1] = ACTIONS(1710), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1708), - [aux_sym__html_block_6_token1] = ACTIONS(1710), - [aux_sym__html_block_6_token2] = ACTIONS(1708), - [sym__open_tag_html_block] = ACTIONS(1708), - [sym__open_tag_html_block_newline] = ACTIONS(1708), - [sym__closing_tag_html_block] = ACTIONS(1708), - [sym__closing_tag_html_block_newline] = ACTIONS(1708), - [sym_backslash_escape] = ACTIONS(1708), - [sym_uri_autolink] = ACTIONS(1708), - [sym_email_autolink] = ACTIONS(1708), - [sym_entity_reference] = ACTIONS(1708), - [sym_numeric_character_reference] = ACTIONS(1708), - [sym__whitespace_ge_2] = ACTIONS(1708), - [aux_sym__whitespace_token1] = ACTIONS(1710), - [sym__word_no_digit] = ACTIONS(1708), - [sym__digits] = ACTIONS(1708), - [aux_sym__newline_token1] = ACTIONS(1708), - [sym__block_continuation] = ACTIONS(1708), - [sym__block_quote_start] = ACTIONS(1708), - [sym__indented_chunk_start] = ACTIONS(1708), - [sym_atx_h1_marker] = ACTIONS(1708), - [sym_atx_h2_marker] = ACTIONS(1708), - [sym_atx_h3_marker] = ACTIONS(1708), - [sym_atx_h4_marker] = ACTIONS(1708), - [sym_atx_h5_marker] = ACTIONS(1708), - [sym_atx_h6_marker] = ACTIONS(1708), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1708), - [sym__thematic_break] = ACTIONS(1708), - [sym__list_marker_minus] = ACTIONS(1708), - [sym__list_marker_plus] = ACTIONS(1708), - [sym__list_marker_star] = ACTIONS(1708), - [sym__list_marker_parenthesis] = ACTIONS(1708), - [sym__list_marker_dot] = ACTIONS(1708), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), - [sym__fenced_code_block_start_backtick] = ACTIONS(1708), - [sym__fenced_code_block_start_tilde] = ACTIONS(1708), - [sym__blank_line_start] = ACTIONS(1708), - [sym__code_span_start] = ACTIONS(1708), - [sym__last_token_whitespace] = ACTIONS(1708), - [sym__emphasis_open_star] = ACTIONS(1708), - [sym__emphasis_open_underscore] = ACTIONS(1708), - }, - [343] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1628), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(800), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(359), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -61899,7 +61832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -61909,57 +61842,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1714), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1689), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), + }, + [343] = { + [aux_sym__html_block_1_token1] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1697), + [anon_sym_POUND] = ACTIONS(1697), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_PERCENT] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_RPAREN] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_DOT] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_COLON] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_EQ] = ACTIONS(1697), + [anon_sym_GT] = ACTIONS(1697), + [anon_sym_QMARK] = ACTIONS(1697), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_BSLASH] = ACTIONS(1699), + [anon_sym_RBRACK] = ACTIONS(1697), + [anon_sym_CARET] = ACTIONS(1697), + [anon_sym__] = ACTIONS(1697), + [anon_sym_BQUOTE] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1699), + [anon_sym_LT_QMARK] = ACTIONS(1699), + [aux_sym__html_block_4_token1] = ACTIONS(1699), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1697), + [aux_sym__html_block_6_token1] = ACTIONS(1699), + [aux_sym__html_block_6_token2] = ACTIONS(1697), + [sym__open_tag_html_block] = ACTIONS(1697), + [sym__open_tag_html_block_newline] = ACTIONS(1697), + [sym__closing_tag_html_block] = ACTIONS(1697), + [sym__closing_tag_html_block_newline] = ACTIONS(1697), + [sym_backslash_escape] = ACTIONS(1697), + [sym_uri_autolink] = ACTIONS(1697), + [sym_email_autolink] = ACTIONS(1697), + [sym_entity_reference] = ACTIONS(1697), + [sym_numeric_character_reference] = ACTIONS(1697), + [sym__whitespace_ge_2] = ACTIONS(1697), + [aux_sym__whitespace_token1] = ACTIONS(1699), + [sym__word_no_digit] = ACTIONS(1697), + [sym__digits] = ACTIONS(1697), + [aux_sym__newline_token1] = ACTIONS(1697), + [sym__block_continuation] = ACTIONS(1697), + [sym__block_quote_start] = ACTIONS(1697), + [sym__indented_chunk_start] = ACTIONS(1697), + [sym_atx_h1_marker] = ACTIONS(1697), + [sym_atx_h2_marker] = ACTIONS(1697), + [sym_atx_h3_marker] = ACTIONS(1697), + [sym_atx_h4_marker] = ACTIONS(1697), + [sym_atx_h5_marker] = ACTIONS(1697), + [sym_atx_h6_marker] = ACTIONS(1697), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1697), + [sym__thematic_break] = ACTIONS(1697), + [sym__list_marker_minus] = ACTIONS(1697), + [sym__list_marker_plus] = ACTIONS(1697), + [sym__list_marker_star] = ACTIONS(1697), + [sym__list_marker_parenthesis] = ACTIONS(1697), + [sym__list_marker_dot] = ACTIONS(1697), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1697), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1697), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1697), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1697), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1697), + [sym__fenced_code_block_start_backtick] = ACTIONS(1697), + [sym__fenced_code_block_start_tilde] = ACTIONS(1697), + [sym__blank_line_start] = ACTIONS(1697), + [sym__code_span_start] = ACTIONS(1697), + [sym__last_token_whitespace] = ACTIONS(1697), + [sym__emphasis_open_star] = ACTIONS(1697), + [sym__emphasis_open_underscore] = ACTIONS(1697), }, [344] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(377), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(354), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(2017), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -61982,7 +61998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -61992,57 +62008,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1722), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1701), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, [345] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1712), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(355), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(2023), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(344), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -62065,7 +62081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -62075,140 +62091,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1724), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1701), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, [346] = { - [sym__blank_line] = STATE(2378), - [aux_sym__html_block_1_token1] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_SQUOTE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_BSLASH] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym__] = ACTIONS(607), - [anon_sym_BQUOTE] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(609), - [anon_sym_LT_QMARK] = ACTIONS(609), - [aux_sym__html_block_4_token1] = ACTIONS(609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(607), - [aux_sym__html_block_6_token1] = ACTIONS(609), - [aux_sym__html_block_6_token2] = ACTIONS(607), - [sym__open_tag_html_block] = ACTIONS(607), - [sym__open_tag_html_block_newline] = ACTIONS(607), - [sym__closing_tag_html_block] = ACTIONS(607), - [sym__closing_tag_html_block_newline] = ACTIONS(607), - [sym_backslash_escape] = ACTIONS(607), - [sym_uri_autolink] = ACTIONS(607), - [sym_email_autolink] = ACTIONS(607), - [sym_entity_reference] = ACTIONS(607), - [sym_numeric_character_reference] = ACTIONS(607), - [sym__whitespace_ge_2] = ACTIONS(607), - [aux_sym__whitespace_token1] = ACTIONS(609), - [sym__word_no_digit] = ACTIONS(607), - [sym__digits] = ACTIONS(607), - [aux_sym__newline_token1] = ACTIONS(607), - [sym__block_close] = ACTIONS(607), - [sym__block_quote_start] = ACTIONS(607), - [sym__indented_chunk_start] = ACTIONS(607), - [sym_atx_h1_marker] = ACTIONS(607), - [sym_atx_h2_marker] = ACTIONS(607), - [sym_atx_h3_marker] = ACTIONS(607), - [sym_atx_h4_marker] = ACTIONS(607), - [sym_atx_h5_marker] = ACTIONS(607), - [sym_atx_h6_marker] = ACTIONS(607), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(607), - [sym__thematic_break] = ACTIONS(607), - [sym__list_marker_minus] = ACTIONS(607), - [sym__list_marker_plus] = ACTIONS(607), - [sym__list_marker_star] = ACTIONS(607), - [sym__list_marker_parenthesis] = ACTIONS(607), - [sym__list_marker_dot] = ACTIONS(607), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(607), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(607), - [sym__list_marker_star_dont_interrupt] = ACTIONS(607), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(607), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(607), - [sym__fenced_code_block_start_backtick] = ACTIONS(607), - [sym__fenced_code_block_start_tilde] = ACTIONS(607), - [sym__blank_line_start] = ACTIONS(1726), - [sym__code_span_start] = ACTIONS(607), - [sym__emphasis_open_star] = ACTIONS(607), - [sym__emphasis_open_underscore] = ACTIONS(607), - }, - [347] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(379), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(349), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1714), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -62231,7 +62164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -62241,140 +62174,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1728), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), - }, - [348] = { - [aux_sym__html_block_1_token1] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_DOLLAR] = ACTIONS(1730), - [anon_sym_PERCENT] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_RPAREN] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_COMMA] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_SLASH] = ACTIONS(1730), - [anon_sym_COLON] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1730), - [anon_sym_GT] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1730), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_BSLASH] = ACTIONS(1732), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_CARET] = ACTIONS(1730), - [anon_sym__] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1732), - [anon_sym_LT_QMARK] = ACTIONS(1732), - [aux_sym__html_block_4_token1] = ACTIONS(1732), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1730), - [aux_sym__html_block_6_token1] = ACTIONS(1732), - [aux_sym__html_block_6_token2] = ACTIONS(1730), - [sym__open_tag_html_block] = ACTIONS(1730), - [sym__open_tag_html_block_newline] = ACTIONS(1730), - [sym__closing_tag_html_block] = ACTIONS(1730), - [sym__closing_tag_html_block_newline] = ACTIONS(1730), - [sym_backslash_escape] = ACTIONS(1730), - [sym_uri_autolink] = ACTIONS(1730), - [sym_email_autolink] = ACTIONS(1730), - [sym_entity_reference] = ACTIONS(1730), - [sym_numeric_character_reference] = ACTIONS(1730), - [sym__whitespace_ge_2] = ACTIONS(1730), - [aux_sym__whitespace_token1] = ACTIONS(1732), - [sym__word_no_digit] = ACTIONS(1730), - [sym__digits] = ACTIONS(1730), - [aux_sym__newline_token1] = ACTIONS(1730), - [sym__block_continuation] = ACTIONS(1730), - [sym__block_quote_start] = ACTIONS(1730), - [sym__indented_chunk_start] = ACTIONS(1730), - [sym_atx_h1_marker] = ACTIONS(1730), - [sym_atx_h2_marker] = ACTIONS(1730), - [sym_atx_h3_marker] = ACTIONS(1730), - [sym_atx_h4_marker] = ACTIONS(1730), - [sym_atx_h5_marker] = ACTIONS(1730), - [sym_atx_h6_marker] = ACTIONS(1730), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1730), - [sym__thematic_break] = ACTIONS(1730), - [sym__list_marker_minus] = ACTIONS(1730), - [sym__list_marker_plus] = ACTIONS(1730), - [sym__list_marker_star] = ACTIONS(1730), - [sym__list_marker_parenthesis] = ACTIONS(1730), - [sym__list_marker_dot] = ACTIONS(1730), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1730), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1730), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1730), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1730), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1730), - [sym__fenced_code_block_start_backtick] = ACTIONS(1730), - [sym__fenced_code_block_start_tilde] = ACTIONS(1730), - [sym__blank_line_start] = ACTIONS(1730), - [sym__code_span_start] = ACTIONS(1730), - [sym__last_token_whitespace] = ACTIONS(1730), - [sym__emphasis_open_star] = ACTIONS(1730), - [sym__emphasis_open_underscore] = ACTIONS(1730), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1703), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [349] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(420), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [347] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1818), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -62397,7 +62247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -62407,223 +62257,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1728), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), - }, - [350] = { - [aux_sym__html_block_1_token1] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_COLON] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_BSLASH] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_CARET] = ACTIONS(1734), - [anon_sym__] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1736), - [anon_sym_LT_QMARK] = ACTIONS(1736), - [aux_sym__html_block_4_token1] = ACTIONS(1736), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1734), - [aux_sym__html_block_6_token1] = ACTIONS(1736), - [aux_sym__html_block_6_token2] = ACTIONS(1734), - [sym__open_tag_html_block] = ACTIONS(1734), - [sym__open_tag_html_block_newline] = ACTIONS(1734), - [sym__closing_tag_html_block] = ACTIONS(1734), - [sym__closing_tag_html_block_newline] = ACTIONS(1734), - [sym_backslash_escape] = ACTIONS(1734), - [sym_uri_autolink] = ACTIONS(1734), - [sym_email_autolink] = ACTIONS(1734), - [sym_entity_reference] = ACTIONS(1734), - [sym_numeric_character_reference] = ACTIONS(1734), - [sym__whitespace_ge_2] = ACTIONS(1734), - [aux_sym__whitespace_token1] = ACTIONS(1736), - [sym__word_no_digit] = ACTIONS(1734), - [sym__digits] = ACTIONS(1734), - [aux_sym__newline_token1] = ACTIONS(1734), - [sym__block_continuation] = ACTIONS(1734), - [sym__block_quote_start] = ACTIONS(1734), - [sym__indented_chunk_start] = ACTIONS(1734), - [sym_atx_h1_marker] = ACTIONS(1734), - [sym_atx_h2_marker] = ACTIONS(1734), - [sym_atx_h3_marker] = ACTIONS(1734), - [sym_atx_h4_marker] = ACTIONS(1734), - [sym_atx_h5_marker] = ACTIONS(1734), - [sym_atx_h6_marker] = ACTIONS(1734), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1734), - [sym__thematic_break] = ACTIONS(1734), - [sym__list_marker_minus] = ACTIONS(1734), - [sym__list_marker_plus] = ACTIONS(1734), - [sym__list_marker_star] = ACTIONS(1734), - [sym__list_marker_parenthesis] = ACTIONS(1734), - [sym__list_marker_dot] = ACTIONS(1734), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1734), - [sym__fenced_code_block_start_backtick] = ACTIONS(1734), - [sym__fenced_code_block_start_tilde] = ACTIONS(1734), - [sym__blank_line_start] = ACTIONS(1734), - [sym__code_span_start] = ACTIONS(1734), - [sym__last_token_whitespace] = ACTIONS(1734), - [sym__emphasis_open_star] = ACTIONS(1734), - [sym__emphasis_open_underscore] = ACTIONS(1734), - }, - [351] = { - [aux_sym__html_block_1_token1] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_PERCENT] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1738), - [anon_sym_COLON] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_EQ] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1738), - [anon_sym_QMARK] = ACTIONS(1738), - [anon_sym_AT] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_BSLASH] = ACTIONS(1740), - [anon_sym_RBRACK] = ACTIONS(1738), - [anon_sym_CARET] = ACTIONS(1738), - [anon_sym__] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1738), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1740), - [anon_sym_LT_QMARK] = ACTIONS(1740), - [aux_sym__html_block_4_token1] = ACTIONS(1740), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1738), - [aux_sym__html_block_6_token1] = ACTIONS(1740), - [aux_sym__html_block_6_token2] = ACTIONS(1738), - [sym__open_tag_html_block] = ACTIONS(1738), - [sym__open_tag_html_block_newline] = ACTIONS(1738), - [sym__closing_tag_html_block] = ACTIONS(1738), - [sym__closing_tag_html_block_newline] = ACTIONS(1738), - [sym_backslash_escape] = ACTIONS(1738), - [sym_uri_autolink] = ACTIONS(1738), - [sym_email_autolink] = ACTIONS(1738), - [sym_entity_reference] = ACTIONS(1738), - [sym_numeric_character_reference] = ACTIONS(1738), - [sym__whitespace_ge_2] = ACTIONS(1738), - [aux_sym__whitespace_token1] = ACTIONS(1740), - [sym__word_no_digit] = ACTIONS(1738), - [sym__digits] = ACTIONS(1738), - [aux_sym__newline_token1] = ACTIONS(1738), - [sym__block_continuation] = ACTIONS(1738), - [sym__block_quote_start] = ACTIONS(1738), - [sym__indented_chunk_start] = ACTIONS(1738), - [sym_atx_h1_marker] = ACTIONS(1738), - [sym_atx_h2_marker] = ACTIONS(1738), - [sym_atx_h3_marker] = ACTIONS(1738), - [sym_atx_h4_marker] = ACTIONS(1738), - [sym_atx_h5_marker] = ACTIONS(1738), - [sym_atx_h6_marker] = ACTIONS(1738), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1738), - [sym__thematic_break] = ACTIONS(1738), - [sym__list_marker_minus] = ACTIONS(1738), - [sym__list_marker_plus] = ACTIONS(1738), - [sym__list_marker_star] = ACTIONS(1738), - [sym__list_marker_parenthesis] = ACTIONS(1738), - [sym__list_marker_dot] = ACTIONS(1738), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1738), - [sym__fenced_code_block_start_backtick] = ACTIONS(1738), - [sym__fenced_code_block_start_tilde] = ACTIONS(1738), - [sym__blank_line_start] = ACTIONS(1738), - [sym__code_span_start] = ACTIONS(1738), - [sym__last_token_whitespace] = ACTIONS(1738), - [sym__emphasis_open_star] = ACTIONS(1738), - [sym__emphasis_open_underscore] = ACTIONS(1738), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1705), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [352] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1795), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [348] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1805), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(347), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -62646,7 +62330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -62656,57 +62340,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1742), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1705), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [353] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1646), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(343), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [349] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(704), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(363), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -62729,7 +62413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -62739,57 +62423,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1714), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1707), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [354] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(403), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [350] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(375), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(361), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -62812,7 +62496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -62822,57 +62506,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1722), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1709), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [355] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1685), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [351] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1728), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(356), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -62895,7 +62579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -62905,140 +62589,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1724), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), - }, - [356] = { - [aux_sym__html_block_1_token1] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(1744), - [anon_sym_DOLLAR] = ACTIONS(1744), - [anon_sym_PERCENT] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_DOT] = ACTIONS(1744), - [anon_sym_SLASH] = ACTIONS(1744), - [anon_sym_COLON] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_BSLASH] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym__] = ACTIONS(1744), - [anon_sym_BQUOTE] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1746), - [anon_sym_LT_QMARK] = ACTIONS(1746), - [aux_sym__html_block_4_token1] = ACTIONS(1746), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1744), - [aux_sym__html_block_6_token1] = ACTIONS(1746), - [aux_sym__html_block_6_token2] = ACTIONS(1744), - [sym__open_tag_html_block] = ACTIONS(1744), - [sym__open_tag_html_block_newline] = ACTIONS(1744), - [sym__closing_tag_html_block] = ACTIONS(1744), - [sym__closing_tag_html_block_newline] = ACTIONS(1744), - [sym_backslash_escape] = ACTIONS(1744), - [sym_uri_autolink] = ACTIONS(1744), - [sym_email_autolink] = ACTIONS(1744), - [sym_entity_reference] = ACTIONS(1744), - [sym_numeric_character_reference] = ACTIONS(1744), - [sym__whitespace_ge_2] = ACTIONS(1744), - [aux_sym__whitespace_token1] = ACTIONS(1746), - [sym__word_no_digit] = ACTIONS(1744), - [sym__digits] = ACTIONS(1744), - [aux_sym__newline_token1] = ACTIONS(1744), - [sym__block_continuation] = ACTIONS(1744), - [sym__block_quote_start] = ACTIONS(1744), - [sym__indented_chunk_start] = ACTIONS(1744), - [sym_atx_h1_marker] = ACTIONS(1744), - [sym_atx_h2_marker] = ACTIONS(1744), - [sym_atx_h3_marker] = ACTIONS(1744), - [sym_atx_h4_marker] = ACTIONS(1744), - [sym_atx_h5_marker] = ACTIONS(1744), - [sym_atx_h6_marker] = ACTIONS(1744), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1744), - [sym__thematic_break] = ACTIONS(1744), - [sym__list_marker_minus] = ACTIONS(1744), - [sym__list_marker_plus] = ACTIONS(1744), - [sym__list_marker_star] = ACTIONS(1744), - [sym__list_marker_parenthesis] = ACTIONS(1744), - [sym__list_marker_dot] = ACTIONS(1744), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1744), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1744), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1744), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1744), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1744), - [sym__fenced_code_block_start_backtick] = ACTIONS(1744), - [sym__fenced_code_block_start_tilde] = ACTIONS(1744), - [sym__blank_line_start] = ACTIONS(1744), - [sym__code_span_start] = ACTIONS(1744), - [sym__last_token_whitespace] = ACTIONS(1744), - [sym__emphasis_open_star] = ACTIONS(1744), - [sym__emphasis_open_underscore] = ACTIONS(1744), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1711), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [357] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1806), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(352), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [352] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1641), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63061,7 +62662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63071,57 +62672,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1742), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1713), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [358] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2023), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [353] = { + [sym__blank_line] = STATE(2269), + [aux_sym__html_block_1_token1] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_DQUOTE] = ACTIONS(573), + [anon_sym_POUND] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_SQUOTE] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(573), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_BSLASH] = ACTIONS(575), + [anon_sym_RBRACK] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym__] = ACTIONS(573), + [anon_sym_BQUOTE] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(575), + [anon_sym_LT_QMARK] = ACTIONS(575), + [aux_sym__html_block_4_token1] = ACTIONS(575), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(573), + [aux_sym__html_block_6_token1] = ACTIONS(575), + [aux_sym__html_block_6_token2] = ACTIONS(573), + [sym__open_tag_html_block] = ACTIONS(573), + [sym__open_tag_html_block_newline] = ACTIONS(573), + [sym__closing_tag_html_block] = ACTIONS(573), + [sym__closing_tag_html_block_newline] = ACTIONS(573), + [sym_backslash_escape] = ACTIONS(573), + [sym_uri_autolink] = ACTIONS(573), + [sym_email_autolink] = ACTIONS(573), + [sym_entity_reference] = ACTIONS(573), + [sym_numeric_character_reference] = ACTIONS(573), + [sym__whitespace_ge_2] = ACTIONS(573), + [aux_sym__whitespace_token1] = ACTIONS(575), + [sym__word_no_digit] = ACTIONS(573), + [sym__digits] = ACTIONS(573), + [aux_sym__newline_token1] = ACTIONS(573), + [sym__block_close] = ACTIONS(573), + [sym__block_quote_start] = ACTIONS(573), + [sym__indented_chunk_start] = ACTIONS(573), + [sym_atx_h1_marker] = ACTIONS(573), + [sym_atx_h2_marker] = ACTIONS(573), + [sym_atx_h3_marker] = ACTIONS(573), + [sym_atx_h4_marker] = ACTIONS(573), + [sym_atx_h5_marker] = ACTIONS(573), + [sym_atx_h6_marker] = ACTIONS(573), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(573), + [sym__thematic_break] = ACTIONS(573), + [sym__list_marker_minus] = ACTIONS(573), + [sym__list_marker_plus] = ACTIONS(573), + [sym__list_marker_star] = ACTIONS(573), + [sym__list_marker_parenthesis] = ACTIONS(573), + [sym__list_marker_dot] = ACTIONS(573), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(573), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(573), + [sym__list_marker_star_dont_interrupt] = ACTIONS(573), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(573), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(573), + [sym__fenced_code_block_start_backtick] = ACTIONS(573), + [sym__fenced_code_block_start_tilde] = ACTIONS(573), + [sym__blank_line_start] = ACTIONS(1715), + [sym__code_span_start] = ACTIONS(573), + [sym__emphasis_open_star] = ACTIONS(573), + [sym__emphasis_open_underscore] = ACTIONS(573), + }, + [354] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1643), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(352), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63144,7 +62828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63154,57 +62838,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1748), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1713), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [359] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(746), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(364), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [355] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1805), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(366), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63227,7 +62911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63237,57 +62921,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1750), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1717), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [360] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1719), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [356] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1723), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63310,7 +62994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63320,57 +63004,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1752), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1711), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [361] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1806), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(362), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [357] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(919), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63393,7 +63077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63403,57 +63087,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1754), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1719), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [362] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1795), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [358] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(393), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(365), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63476,7 +63160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63486,57 +63170,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1754), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1721), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [363] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(904), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(366), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [359] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(778), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63559,7 +63243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63569,57 +63253,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1756), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1689), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [364] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(675), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [360] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(906), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(357), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63642,7 +63326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63652,57 +63336,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1750), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1719), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [365] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(769), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [361] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(395), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63725,7 +63409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63735,57 +63419,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1758), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1709), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [366] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(926), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [362] = { + [aux_sym__html_block_1_token1] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_COLON] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_QMARK] = ACTIONS(1723), + [anon_sym_AT] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_BSLASH] = ACTIONS(1725), + [anon_sym_RBRACK] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym__] = ACTIONS(1723), + [anon_sym_BQUOTE] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(1723), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1725), + [anon_sym_LT_QMARK] = ACTIONS(1725), + [aux_sym__html_block_4_token1] = ACTIONS(1725), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1723), + [aux_sym__html_block_6_token1] = ACTIONS(1725), + [aux_sym__html_block_6_token2] = ACTIONS(1723), + [sym__open_tag_html_block] = ACTIONS(1723), + [sym__open_tag_html_block_newline] = ACTIONS(1723), + [sym__closing_tag_html_block] = ACTIONS(1723), + [sym__closing_tag_html_block_newline] = ACTIONS(1723), + [sym_backslash_escape] = ACTIONS(1723), + [sym_uri_autolink] = ACTIONS(1723), + [sym_email_autolink] = ACTIONS(1723), + [sym_entity_reference] = ACTIONS(1723), + [sym_numeric_character_reference] = ACTIONS(1723), + [sym__whitespace_ge_2] = ACTIONS(1723), + [aux_sym__whitespace_token1] = ACTIONS(1725), + [sym__word_no_digit] = ACTIONS(1723), + [sym__digits] = ACTIONS(1723), + [aux_sym__newline_token1] = ACTIONS(1723), + [sym__block_continuation] = ACTIONS(1723), + [sym__block_quote_start] = ACTIONS(1723), + [sym__indented_chunk_start] = ACTIONS(1723), + [sym_atx_h1_marker] = ACTIONS(1723), + [sym_atx_h2_marker] = ACTIONS(1723), + [sym_atx_h3_marker] = ACTIONS(1723), + [sym_atx_h4_marker] = ACTIONS(1723), + [sym_atx_h5_marker] = ACTIONS(1723), + [sym_atx_h6_marker] = ACTIONS(1723), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1723), + [sym__thematic_break] = ACTIONS(1723), + [sym__list_marker_minus] = ACTIONS(1723), + [sym__list_marker_plus] = ACTIONS(1723), + [sym__list_marker_star] = ACTIONS(1723), + [sym__list_marker_parenthesis] = ACTIONS(1723), + [sym__list_marker_dot] = ACTIONS(1723), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1723), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1723), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1723), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1723), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1723), + [sym__fenced_code_block_start_backtick] = ACTIONS(1723), + [sym__fenced_code_block_start_tilde] = ACTIONS(1723), + [sym__blank_line_start] = ACTIONS(1723), + [sym__code_span_start] = ACTIONS(1723), + [sym__last_token_whitespace] = ACTIONS(1723), + [sym__emphasis_open_star] = ACTIONS(1723), + [sym__emphasis_open_underscore] = ACTIONS(1723), + }, + [363] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(687), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63808,7 +63575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63818,57 +63585,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1756), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1707), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [367] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(1726), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(360), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [364] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1687), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(346), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63891,7 +63658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63901,57 +63668,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1752), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1703), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [368] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(2031), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(358), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [365] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(392), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -63974,7 +63741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -63984,57 +63751,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1748), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1721), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), }, - [369] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__newline] = STATE(759), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(365), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), + [366] = { + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__newline] = STATE(1818), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(9), [anon_sym_POUND] = ACTIONS(9), @@ -64057,7 +63824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(9), [anon_sym_QMARK] = ACTIONS(9), [anon_sym_AT] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1135), [anon_sym_BSLASH] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(9), [anon_sym_CARET] = ACTIONS(9), @@ -64067,7212 +63834,7461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(9), [anon_sym_RBRACE] = ACTIONS(9), [anon_sym_TILDE] = ACTIONS(9), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1285), - [anon_sym_LT_QMARK] = ACTIONS(1287), - [aux_sym__html_block_4_token1] = ACTIONS(1289), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1291), - [sym_backslash_escape] = ACTIONS(1712), - [sym_uri_autolink] = ACTIONS(1712), - [sym_email_autolink] = ACTIONS(1712), - [sym_entity_reference] = ACTIONS(1712), - [sym_numeric_character_reference] = ACTIONS(1712), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(1712), - [sym__digits] = ACTIONS(1712), - [aux_sym__newline_token1] = ACTIONS(1758), - [sym__code_span_start] = ACTIONS(1716), - [sym__emphasis_open_star] = ACTIONS(1718), - [sym__emphasis_open_underscore] = ACTIONS(1720), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1137), + [anon_sym_LT_QMARK] = ACTIONS(1139), + [aux_sym__html_block_4_token1] = ACTIONS(1141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1143), + [sym_backslash_escape] = ACTIONS(1687), + [sym_uri_autolink] = ACTIONS(1687), + [sym_email_autolink] = ACTIONS(1687), + [sym_entity_reference] = ACTIONS(1687), + [sym_numeric_character_reference] = ACTIONS(1687), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(1687), + [sym__digits] = ACTIONS(1687), + [aux_sym__newline_token1] = ACTIONS(1717), + [sym__code_span_start] = ACTIONS(1691), + [sym__emphasis_open_star] = ACTIONS(1693), + [sym__emphasis_open_underscore] = ACTIONS(1695), + }, + [367] = { + [aux_sym__html_block_1_token1] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_COMMA] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_DOT] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_COLON] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_QMARK] = ACTIONS(1727), + [anon_sym_AT] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_BSLASH] = ACTIONS(1729), + [anon_sym_RBRACK] = ACTIONS(1727), + [anon_sym_CARET] = ACTIONS(1727), + [anon_sym__] = ACTIONS(1727), + [anon_sym_BQUOTE] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1729), + [anon_sym_LT_QMARK] = ACTIONS(1729), + [aux_sym__html_block_4_token1] = ACTIONS(1729), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1727), + [aux_sym__html_block_6_token1] = ACTIONS(1729), + [aux_sym__html_block_6_token2] = ACTIONS(1727), + [sym__open_tag_html_block] = ACTIONS(1727), + [sym__open_tag_html_block_newline] = ACTIONS(1727), + [sym__closing_tag_html_block] = ACTIONS(1727), + [sym__closing_tag_html_block_newline] = ACTIONS(1727), + [sym_backslash_escape] = ACTIONS(1727), + [sym_uri_autolink] = ACTIONS(1727), + [sym_email_autolink] = ACTIONS(1727), + [sym_entity_reference] = ACTIONS(1727), + [sym_numeric_character_reference] = ACTIONS(1727), + [sym__whitespace_ge_2] = ACTIONS(1727), + [aux_sym__whitespace_token1] = ACTIONS(1729), + [sym__word_no_digit] = ACTIONS(1727), + [sym__digits] = ACTIONS(1727), + [aux_sym__newline_token1] = ACTIONS(1727), + [sym__block_continuation] = ACTIONS(1727), + [sym__block_quote_start] = ACTIONS(1727), + [sym__indented_chunk_start] = ACTIONS(1727), + [sym_atx_h1_marker] = ACTIONS(1727), + [sym_atx_h2_marker] = ACTIONS(1727), + [sym_atx_h3_marker] = ACTIONS(1727), + [sym_atx_h4_marker] = ACTIONS(1727), + [sym_atx_h5_marker] = ACTIONS(1727), + [sym_atx_h6_marker] = ACTIONS(1727), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1727), + [sym__thematic_break] = ACTIONS(1727), + [sym__list_marker_minus] = ACTIONS(1727), + [sym__list_marker_plus] = ACTIONS(1727), + [sym__list_marker_star] = ACTIONS(1727), + [sym__list_marker_parenthesis] = ACTIONS(1727), + [sym__list_marker_dot] = ACTIONS(1727), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1727), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1727), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1727), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1727), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1727), + [sym__fenced_code_block_start_backtick] = ACTIONS(1727), + [sym__fenced_code_block_start_tilde] = ACTIONS(1727), + [sym__blank_line_start] = ACTIONS(1727), + [sym__code_span_start] = ACTIONS(1727), + [sym__last_token_whitespace] = ACTIONS(1727), + [sym__emphasis_open_star] = ACTIONS(1727), + [sym__emphasis_open_underscore] = ACTIONS(1727), + }, + [368] = { + [aux_sym__html_block_1_token1] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_PERCENT] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_RPAREN] = ACTIONS(1731), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_DOT] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1731), + [anon_sym_COLON] = ACTIONS(1731), + [anon_sym_SEMI] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1731), + [anon_sym_GT] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1731), + [anon_sym_AT] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_BSLASH] = ACTIONS(1733), + [anon_sym_RBRACK] = ACTIONS(1731), + [anon_sym_CARET] = ACTIONS(1731), + [anon_sym__] = ACTIONS(1731), + [anon_sym_BQUOTE] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1731), + [anon_sym_PIPE] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1733), + [anon_sym_LT_QMARK] = ACTIONS(1733), + [aux_sym__html_block_4_token1] = ACTIONS(1733), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1731), + [aux_sym__html_block_6_token1] = ACTIONS(1733), + [aux_sym__html_block_6_token2] = ACTIONS(1731), + [sym__open_tag_html_block] = ACTIONS(1731), + [sym__open_tag_html_block_newline] = ACTIONS(1731), + [sym__closing_tag_html_block] = ACTIONS(1731), + [sym__closing_tag_html_block_newline] = ACTIONS(1731), + [sym_backslash_escape] = ACTIONS(1731), + [sym_uri_autolink] = ACTIONS(1731), + [sym_email_autolink] = ACTIONS(1731), + [sym_entity_reference] = ACTIONS(1731), + [sym_numeric_character_reference] = ACTIONS(1731), + [sym__whitespace_ge_2] = ACTIONS(1731), + [aux_sym__whitespace_token1] = ACTIONS(1733), + [sym__word_no_digit] = ACTIONS(1731), + [sym__digits] = ACTIONS(1731), + [aux_sym__newline_token1] = ACTIONS(1731), + [sym__block_continuation] = ACTIONS(1731), + [sym__block_quote_start] = ACTIONS(1731), + [sym__indented_chunk_start] = ACTIONS(1731), + [sym_atx_h1_marker] = ACTIONS(1731), + [sym_atx_h2_marker] = ACTIONS(1731), + [sym_atx_h3_marker] = ACTIONS(1731), + [sym_atx_h4_marker] = ACTIONS(1731), + [sym_atx_h5_marker] = ACTIONS(1731), + [sym_atx_h6_marker] = ACTIONS(1731), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1731), + [sym__thematic_break] = ACTIONS(1731), + [sym__list_marker_minus] = ACTIONS(1731), + [sym__list_marker_plus] = ACTIONS(1731), + [sym__list_marker_star] = ACTIONS(1731), + [sym__list_marker_parenthesis] = ACTIONS(1731), + [sym__list_marker_dot] = ACTIONS(1731), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1731), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1731), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1731), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1731), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1731), + [sym__fenced_code_block_start_backtick] = ACTIONS(1731), + [sym__fenced_code_block_start_tilde] = ACTIONS(1731), + [sym__blank_line_start] = ACTIONS(1731), + [sym__code_span_start] = ACTIONS(1731), + [sym__last_token_whitespace] = ACTIONS(1731), + [sym__emphasis_open_star] = ACTIONS(1731), + [sym__emphasis_open_underscore] = ACTIONS(1731), + }, + [369] = { + [aux_sym__html_block_1_token1] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_COMMA] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_DOT] = ACTIONS(1735), + [anon_sym_SLASH] = ACTIONS(1735), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_BSLASH] = ACTIONS(1737), + [anon_sym_RBRACK] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym__] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1735), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1737), + [anon_sym_LT_QMARK] = ACTIONS(1737), + [aux_sym__html_block_4_token1] = ACTIONS(1737), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1735), + [aux_sym__html_block_6_token1] = ACTIONS(1737), + [aux_sym__html_block_6_token2] = ACTIONS(1735), + [sym__open_tag_html_block] = ACTIONS(1735), + [sym__open_tag_html_block_newline] = ACTIONS(1735), + [sym__closing_tag_html_block] = ACTIONS(1735), + [sym__closing_tag_html_block_newline] = ACTIONS(1735), + [sym_backslash_escape] = ACTIONS(1735), + [sym_uri_autolink] = ACTIONS(1735), + [sym_email_autolink] = ACTIONS(1735), + [sym_entity_reference] = ACTIONS(1735), + [sym_numeric_character_reference] = ACTIONS(1735), + [sym__whitespace_ge_2] = ACTIONS(1735), + [aux_sym__whitespace_token1] = ACTIONS(1737), + [sym__word_no_digit] = ACTIONS(1735), + [sym__digits] = ACTIONS(1735), + [aux_sym__newline_token1] = ACTIONS(1735), + [sym__block_continuation] = ACTIONS(1735), + [sym__block_quote_start] = ACTIONS(1735), + [sym__indented_chunk_start] = ACTIONS(1735), + [sym_atx_h1_marker] = ACTIONS(1735), + [sym_atx_h2_marker] = ACTIONS(1735), + [sym_atx_h3_marker] = ACTIONS(1735), + [sym_atx_h4_marker] = ACTIONS(1735), + [sym_atx_h5_marker] = ACTIONS(1735), + [sym_atx_h6_marker] = ACTIONS(1735), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1735), + [sym__thematic_break] = ACTIONS(1735), + [sym__list_marker_minus] = ACTIONS(1735), + [sym__list_marker_plus] = ACTIONS(1735), + [sym__list_marker_star] = ACTIONS(1735), + [sym__list_marker_parenthesis] = ACTIONS(1735), + [sym__list_marker_dot] = ACTIONS(1735), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1735), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1735), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1735), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1735), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1735), + [sym__fenced_code_block_start_backtick] = ACTIONS(1735), + [sym__fenced_code_block_start_tilde] = ACTIONS(1735), + [sym__blank_line_start] = ACTIONS(1735), + [sym__code_span_start] = ACTIONS(1735), + [sym__last_token_whitespace] = ACTIONS(1735), + [sym__emphasis_open_star] = ACTIONS(1735), + [sym__emphasis_open_underscore] = ACTIONS(1735), }, [370] = { - [sym__block_interrupt_paragraph] = STATE(1709), - [sym__blank_line] = STATE(1709), - [sym_block_quote] = STATE(1709), - [sym_atx_heading] = STATE(1709), - [sym_setext_h1_underline] = STATE(1709), - [sym_setext_h2_underline] = STATE(1709), - [sym_thematic_break] = STATE(1709), - [sym_fenced_code_block] = STATE(1709), - [sym__html_block_1] = STATE(1709), - [sym__html_block_2] = STATE(1709), - [sym__html_block_3] = STATE(1709), - [sym__html_block_4] = STATE(1709), - [sym__html_block_5] = STATE(1709), - [sym__html_block_6] = STATE(1709), - [aux_sym__html_block_1_token1] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1762), - [anon_sym_LT_QMARK] = ACTIONS(1764), - [aux_sym__html_block_4_token1] = ACTIONS(1766), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1768), - [aux_sym__html_block_6_token1] = ACTIONS(1770), - [aux_sym__html_block_6_token2] = ACTIONS(1772), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [aux_sym__newline_token1] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(1774), - [sym_atx_h1_marker] = ACTIONS(1776), - [sym_atx_h2_marker] = ACTIONS(1776), - [sym_atx_h3_marker] = ACTIONS(1776), - [sym_atx_h4_marker] = ACTIONS(1776), - [sym_atx_h5_marker] = ACTIONS(1776), - [sym_atx_h6_marker] = ACTIONS(1776), - [sym__setext_h1_underline] = ACTIONS(1778), - [sym__setext_h2_underline] = ACTIONS(1780), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1782), - [sym__thematic_break] = ACTIONS(1784), - [sym__list_marker_minus] = ACTIONS(1786), - [sym__list_marker_plus] = ACTIONS(1786), - [sym__list_marker_star] = ACTIONS(1786), - [sym__list_marker_parenthesis] = ACTIONS(1786), - [sym__list_marker_dot] = ACTIONS(1786), - [sym__fenced_code_block_start_backtick] = ACTIONS(1788), - [sym__fenced_code_block_start_tilde] = ACTIONS(1790), - [sym__blank_line_start] = ACTIONS(1792), - [sym__code_span_close] = ACTIONS(436), + [aux_sym__html_block_1_token1] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_PERCENT] = ACTIONS(1739), + [anon_sym_AMP] = ACTIONS(1741), + [anon_sym_SQUOTE] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_COMMA] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1741), + [anon_sym_EQ] = ACTIONS(1739), + [anon_sym_GT] = ACTIONS(1739), + [anon_sym_QMARK] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_BSLASH] = ACTIONS(1741), + [anon_sym_RBRACK] = ACTIONS(1739), + [anon_sym_CARET] = ACTIONS(1739), + [anon_sym__] = ACTIONS(1739), + [anon_sym_BQUOTE] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1739), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1741), + [anon_sym_LT_QMARK] = ACTIONS(1741), + [aux_sym__html_block_4_token1] = ACTIONS(1741), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1739), + [aux_sym__html_block_6_token1] = ACTIONS(1741), + [aux_sym__html_block_6_token2] = ACTIONS(1739), + [sym__open_tag_html_block] = ACTIONS(1739), + [sym__open_tag_html_block_newline] = ACTIONS(1739), + [sym__closing_tag_html_block] = ACTIONS(1739), + [sym__closing_tag_html_block_newline] = ACTIONS(1739), + [sym_backslash_escape] = ACTIONS(1739), + [sym_uri_autolink] = ACTIONS(1739), + [sym_email_autolink] = ACTIONS(1739), + [sym_entity_reference] = ACTIONS(1739), + [sym_numeric_character_reference] = ACTIONS(1739), + [sym__whitespace_ge_2] = ACTIONS(1739), + [aux_sym__whitespace_token1] = ACTIONS(1741), + [sym__word_no_digit] = ACTIONS(1739), + [sym__digits] = ACTIONS(1739), + [aux_sym__newline_token1] = ACTIONS(1739), + [sym__block_close] = ACTIONS(1739), + [sym__block_quote_start] = ACTIONS(1739), + [sym__indented_chunk_start] = ACTIONS(1739), + [sym_atx_h1_marker] = ACTIONS(1739), + [sym_atx_h2_marker] = ACTIONS(1739), + [sym_atx_h3_marker] = ACTIONS(1739), + [sym_atx_h4_marker] = ACTIONS(1739), + [sym_atx_h5_marker] = ACTIONS(1739), + [sym_atx_h6_marker] = ACTIONS(1739), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1739), + [sym__thematic_break] = ACTIONS(1739), + [sym__list_marker_minus] = ACTIONS(1739), + [sym__list_marker_plus] = ACTIONS(1739), + [sym__list_marker_star] = ACTIONS(1739), + [sym__list_marker_parenthesis] = ACTIONS(1739), + [sym__list_marker_dot] = ACTIONS(1739), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1739), + [sym__fenced_code_block_start_backtick] = ACTIONS(1739), + [sym__fenced_code_block_start_tilde] = ACTIONS(1739), + [sym__blank_line_start] = ACTIONS(1739), + [sym__code_span_start] = ACTIONS(1739), + [sym__emphasis_open_star] = ACTIONS(1739), + [sym__emphasis_open_underscore] = ACTIONS(1739), }, [371] = { - [aux_sym__html_block_1_token1] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_PERCENT] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_COMMA] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_DOT] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1794), - [anon_sym_COLON] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1794), - [anon_sym_AT] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_BSLASH] = ACTIONS(1796), - [anon_sym_RBRACK] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1794), - [anon_sym__] = ACTIONS(1794), - [anon_sym_BQUOTE] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1796), - [anon_sym_LT_QMARK] = ACTIONS(1796), - [aux_sym__html_block_4_token1] = ACTIONS(1796), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1794), - [aux_sym__html_block_6_token1] = ACTIONS(1796), - [aux_sym__html_block_6_token2] = ACTIONS(1794), - [sym__open_tag_html_block] = ACTIONS(1794), - [sym__open_tag_html_block_newline] = ACTIONS(1794), - [sym__closing_tag_html_block] = ACTIONS(1794), - [sym__closing_tag_html_block_newline] = ACTIONS(1794), - [sym_backslash_escape] = ACTIONS(1794), - [sym_uri_autolink] = ACTIONS(1794), - [sym_email_autolink] = ACTIONS(1794), - [sym_entity_reference] = ACTIONS(1794), - [sym_numeric_character_reference] = ACTIONS(1794), - [sym__whitespace_ge_2] = ACTIONS(1794), - [aux_sym__whitespace_token1] = ACTIONS(1796), - [sym__word_no_digit] = ACTIONS(1794), - [sym__digits] = ACTIONS(1794), - [aux_sym__newline_token1] = ACTIONS(1794), - [sym__block_close] = ACTIONS(1794), - [sym__block_quote_start] = ACTIONS(1794), - [sym__indented_chunk_start] = ACTIONS(1794), - [sym_atx_h1_marker] = ACTIONS(1794), - [sym_atx_h2_marker] = ACTIONS(1794), - [sym_atx_h3_marker] = ACTIONS(1794), - [sym_atx_h4_marker] = ACTIONS(1794), - [sym_atx_h5_marker] = ACTIONS(1794), - [sym_atx_h6_marker] = ACTIONS(1794), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1794), - [sym__thematic_break] = ACTIONS(1794), - [sym__list_marker_minus] = ACTIONS(1794), - [sym__list_marker_plus] = ACTIONS(1794), - [sym__list_marker_star] = ACTIONS(1794), - [sym__list_marker_parenthesis] = ACTIONS(1794), - [sym__list_marker_dot] = ACTIONS(1794), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1794), - [sym__fenced_code_block_start_backtick] = ACTIONS(1794), - [sym__fenced_code_block_start_tilde] = ACTIONS(1794), - [sym__blank_line_start] = ACTIONS(1794), - [sym__code_span_start] = ACTIONS(1794), - [sym__emphasis_open_star] = ACTIONS(1794), - [sym__emphasis_open_underscore] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1743), + [aux_sym__html_block_1_token1] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [anon_sym_POUND] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_PERCENT] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_SLASH] = ACTIONS(1743), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_EQ] = ACTIONS(1743), + [anon_sym_GT] = ACTIONS(1743), + [anon_sym_QMARK] = ACTIONS(1743), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_BSLASH] = ACTIONS(1745), + [anon_sym_RBRACK] = ACTIONS(1743), + [anon_sym_CARET] = ACTIONS(1743), + [anon_sym__] = ACTIONS(1743), + [anon_sym_BQUOTE] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1745), + [anon_sym_LT_QMARK] = ACTIONS(1745), + [aux_sym__html_block_4_token1] = ACTIONS(1745), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1743), + [aux_sym__html_block_6_token1] = ACTIONS(1745), + [aux_sym__html_block_6_token2] = ACTIONS(1743), + [sym__open_tag_html_block] = ACTIONS(1743), + [sym__open_tag_html_block_newline] = ACTIONS(1743), + [sym__closing_tag_html_block] = ACTIONS(1743), + [sym__closing_tag_html_block_newline] = ACTIONS(1743), + [sym_backslash_escape] = ACTIONS(1743), + [sym_uri_autolink] = ACTIONS(1743), + [sym_email_autolink] = ACTIONS(1743), + [sym_entity_reference] = ACTIONS(1743), + [sym_numeric_character_reference] = ACTIONS(1743), + [sym__whitespace_ge_2] = ACTIONS(1743), + [aux_sym__whitespace_token1] = ACTIONS(1745), + [sym__word_no_digit] = ACTIONS(1743), + [sym__digits] = ACTIONS(1743), + [aux_sym__newline_token1] = ACTIONS(1743), + [sym__block_quote_start] = ACTIONS(1743), + [sym__indented_chunk_start] = ACTIONS(1743), + [sym_atx_h1_marker] = ACTIONS(1743), + [sym_atx_h2_marker] = ACTIONS(1743), + [sym_atx_h3_marker] = ACTIONS(1743), + [sym_atx_h4_marker] = ACTIONS(1743), + [sym_atx_h5_marker] = ACTIONS(1743), + [sym_atx_h6_marker] = ACTIONS(1743), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1743), + [sym__thematic_break] = ACTIONS(1743), + [sym__list_marker_minus] = ACTIONS(1743), + [sym__list_marker_plus] = ACTIONS(1743), + [sym__list_marker_star] = ACTIONS(1743), + [sym__list_marker_parenthesis] = ACTIONS(1743), + [sym__list_marker_dot] = ACTIONS(1743), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1743), + [sym__fenced_code_block_start_backtick] = ACTIONS(1743), + [sym__fenced_code_block_start_tilde] = ACTIONS(1743), + [sym__blank_line_start] = ACTIONS(1743), + [sym__code_span_start] = ACTIONS(1743), + [sym__emphasis_open_star] = ACTIONS(1743), + [sym__emphasis_open_underscore] = ACTIONS(1743), }, [372] = { - [sym__block_interrupt_paragraph] = STATE(1614), - [sym__blank_line] = STATE(1614), - [sym_block_quote] = STATE(1614), - [sym_atx_heading] = STATE(1614), - [sym_setext_h1_underline] = STATE(1614), - [sym_setext_h2_underline] = STATE(1614), - [sym_thematic_break] = STATE(1614), - [sym_fenced_code_block] = STATE(1614), - [sym__html_block_1] = STATE(1614), - [sym__html_block_2] = STATE(1614), - [sym__html_block_3] = STATE(1614), - [sym__html_block_4] = STATE(1614), - [sym__html_block_5] = STATE(1614), - [sym__html_block_6] = STATE(1614), - [aux_sym__html_block_1_token1] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1605), - [anon_sym_LT_QMARK] = ACTIONS(1607), - [aux_sym__html_block_4_token1] = ACTIONS(1609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1611), - [aux_sym__html_block_6_token1] = ACTIONS(1613), - [aux_sym__html_block_6_token2] = ACTIONS(1615), - [sym_backslash_escape] = ACTIONS(436), - [sym_entity_reference] = ACTIONS(436), - [sym_numeric_character_reference] = ACTIONS(436), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(1617), - [sym_atx_h1_marker] = ACTIONS(1619), - [sym_atx_h2_marker] = ACTIONS(1619), - [sym_atx_h3_marker] = ACTIONS(1619), - [sym_atx_h4_marker] = ACTIONS(1619), - [sym_atx_h5_marker] = ACTIONS(1619), - [sym_atx_h6_marker] = ACTIONS(1619), - [sym__setext_h1_underline] = ACTIONS(1621), - [sym__setext_h2_underline] = ACTIONS(1623), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1798), - [sym__thematic_break] = ACTIONS(1627), - [sym__list_marker_minus] = ACTIONS(1704), - [sym__list_marker_plus] = ACTIONS(1704), - [sym__list_marker_star] = ACTIONS(1704), - [sym__list_marker_parenthesis] = ACTIONS(1704), - [sym__list_marker_dot] = ACTIONS(1704), - [sym__fenced_code_block_start_backtick] = ACTIONS(1631), - [sym__fenced_code_block_start_tilde] = ACTIONS(1633), - [sym__blank_line_start] = ACTIONS(1635), + [sym_shortcut_link] = STATE(418), + [sym_full_reference_link] = STATE(418), + [sym_collapsed_reference_link] = STATE(418), + [sym_inline_link] = STATE(418), + [sym_image] = STATE(418), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym_hard_line_break] = STATE(418), + [sym_html_tag] = STATE(418), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(418), + [sym__word] = STATE(418), + [sym__text_inline_no_underscore] = STATE(418), + [sym__inline_element_no_newline_no_underscore] = STATE(418), + [aux_sym__inline_no_newline_no_underscore] = STATE(418), + [sym__emphasis_star_no_newline] = STATE(863), + [sym__strong_emphasis_star_no_newline] = STATE(418), + [sym__emphasis_underscore_no_newline] = STATE(838), + [sym__strong_emphasis_underscore_no_newline] = STATE(418), + [sym__code_span_no_newline] = STATE(418), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_PERCENT] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1240), + [anon_sym_SLASH] = ACTIONS(1240), + [anon_sym_COLON] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1240), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_AT] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_BSLASH] = ACTIONS(1753), + [anon_sym_RBRACK] = ACTIONS(1240), + [anon_sym_CARET] = ACTIONS(1240), + [anon_sym__] = ACTIONS(1240), + [anon_sym_BQUOTE] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1756), + [anon_sym_LT_QMARK] = ACTIONS(1759), + [aux_sym__html_block_4_token1] = ACTIONS(1762), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1765), + [sym_backslash_escape] = ACTIONS(1768), + [sym_uri_autolink] = ACTIONS(1768), + [sym_email_autolink] = ACTIONS(1768), + [sym_entity_reference] = ACTIONS(1768), + [sym_numeric_character_reference] = ACTIONS(1768), + [sym__whitespace_ge_2] = ACTIONS(1771), + [aux_sym__whitespace_token1] = ACTIONS(1273), + [sym__word_no_digit] = ACTIONS(1768), + [sym__digits] = ACTIONS(1768), + [sym__code_span_start] = ACTIONS(1774), + [sym__emphasis_open_star] = ACTIONS(1777), + [sym__emphasis_open_underscore] = ACTIONS(1780), + [sym__emphasis_close_star] = ACTIONS(1288), }, [373] = { - [aux_sym__html_block_1_token1] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_COLON] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_BSLASH] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym__] = ACTIONS(1800), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1802), - [anon_sym_LT_QMARK] = ACTIONS(1802), - [aux_sym__html_block_4_token1] = ACTIONS(1802), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1800), - [aux_sym__html_block_6_token1] = ACTIONS(1802), - [aux_sym__html_block_6_token2] = ACTIONS(1800), - [sym__open_tag_html_block] = ACTIONS(1800), - [sym__open_tag_html_block_newline] = ACTIONS(1800), - [sym__closing_tag_html_block] = ACTIONS(1800), - [sym__closing_tag_html_block_newline] = ACTIONS(1800), - [sym_backslash_escape] = ACTIONS(1800), - [sym_uri_autolink] = ACTIONS(1800), - [sym_email_autolink] = ACTIONS(1800), - [sym_entity_reference] = ACTIONS(1800), - [sym_numeric_character_reference] = ACTIONS(1800), - [sym__whitespace_ge_2] = ACTIONS(1800), - [aux_sym__whitespace_token1] = ACTIONS(1802), - [sym__word_no_digit] = ACTIONS(1800), - [sym__digits] = ACTIONS(1800), - [aux_sym__newline_token1] = ACTIONS(1800), - [sym__block_close] = ACTIONS(1800), - [sym__block_quote_start] = ACTIONS(1800), - [sym__indented_chunk_start] = ACTIONS(1800), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1800), - [sym__list_marker_minus] = ACTIONS(1800), - [sym__list_marker_plus] = ACTIONS(1800), - [sym__list_marker_star] = ACTIONS(1800), - [sym__list_marker_parenthesis] = ACTIONS(1800), - [sym__list_marker_dot] = ACTIONS(1800), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1800), - [sym__fenced_code_block_start_backtick] = ACTIONS(1800), - [sym__fenced_code_block_start_tilde] = ACTIONS(1800), - [sym__blank_line_start] = ACTIONS(1800), - [sym__code_span_start] = ACTIONS(1800), - [sym__emphasis_open_star] = ACTIONS(1800), - [sym__emphasis_open_underscore] = ACTIONS(1800), + [sym_shortcut_link] = STATE(381), + [sym_full_reference_link] = STATE(381), + [sym_collapsed_reference_link] = STATE(381), + [sym_inline_link] = STATE(381), + [sym_image] = STATE(381), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym_hard_line_break] = STATE(381), + [sym_html_tag] = STATE(381), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(381), + [sym__word] = STATE(381), + [sym__text_inline_no_star] = STATE(381), + [sym__inline_element_no_newline_no_star] = STATE(381), + [aux_sym__inline_no_newline_no_star] = STATE(381), + [sym__emphasis_star_no_newline] = STATE(853), + [sym__strong_emphasis_star_no_newline] = STATE(381), + [sym__emphasis_underscore_no_newline] = STATE(853), + [sym__strong_emphasis_underscore_no_newline] = STATE(381), + [sym__code_span_no_newline] = STATE(381), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_BSLASH] = ACTIONS(1787), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1789), + [anon_sym_LT_QMARK] = ACTIONS(1791), + [aux_sym__html_block_4_token1] = ACTIONS(1793), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1795), + [sym_backslash_escape] = ACTIONS(1797), + [sym_uri_autolink] = ACTIONS(1797), + [sym_email_autolink] = ACTIONS(1797), + [sym_entity_reference] = ACTIONS(1797), + [sym_numeric_character_reference] = ACTIONS(1797), + [sym__whitespace_ge_2] = ACTIONS(1799), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(1797), + [sym__digits] = ACTIONS(1797), + [sym__code_span_start] = ACTIONS(1801), + [sym__emphasis_open_star] = ACTIONS(1803), + [sym__emphasis_open_underscore] = ACTIONS(1805), + [sym__emphasis_close_star] = ACTIONS(1807), }, [374] = { - [sym_shortcut_link] = STATE(385), - [sym_full_reference_link] = STATE(385), - [sym_collapsed_reference_link] = STATE(385), - [sym_inline_link] = STATE(385), - [sym_image] = STATE(385), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym_hard_line_break] = STATE(385), - [sym_html_tag] = STATE(385), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(385), - [sym__word] = STATE(385), - [sym__text_inline_no_star] = STATE(385), - [sym__inline_element_no_newline_no_star] = STATE(385), - [aux_sym__inline_no_newline_no_star] = STATE(385), - [sym__emphasis_star_no_newline] = STATE(876), - [sym__strong_emphasis_star_no_newline] = STATE(385), - [sym__emphasis_underscore_no_newline] = STATE(876), - [sym__strong_emphasis_underscore_no_newline] = STATE(385), - [sym__code_span_no_newline] = STATE(385), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_BSLASH] = ACTIONS(1808), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1810), - [anon_sym_LT_QMARK] = ACTIONS(1812), - [aux_sym__html_block_4_token1] = ACTIONS(1814), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1816), - [sym_backslash_escape] = ACTIONS(1818), - [sym_uri_autolink] = ACTIONS(1818), - [sym_email_autolink] = ACTIONS(1818), - [sym_entity_reference] = ACTIONS(1818), - [sym_numeric_character_reference] = ACTIONS(1818), - [sym__whitespace_ge_2] = ACTIONS(1820), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(1818), - [sym__digits] = ACTIONS(1818), - [sym__code_span_start] = ACTIONS(1822), - [sym__emphasis_open_star] = ACTIONS(1824), - [sym__emphasis_open_underscore] = ACTIONS(1826), - [sym__emphasis_close_star] = ACTIONS(1828), + [sym_shortcut_link] = STATE(383), + [sym_full_reference_link] = STATE(383), + [sym_collapsed_reference_link] = STATE(383), + [sym_inline_link] = STATE(383), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym_hard_line_break] = STATE(383), + [sym_html_tag] = STATE(383), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(383), + [sym__word] = STATE(383), + [sym__text_inline_no_underscore] = STATE(383), + [sym__inline_element_no_newline_no_underscore] = STATE(383), + [aux_sym__inline_no_newline_no_underscore] = STATE(383), + [sym__emphasis_star_no_newline] = STATE(863), + [sym__strong_emphasis_star_no_newline] = STATE(383), + [sym__emphasis_underscore_no_newline] = STATE(863), + [sym__strong_emphasis_underscore_no_newline] = STATE(383), + [sym__code_span_no_newline] = STATE(383), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_BSLASH] = ACTIONS(1813), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1815), + [anon_sym_LT_QMARK] = ACTIONS(1817), + [aux_sym__html_block_4_token1] = ACTIONS(1819), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1821), + [sym_backslash_escape] = ACTIONS(1823), + [sym_uri_autolink] = ACTIONS(1823), + [sym_email_autolink] = ACTIONS(1823), + [sym_entity_reference] = ACTIONS(1823), + [sym_numeric_character_reference] = ACTIONS(1823), + [sym__whitespace_ge_2] = ACTIONS(1825), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(1823), + [sym__digits] = ACTIONS(1823), + [sym__code_span_start] = ACTIONS(1827), + [sym__emphasis_open_star] = ACTIONS(1829), + [sym__emphasis_open_underscore] = ACTIONS(1831), + [sym__emphasis_close_underscore] = ACTIONS(1833), }, [375] = { - [aux_sym__html_block_1_token1] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_PERCENT] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_DOT] = ACTIONS(1830), - [anon_sym_SLASH] = ACTIONS(1830), - [anon_sym_COLON] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_QMARK] = ACTIONS(1830), - [anon_sym_AT] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_BSLASH] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_CARET] = ACTIONS(1830), - [anon_sym__] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1830), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1832), - [anon_sym_LT_QMARK] = ACTIONS(1832), - [aux_sym__html_block_4_token1] = ACTIONS(1832), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1830), - [aux_sym__html_block_6_token1] = ACTIONS(1832), - [aux_sym__html_block_6_token2] = ACTIONS(1830), - [sym__open_tag_html_block] = ACTIONS(1830), - [sym__open_tag_html_block_newline] = ACTIONS(1830), - [sym__closing_tag_html_block] = ACTIONS(1830), - [sym__closing_tag_html_block_newline] = ACTIONS(1830), - [sym_backslash_escape] = ACTIONS(1830), - [sym_uri_autolink] = ACTIONS(1830), - [sym_email_autolink] = ACTIONS(1830), - [sym_entity_reference] = ACTIONS(1830), - [sym_numeric_character_reference] = ACTIONS(1830), - [sym__whitespace_ge_2] = ACTIONS(1830), - [aux_sym__whitespace_token1] = ACTIONS(1832), - [sym__word_no_digit] = ACTIONS(1830), - [sym__digits] = ACTIONS(1830), - [aux_sym__newline_token1] = ACTIONS(1830), - [sym__block_close] = ACTIONS(1830), - [sym__block_quote_start] = ACTIONS(1830), - [sym__indented_chunk_start] = ACTIONS(1830), - [sym_atx_h1_marker] = ACTIONS(1830), - [sym_atx_h2_marker] = ACTIONS(1830), - [sym_atx_h3_marker] = ACTIONS(1830), - [sym_atx_h4_marker] = ACTIONS(1830), - [sym_atx_h5_marker] = ACTIONS(1830), - [sym_atx_h6_marker] = ACTIONS(1830), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1830), - [sym__thematic_break] = ACTIONS(1830), - [sym__list_marker_minus] = ACTIONS(1830), - [sym__list_marker_plus] = ACTIONS(1830), - [sym__list_marker_star] = ACTIONS(1830), - [sym__list_marker_parenthesis] = ACTIONS(1830), - [sym__list_marker_dot] = ACTIONS(1830), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1830), - [sym__fenced_code_block_start_backtick] = ACTIONS(1830), - [sym__fenced_code_block_start_tilde] = ACTIONS(1830), - [sym__blank_line_start] = ACTIONS(1830), - [sym__code_span_start] = ACTIONS(1830), - [sym__emphasis_open_star] = ACTIONS(1830), - [sym__emphasis_open_underscore] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1835), + [aux_sym__html_block_1_token1] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_COLON] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1835), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_BSLASH] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym__] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_QMARK] = ACTIONS(1837), + [aux_sym__html_block_4_token1] = ACTIONS(1837), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1835), + [aux_sym__html_block_6_token1] = ACTIONS(1837), + [aux_sym__html_block_6_token2] = ACTIONS(1835), + [sym__open_tag_html_block] = ACTIONS(1835), + [sym__open_tag_html_block_newline] = ACTIONS(1835), + [sym__closing_tag_html_block] = ACTIONS(1835), + [sym__closing_tag_html_block_newline] = ACTIONS(1835), + [sym_backslash_escape] = ACTIONS(1835), + [sym_uri_autolink] = ACTIONS(1835), + [sym_email_autolink] = ACTIONS(1835), + [sym_entity_reference] = ACTIONS(1835), + [sym_numeric_character_reference] = ACTIONS(1835), + [sym__whitespace_ge_2] = ACTIONS(1835), + [aux_sym__whitespace_token1] = ACTIONS(1837), + [sym__word_no_digit] = ACTIONS(1835), + [sym__digits] = ACTIONS(1835), + [aux_sym__newline_token1] = ACTIONS(1835), + [sym__block_quote_start] = ACTIONS(1835), + [sym__indented_chunk_start] = ACTIONS(1835), + [sym_atx_h1_marker] = ACTIONS(1835), + [sym_atx_h2_marker] = ACTIONS(1835), + [sym_atx_h3_marker] = ACTIONS(1835), + [sym_atx_h4_marker] = ACTIONS(1835), + [sym_atx_h5_marker] = ACTIONS(1835), + [sym_atx_h6_marker] = ACTIONS(1835), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1835), + [sym__thematic_break] = ACTIONS(1835), + [sym__list_marker_minus] = ACTIONS(1835), + [sym__list_marker_plus] = ACTIONS(1835), + [sym__list_marker_star] = ACTIONS(1835), + [sym__list_marker_parenthesis] = ACTIONS(1835), + [sym__list_marker_dot] = ACTIONS(1835), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1835), + [sym__fenced_code_block_start_backtick] = ACTIONS(1835), + [sym__fenced_code_block_start_tilde] = ACTIONS(1835), + [sym__blank_line_start] = ACTIONS(1835), + [sym__code_span_start] = ACTIONS(1835), + [sym__emphasis_open_star] = ACTIONS(1835), + [sym__emphasis_open_underscore] = ACTIONS(1835), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [aux_sym__html_block_1_token1] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_COLON] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_BSLASH] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym__] = ACTIONS(1800), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1802), - [anon_sym_LT_QMARK] = ACTIONS(1802), - [aux_sym__html_block_4_token1] = ACTIONS(1802), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1800), - [aux_sym__html_block_6_token1] = ACTIONS(1802), - [aux_sym__html_block_6_token2] = ACTIONS(1800), - [sym__open_tag_html_block] = ACTIONS(1800), - [sym__open_tag_html_block_newline] = ACTIONS(1800), - [sym__closing_tag_html_block] = ACTIONS(1800), - [sym__closing_tag_html_block_newline] = ACTIONS(1800), - [sym_backslash_escape] = ACTIONS(1800), - [sym_uri_autolink] = ACTIONS(1800), - [sym_email_autolink] = ACTIONS(1800), - [sym_entity_reference] = ACTIONS(1800), - [sym_numeric_character_reference] = ACTIONS(1800), - [sym__whitespace_ge_2] = ACTIONS(1800), - [aux_sym__whitespace_token1] = ACTIONS(1802), - [sym__word_no_digit] = ACTIONS(1800), - [sym__digits] = ACTIONS(1800), - [aux_sym__newline_token1] = ACTIONS(1800), - [sym__block_quote_start] = ACTIONS(1800), - [sym__indented_chunk_start] = ACTIONS(1800), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1800), - [sym__list_marker_minus] = ACTIONS(1800), - [sym__list_marker_plus] = ACTIONS(1800), - [sym__list_marker_star] = ACTIONS(1800), - [sym__list_marker_parenthesis] = ACTIONS(1800), - [sym__list_marker_dot] = ACTIONS(1800), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1800), - [sym__fenced_code_block_start_backtick] = ACTIONS(1800), - [sym__fenced_code_block_start_tilde] = ACTIONS(1800), - [sym__blank_line_start] = ACTIONS(1800), - [sym__code_span_start] = ACTIONS(1800), - [sym__emphasis_open_star] = ACTIONS(1800), - [sym__emphasis_open_underscore] = ACTIONS(1800), + [sym_shortcut_link] = STATE(380), + [sym_full_reference_link] = STATE(380), + [sym_collapsed_reference_link] = STATE(380), + [sym_inline_link] = STATE(380), + [sym_image] = STATE(380), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym_hard_line_break] = STATE(380), + [sym_html_tag] = STATE(380), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(380), + [sym__word] = STATE(380), + [sym__text_inline_no_star] = STATE(380), + [sym__inline_element_no_newline_no_star] = STATE(380), + [aux_sym__inline_no_newline_no_star] = STATE(380), + [sym__emphasis_star_no_newline] = STATE(922), + [sym__strong_emphasis_star_no_newline] = STATE(380), + [sym__emphasis_underscore_no_newline] = STATE(853), + [sym__strong_emphasis_underscore_no_newline] = STATE(380), + [sym__code_span_no_newline] = STATE(380), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_PERCENT] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_COLON] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_BSLASH] = ACTIONS(1845), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1848), + [anon_sym_LT_QMARK] = ACTIONS(1851), + [aux_sym__html_block_4_token1] = ACTIONS(1854), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1857), + [sym_backslash_escape] = ACTIONS(1860), + [sym_uri_autolink] = ACTIONS(1860), + [sym_email_autolink] = ACTIONS(1860), + [sym_entity_reference] = ACTIONS(1860), + [sym_numeric_character_reference] = ACTIONS(1860), + [sym__whitespace_ge_2] = ACTIONS(1863), + [aux_sym__whitespace_token1] = ACTIONS(1107), + [sym__word_no_digit] = ACTIONS(1860), + [sym__digits] = ACTIONS(1860), + [sym__code_span_start] = ACTIONS(1866), + [sym__emphasis_open_star] = ACTIONS(1869), + [sym__emphasis_open_underscore] = ACTIONS(1872), + [sym__emphasis_close_underscore] = ACTIONS(1122), }, [377] = { - [aux_sym__html_block_1_token1] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_COLON] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1836), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_QMARK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_BSLASH] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym__] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1836), - [anon_sym_LT_QMARK] = ACTIONS(1836), - [aux_sym__html_block_4_token1] = ACTIONS(1836), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1834), - [aux_sym__html_block_6_token1] = ACTIONS(1836), - [aux_sym__html_block_6_token2] = ACTIONS(1834), - [sym__open_tag_html_block] = ACTIONS(1834), - [sym__open_tag_html_block_newline] = ACTIONS(1834), - [sym__closing_tag_html_block] = ACTIONS(1834), - [sym__closing_tag_html_block_newline] = ACTIONS(1834), - [sym_backslash_escape] = ACTIONS(1834), - [sym_uri_autolink] = ACTIONS(1834), - [sym_email_autolink] = ACTIONS(1834), - [sym_entity_reference] = ACTIONS(1834), - [sym_numeric_character_reference] = ACTIONS(1834), - [sym__whitespace_ge_2] = ACTIONS(1834), - [aux_sym__whitespace_token1] = ACTIONS(1836), - [sym__word_no_digit] = ACTIONS(1834), - [sym__digits] = ACTIONS(1834), - [aux_sym__newline_token1] = ACTIONS(1834), - [sym__block_close] = ACTIONS(1834), - [sym__block_quote_start] = ACTIONS(1834), - [sym__indented_chunk_start] = ACTIONS(1834), - [sym_atx_h1_marker] = ACTIONS(1834), - [sym_atx_h2_marker] = ACTIONS(1834), - [sym_atx_h3_marker] = ACTIONS(1834), - [sym_atx_h4_marker] = ACTIONS(1834), - [sym_atx_h5_marker] = ACTIONS(1834), - [sym_atx_h6_marker] = ACTIONS(1834), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1834), - [sym__thematic_break] = ACTIONS(1834), - [sym__list_marker_minus] = ACTIONS(1834), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1834), - [sym__list_marker_parenthesis] = ACTIONS(1834), - [sym__list_marker_dot] = ACTIONS(1834), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1834), - [sym__fenced_code_block_start_backtick] = ACTIONS(1834), - [sym__fenced_code_block_start_tilde] = ACTIONS(1834), - [sym__blank_line_start] = ACTIONS(1834), - [sym__code_span_start] = ACTIONS(1834), - [sym__emphasis_open_star] = ACTIONS(1834), - [sym__emphasis_open_underscore] = ACTIONS(1834), + [sym__block_interrupt_paragraph] = STATE(1699), + [sym__blank_line] = STATE(1699), + [sym_block_quote] = STATE(1699), + [sym_atx_heading] = STATE(1699), + [sym_setext_h1_underline] = STATE(1699), + [sym_setext_h2_underline] = STATE(1699), + [sym_thematic_break] = STATE(1699), + [sym_fenced_code_block] = STATE(1699), + [sym__html_block_1] = STATE(1699), + [sym__html_block_2] = STATE(1699), + [sym__html_block_3] = STATE(1699), + [sym__html_block_4] = STATE(1699), + [sym__html_block_5] = STATE(1699), + [sym__html_block_6] = STATE(1699), + [aux_sym__html_block_1_token1] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_QMARK] = ACTIONS(1879), + [aux_sym__html_block_4_token1] = ACTIONS(1881), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1883), + [aux_sym__html_block_6_token1] = ACTIONS(1885), + [aux_sym__html_block_6_token2] = ACTIONS(1887), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [aux_sym__newline_token1] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(1889), + [sym_atx_h1_marker] = ACTIONS(1891), + [sym_atx_h2_marker] = ACTIONS(1891), + [sym_atx_h3_marker] = ACTIONS(1891), + [sym_atx_h4_marker] = ACTIONS(1891), + [sym_atx_h5_marker] = ACTIONS(1891), + [sym_atx_h6_marker] = ACTIONS(1891), + [sym__setext_h1_underline] = ACTIONS(1893), + [sym__setext_h2_underline] = ACTIONS(1895), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1897), + [sym__thematic_break] = ACTIONS(1899), + [sym__list_marker_minus] = ACTIONS(1901), + [sym__list_marker_plus] = ACTIONS(1901), + [sym__list_marker_star] = ACTIONS(1901), + [sym__list_marker_parenthesis] = ACTIONS(1901), + [sym__list_marker_dot] = ACTIONS(1901), + [sym__fenced_code_block_start_backtick] = ACTIONS(1903), + [sym__fenced_code_block_start_tilde] = ACTIONS(1905), + [sym__blank_line_start] = ACTIONS(1907), + [sym__code_span_close] = ACTIONS(419), }, [378] = { - [aux_sym__html_block_1_token1] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_COLON] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_BSLASH] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym__] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1840), - [anon_sym_LT_QMARK] = ACTIONS(1840), - [aux_sym__html_block_4_token1] = ACTIONS(1840), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1838), - [aux_sym__html_block_6_token1] = ACTIONS(1840), - [aux_sym__html_block_6_token2] = ACTIONS(1838), - [sym__open_tag_html_block] = ACTIONS(1838), - [sym__open_tag_html_block_newline] = ACTIONS(1838), - [sym__closing_tag_html_block] = ACTIONS(1838), - [sym__closing_tag_html_block_newline] = ACTIONS(1838), - [sym_backslash_escape] = ACTIONS(1838), - [sym_uri_autolink] = ACTIONS(1838), - [sym_email_autolink] = ACTIONS(1838), - [sym_entity_reference] = ACTIONS(1838), - [sym_numeric_character_reference] = ACTIONS(1838), - [sym__whitespace_ge_2] = ACTIONS(1838), - [aux_sym__whitespace_token1] = ACTIONS(1840), - [sym__word_no_digit] = ACTIONS(1838), - [sym__digits] = ACTIONS(1838), - [aux_sym__newline_token1] = ACTIONS(1838), - [sym__block_close] = ACTIONS(1838), - [sym__block_quote_start] = ACTIONS(1838), - [sym__indented_chunk_start] = ACTIONS(1838), - [sym_atx_h1_marker] = ACTIONS(1838), - [sym_atx_h2_marker] = ACTIONS(1838), - [sym_atx_h3_marker] = ACTIONS(1838), - [sym_atx_h4_marker] = ACTIONS(1838), - [sym_atx_h5_marker] = ACTIONS(1838), - [sym_atx_h6_marker] = ACTIONS(1838), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1838), - [sym__thematic_break] = ACTIONS(1838), - [sym__list_marker_minus] = ACTIONS(1838), - [sym__list_marker_plus] = ACTIONS(1838), - [sym__list_marker_star] = ACTIONS(1838), - [sym__list_marker_parenthesis] = ACTIONS(1838), - [sym__list_marker_dot] = ACTIONS(1838), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1838), - [sym__fenced_code_block_start_backtick] = ACTIONS(1838), - [sym__fenced_code_block_start_tilde] = ACTIONS(1838), - [sym__blank_line_start] = ACTIONS(1838), - [sym__code_span_start] = ACTIONS(1838), - [sym__emphasis_open_star] = ACTIONS(1838), - [sym__emphasis_open_underscore] = ACTIONS(1838), + [aux_sym__html_block_1_token1] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_PERCENT] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_SLASH] = ACTIONS(1909), + [anon_sym_COLON] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1909), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_AT] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_BSLASH] = ACTIONS(1911), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym__] = ACTIONS(1909), + [anon_sym_BQUOTE] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1911), + [anon_sym_LT_QMARK] = ACTIONS(1911), + [aux_sym__html_block_4_token1] = ACTIONS(1911), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1909), + [aux_sym__html_block_6_token1] = ACTIONS(1911), + [aux_sym__html_block_6_token2] = ACTIONS(1909), + [sym__open_tag_html_block] = ACTIONS(1909), + [sym__open_tag_html_block_newline] = ACTIONS(1909), + [sym__closing_tag_html_block] = ACTIONS(1909), + [sym__closing_tag_html_block_newline] = ACTIONS(1909), + [sym_backslash_escape] = ACTIONS(1909), + [sym_uri_autolink] = ACTIONS(1909), + [sym_email_autolink] = ACTIONS(1909), + [sym_entity_reference] = ACTIONS(1909), + [sym_numeric_character_reference] = ACTIONS(1909), + [sym__whitespace_ge_2] = ACTIONS(1909), + [aux_sym__whitespace_token1] = ACTIONS(1911), + [sym__word_no_digit] = ACTIONS(1909), + [sym__digits] = ACTIONS(1909), + [aux_sym__newline_token1] = ACTIONS(1909), + [sym__block_close] = ACTIONS(1909), + [sym__block_quote_start] = ACTIONS(1909), + [sym__indented_chunk_start] = ACTIONS(1909), + [sym_atx_h1_marker] = ACTIONS(1909), + [sym_atx_h2_marker] = ACTIONS(1909), + [sym_atx_h3_marker] = ACTIONS(1909), + [sym_atx_h4_marker] = ACTIONS(1909), + [sym_atx_h5_marker] = ACTIONS(1909), + [sym_atx_h6_marker] = ACTIONS(1909), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1909), + [sym__thematic_break] = ACTIONS(1909), + [sym__list_marker_minus] = ACTIONS(1909), + [sym__list_marker_plus] = ACTIONS(1909), + [sym__list_marker_star] = ACTIONS(1909), + [sym__list_marker_parenthesis] = ACTIONS(1909), + [sym__list_marker_dot] = ACTIONS(1909), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1909), + [sym__fenced_code_block_start_backtick] = ACTIONS(1909), + [sym__fenced_code_block_start_tilde] = ACTIONS(1909), + [sym__blank_line_start] = ACTIONS(1909), + [sym__code_span_start] = ACTIONS(1909), + [sym__emphasis_open_star] = ACTIONS(1909), + [sym__emphasis_open_underscore] = ACTIONS(1909), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [aux_sym__html_block_1_token1] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_COLON] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1836), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1834), - [anon_sym_QMARK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_BSLASH] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym__] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1836), - [anon_sym_LT_QMARK] = ACTIONS(1836), - [aux_sym__html_block_4_token1] = ACTIONS(1836), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1834), - [aux_sym__html_block_6_token1] = ACTIONS(1836), - [aux_sym__html_block_6_token2] = ACTIONS(1834), - [sym__open_tag_html_block] = ACTIONS(1834), - [sym__open_tag_html_block_newline] = ACTIONS(1834), - [sym__closing_tag_html_block] = ACTIONS(1834), - [sym__closing_tag_html_block_newline] = ACTIONS(1834), - [sym_backslash_escape] = ACTIONS(1834), - [sym_uri_autolink] = ACTIONS(1834), - [sym_email_autolink] = ACTIONS(1834), - [sym_entity_reference] = ACTIONS(1834), - [sym_numeric_character_reference] = ACTIONS(1834), - [sym__whitespace_ge_2] = ACTIONS(1834), - [aux_sym__whitespace_token1] = ACTIONS(1836), - [sym__word_no_digit] = ACTIONS(1834), - [sym__digits] = ACTIONS(1834), - [aux_sym__newline_token1] = ACTIONS(1834), - [sym__block_quote_start] = ACTIONS(1834), - [sym__indented_chunk_start] = ACTIONS(1834), - [sym_atx_h1_marker] = ACTIONS(1834), - [sym_atx_h2_marker] = ACTIONS(1834), - [sym_atx_h3_marker] = ACTIONS(1834), - [sym_atx_h4_marker] = ACTIONS(1834), - [sym_atx_h5_marker] = ACTIONS(1834), - [sym_atx_h6_marker] = ACTIONS(1834), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1834), - [sym__thematic_break] = ACTIONS(1834), - [sym__list_marker_minus] = ACTIONS(1834), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1834), - [sym__list_marker_parenthesis] = ACTIONS(1834), - [sym__list_marker_dot] = ACTIONS(1834), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1834), - [sym__fenced_code_block_start_backtick] = ACTIONS(1834), - [sym__fenced_code_block_start_tilde] = ACTIONS(1834), - [sym__blank_line_start] = ACTIONS(1834), - [sym__code_span_start] = ACTIONS(1834), - [sym__emphasis_open_star] = ACTIONS(1834), - [sym__emphasis_open_underscore] = ACTIONS(1834), + [aux_sym__html_block_1_token1] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_COLON] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(1913), + [anon_sym_AT] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_BSLASH] = ACTIONS(1915), + [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym__] = ACTIONS(1913), + [anon_sym_BQUOTE] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1915), + [anon_sym_LT_QMARK] = ACTIONS(1915), + [aux_sym__html_block_4_token1] = ACTIONS(1915), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1913), + [aux_sym__html_block_6_token1] = ACTIONS(1915), + [aux_sym__html_block_6_token2] = ACTIONS(1913), + [sym__open_tag_html_block] = ACTIONS(1913), + [sym__open_tag_html_block_newline] = ACTIONS(1913), + [sym__closing_tag_html_block] = ACTIONS(1913), + [sym__closing_tag_html_block_newline] = ACTIONS(1913), + [sym_backslash_escape] = ACTIONS(1913), + [sym_uri_autolink] = ACTIONS(1913), + [sym_email_autolink] = ACTIONS(1913), + [sym_entity_reference] = ACTIONS(1913), + [sym_numeric_character_reference] = ACTIONS(1913), + [sym__whitespace_ge_2] = ACTIONS(1913), + [aux_sym__whitespace_token1] = ACTIONS(1915), + [sym__word_no_digit] = ACTIONS(1913), + [sym__digits] = ACTIONS(1913), + [aux_sym__newline_token1] = ACTIONS(1913), + [sym__block_close] = ACTIONS(1913), + [sym__block_quote_start] = ACTIONS(1913), + [sym__indented_chunk_start] = ACTIONS(1913), + [sym_atx_h1_marker] = ACTIONS(1913), + [sym_atx_h2_marker] = ACTIONS(1913), + [sym_atx_h3_marker] = ACTIONS(1913), + [sym_atx_h4_marker] = ACTIONS(1913), + [sym_atx_h5_marker] = ACTIONS(1913), + [sym_atx_h6_marker] = ACTIONS(1913), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1913), + [sym__thematic_break] = ACTIONS(1913), + [sym__list_marker_minus] = ACTIONS(1913), + [sym__list_marker_plus] = ACTIONS(1913), + [sym__list_marker_star] = ACTIONS(1913), + [sym__list_marker_parenthesis] = ACTIONS(1913), + [sym__list_marker_dot] = ACTIONS(1913), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1913), + [sym__fenced_code_block_start_backtick] = ACTIONS(1913), + [sym__fenced_code_block_start_tilde] = ACTIONS(1913), + [sym__blank_line_start] = ACTIONS(1913), + [sym__code_span_start] = ACTIONS(1913), + [sym__emphasis_open_star] = ACTIONS(1913), + [sym__emphasis_open_underscore] = ACTIONS(1913), }, [380] = { - [aux_sym__html_block_1_token1] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_SLASH] = ACTIONS(1842), - [anon_sym_COLON] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_QMARK] = ACTIONS(1842), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH] = ACTIONS(1844), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_CARET] = ACTIONS(1842), - [anon_sym__] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1844), - [anon_sym_LT_QMARK] = ACTIONS(1844), - [aux_sym__html_block_4_token1] = ACTIONS(1844), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1842), - [aux_sym__html_block_6_token1] = ACTIONS(1844), - [aux_sym__html_block_6_token2] = ACTIONS(1842), - [sym__open_tag_html_block] = ACTIONS(1842), - [sym__open_tag_html_block_newline] = ACTIONS(1842), - [sym__closing_tag_html_block] = ACTIONS(1842), - [sym__closing_tag_html_block_newline] = ACTIONS(1842), - [sym_backslash_escape] = ACTIONS(1842), - [sym_uri_autolink] = ACTIONS(1842), - [sym_email_autolink] = ACTIONS(1842), - [sym_entity_reference] = ACTIONS(1842), - [sym_numeric_character_reference] = ACTIONS(1842), - [sym__whitespace_ge_2] = ACTIONS(1842), - [aux_sym__whitespace_token1] = ACTIONS(1844), - [sym__word_no_digit] = ACTIONS(1842), - [sym__digits] = ACTIONS(1842), - [aux_sym__newline_token1] = ACTIONS(1842), - [sym__block_close] = ACTIONS(1842), - [sym__block_quote_start] = ACTIONS(1842), - [sym__indented_chunk_start] = ACTIONS(1842), - [sym_atx_h1_marker] = ACTIONS(1842), - [sym_atx_h2_marker] = ACTIONS(1842), - [sym_atx_h3_marker] = ACTIONS(1842), - [sym_atx_h4_marker] = ACTIONS(1842), - [sym_atx_h5_marker] = ACTIONS(1842), - [sym_atx_h6_marker] = ACTIONS(1842), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1842), - [sym__thematic_break] = ACTIONS(1842), - [sym__list_marker_minus] = ACTIONS(1842), - [sym__list_marker_plus] = ACTIONS(1842), - [sym__list_marker_star] = ACTIONS(1842), - [sym__list_marker_parenthesis] = ACTIONS(1842), - [sym__list_marker_dot] = ACTIONS(1842), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1842), - [sym__fenced_code_block_start_backtick] = ACTIONS(1842), - [sym__fenced_code_block_start_tilde] = ACTIONS(1842), - [sym__blank_line_start] = ACTIONS(1842), - [sym__code_span_start] = ACTIONS(1842), - [sym__emphasis_open_star] = ACTIONS(1842), - [sym__emphasis_open_underscore] = ACTIONS(1842), + [sym_shortcut_link] = STATE(381), + [sym_full_reference_link] = STATE(381), + [sym_collapsed_reference_link] = STATE(381), + [sym_inline_link] = STATE(381), + [sym_image] = STATE(381), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym_hard_line_break] = STATE(381), + [sym_html_tag] = STATE(381), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(381), + [sym__word] = STATE(381), + [sym__text_inline_no_star] = STATE(381), + [sym__inline_element_no_newline_no_star] = STATE(381), + [aux_sym__inline_no_newline_no_star] = STATE(381), + [sym__emphasis_star_no_newline] = STATE(853), + [sym__strong_emphasis_star_no_newline] = STATE(381), + [sym__emphasis_underscore_no_newline] = STATE(853), + [sym__strong_emphasis_underscore_no_newline] = STATE(381), + [sym__code_span_no_newline] = STATE(381), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_BSLASH] = ACTIONS(1787), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1789), + [anon_sym_LT_QMARK] = ACTIONS(1791), + [aux_sym__html_block_4_token1] = ACTIONS(1793), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1795), + [sym_backslash_escape] = ACTIONS(1797), + [sym_uri_autolink] = ACTIONS(1797), + [sym_email_autolink] = ACTIONS(1797), + [sym_entity_reference] = ACTIONS(1797), + [sym_numeric_character_reference] = ACTIONS(1797), + [sym__whitespace_ge_2] = ACTIONS(1799), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(1797), + [sym__digits] = ACTIONS(1797), + [sym__code_span_start] = ACTIONS(1801), + [sym__emphasis_open_star] = ACTIONS(1803), + [sym__emphasis_open_underscore] = ACTIONS(1805), + [sym__emphasis_close_star] = ACTIONS(1917), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [aux_sym__html_block_1_token1] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_COMMA] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_SLASH] = ACTIONS(1846), - [anon_sym_COLON] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_EQ] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_QMARK] = ACTIONS(1846), - [anon_sym_AT] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_BSLASH] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1846), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym__] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1848), - [anon_sym_LT_QMARK] = ACTIONS(1848), - [aux_sym__html_block_4_token1] = ACTIONS(1848), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1846), - [aux_sym__html_block_6_token1] = ACTIONS(1848), - [aux_sym__html_block_6_token2] = ACTIONS(1846), - [sym__open_tag_html_block] = ACTIONS(1846), - [sym__open_tag_html_block_newline] = ACTIONS(1846), - [sym__closing_tag_html_block] = ACTIONS(1846), - [sym__closing_tag_html_block_newline] = ACTIONS(1846), - [sym_backslash_escape] = ACTIONS(1846), - [sym_uri_autolink] = ACTIONS(1846), - [sym_email_autolink] = ACTIONS(1846), - [sym_entity_reference] = ACTIONS(1846), - [sym_numeric_character_reference] = ACTIONS(1846), - [sym__whitespace_ge_2] = ACTIONS(1846), - [aux_sym__whitespace_token1] = ACTIONS(1848), - [sym__word_no_digit] = ACTIONS(1846), - [sym__digits] = ACTIONS(1846), - [aux_sym__newline_token1] = ACTIONS(1846), - [sym__block_quote_start] = ACTIONS(1846), - [sym__indented_chunk_start] = ACTIONS(1846), - [sym_atx_h1_marker] = ACTIONS(1846), - [sym_atx_h2_marker] = ACTIONS(1846), - [sym_atx_h3_marker] = ACTIONS(1846), - [sym_atx_h4_marker] = ACTIONS(1846), - [sym_atx_h5_marker] = ACTIONS(1846), - [sym_atx_h6_marker] = ACTIONS(1846), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1846), - [sym__thematic_break] = ACTIONS(1846), - [sym__list_marker_minus] = ACTIONS(1846), - [sym__list_marker_plus] = ACTIONS(1846), - [sym__list_marker_star] = ACTIONS(1846), - [sym__list_marker_parenthesis] = ACTIONS(1846), - [sym__list_marker_dot] = ACTIONS(1846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1846), - [sym__fenced_code_block_start_tilde] = ACTIONS(1846), - [sym__blank_line_start] = ACTIONS(1846), - [sym__code_span_start] = ACTIONS(1846), - [sym__emphasis_open_star] = ACTIONS(1846), - [sym__emphasis_open_underscore] = ACTIONS(1846), + [sym_shortcut_link] = STATE(381), + [sym_full_reference_link] = STATE(381), + [sym_collapsed_reference_link] = STATE(381), + [sym_inline_link] = STATE(381), + [sym_image] = STATE(381), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym_hard_line_break] = STATE(381), + [sym_html_tag] = STATE(381), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(381), + [sym__word] = STATE(381), + [sym__text_inline_no_star] = STATE(381), + [sym__inline_element_no_newline_no_star] = STATE(381), + [aux_sym__inline_no_newline_no_star] = STATE(381), + [sym__emphasis_star_no_newline] = STATE(853), + [sym__strong_emphasis_star_no_newline] = STATE(381), + [sym__emphasis_underscore_no_newline] = STATE(853), + [sym__strong_emphasis_underscore_no_newline] = STATE(381), + [sym__code_span_no_newline] = STATE(381), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_PERCENT] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_DOT] = ACTIONS(1922), + [anon_sym_SLASH] = ACTIONS(1922), + [anon_sym_COLON] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_EQ] = ACTIONS(1922), + [anon_sym_GT] = ACTIONS(1922), + [anon_sym_QMARK] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_BSLASH] = ACTIONS(1934), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym__] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_TILDE] = ACTIONS(1922), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1937), + [anon_sym_LT_QMARK] = ACTIONS(1940), + [aux_sym__html_block_4_token1] = ACTIONS(1943), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1946), + [sym_backslash_escape] = ACTIONS(1949), + [sym_uri_autolink] = ACTIONS(1949), + [sym_email_autolink] = ACTIONS(1949), + [sym_entity_reference] = ACTIONS(1949), + [sym_numeric_character_reference] = ACTIONS(1949), + [sym__whitespace_ge_2] = ACTIONS(1952), + [aux_sym__whitespace_token1] = ACTIONS(1955), + [sym__word_no_digit] = ACTIONS(1949), + [sym__digits] = ACTIONS(1949), + [sym__code_span_start] = ACTIONS(1958), + [sym__emphasis_open_star] = ACTIONS(1961), + [sym__emphasis_open_underscore] = ACTIONS(1964), + [sym__emphasis_close_star] = ACTIONS(1967), }, [382] = { - [aux_sym__html_block_1_token1] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_COMMA] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_SLASH] = ACTIONS(1846), - [anon_sym_COLON] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_EQ] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1846), - [anon_sym_QMARK] = ACTIONS(1846), - [anon_sym_AT] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_BSLASH] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1846), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym__] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1848), - [anon_sym_LT_QMARK] = ACTIONS(1848), - [aux_sym__html_block_4_token1] = ACTIONS(1848), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1846), - [aux_sym__html_block_6_token1] = ACTIONS(1848), - [aux_sym__html_block_6_token2] = ACTIONS(1846), - [sym__open_tag_html_block] = ACTIONS(1846), - [sym__open_tag_html_block_newline] = ACTIONS(1846), - [sym__closing_tag_html_block] = ACTIONS(1846), - [sym__closing_tag_html_block_newline] = ACTIONS(1846), - [sym_backslash_escape] = ACTIONS(1846), - [sym_uri_autolink] = ACTIONS(1846), - [sym_email_autolink] = ACTIONS(1846), - [sym_entity_reference] = ACTIONS(1846), - [sym_numeric_character_reference] = ACTIONS(1846), - [sym__whitespace_ge_2] = ACTIONS(1846), - [aux_sym__whitespace_token1] = ACTIONS(1848), - [sym__word_no_digit] = ACTIONS(1846), - [sym__digits] = ACTIONS(1846), - [aux_sym__newline_token1] = ACTIONS(1846), - [sym__block_close] = ACTIONS(1846), - [sym__block_quote_start] = ACTIONS(1846), - [sym__indented_chunk_start] = ACTIONS(1846), - [sym_atx_h1_marker] = ACTIONS(1846), - [sym_atx_h2_marker] = ACTIONS(1846), - [sym_atx_h3_marker] = ACTIONS(1846), - [sym_atx_h4_marker] = ACTIONS(1846), - [sym_atx_h5_marker] = ACTIONS(1846), - [sym_atx_h6_marker] = ACTIONS(1846), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1846), - [sym__thematic_break] = ACTIONS(1846), - [sym__list_marker_minus] = ACTIONS(1846), - [sym__list_marker_plus] = ACTIONS(1846), - [sym__list_marker_star] = ACTIONS(1846), - [sym__list_marker_parenthesis] = ACTIONS(1846), - [sym__list_marker_dot] = ACTIONS(1846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1846), - [sym__fenced_code_block_start_tilde] = ACTIONS(1846), - [sym__blank_line_start] = ACTIONS(1846), - [sym__code_span_start] = ACTIONS(1846), - [sym__emphasis_open_star] = ACTIONS(1846), - [sym__emphasis_open_underscore] = ACTIONS(1846), + [aux_sym__html_block_1_token1] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_PERCENT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_COLON] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_BSLASH] = ACTIONS(1971), + [anon_sym_RBRACK] = ACTIONS(1969), + [anon_sym_CARET] = ACTIONS(1969), + [anon_sym__] = ACTIONS(1969), + [anon_sym_BQUOTE] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1971), + [aux_sym__html_block_4_token1] = ACTIONS(1971), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1969), + [aux_sym__html_block_6_token1] = ACTIONS(1971), + [aux_sym__html_block_6_token2] = ACTIONS(1969), + [sym__open_tag_html_block] = ACTIONS(1969), + [sym__open_tag_html_block_newline] = ACTIONS(1969), + [sym__closing_tag_html_block] = ACTIONS(1969), + [sym__closing_tag_html_block_newline] = ACTIONS(1969), + [sym_backslash_escape] = ACTIONS(1969), + [sym_uri_autolink] = ACTIONS(1969), + [sym_email_autolink] = ACTIONS(1969), + [sym_entity_reference] = ACTIONS(1969), + [sym_numeric_character_reference] = ACTIONS(1969), + [sym__whitespace_ge_2] = ACTIONS(1969), + [aux_sym__whitespace_token1] = ACTIONS(1971), + [sym__word_no_digit] = ACTIONS(1969), + [sym__digits] = ACTIONS(1969), + [aux_sym__newline_token1] = ACTIONS(1969), + [sym__block_close] = ACTIONS(1969), + [sym__block_quote_start] = ACTIONS(1969), + [sym__indented_chunk_start] = ACTIONS(1969), + [sym_atx_h1_marker] = ACTIONS(1969), + [sym_atx_h2_marker] = ACTIONS(1969), + [sym_atx_h3_marker] = ACTIONS(1969), + [sym_atx_h4_marker] = ACTIONS(1969), + [sym_atx_h5_marker] = ACTIONS(1969), + [sym_atx_h6_marker] = ACTIONS(1969), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1969), + [sym__thematic_break] = ACTIONS(1969), + [sym__list_marker_minus] = ACTIONS(1969), + [sym__list_marker_plus] = ACTIONS(1969), + [sym__list_marker_star] = ACTIONS(1969), + [sym__list_marker_parenthesis] = ACTIONS(1969), + [sym__list_marker_dot] = ACTIONS(1969), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1969), + [sym__fenced_code_block_start_backtick] = ACTIONS(1969), + [sym__fenced_code_block_start_tilde] = ACTIONS(1969), + [sym__blank_line_start] = ACTIONS(1969), + [sym__code_span_start] = ACTIONS(1969), + [sym__emphasis_open_star] = ACTIONS(1969), + [sym__emphasis_open_underscore] = ACTIONS(1969), }, [383] = { - [aux_sym__html_block_1_token1] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_COMMA] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_SLASH] = ACTIONS(1850), - [anon_sym_COLON] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_GT] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_BSLASH] = ACTIONS(1852), - [anon_sym_RBRACK] = ACTIONS(1850), - [anon_sym_CARET] = ACTIONS(1850), - [anon_sym__] = ACTIONS(1850), - [anon_sym_BQUOTE] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1852), - [anon_sym_LT_QMARK] = ACTIONS(1852), - [aux_sym__html_block_4_token1] = ACTIONS(1852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1850), - [aux_sym__html_block_6_token1] = ACTIONS(1852), - [aux_sym__html_block_6_token2] = ACTIONS(1850), - [sym__open_tag_html_block] = ACTIONS(1850), - [sym__open_tag_html_block_newline] = ACTIONS(1850), - [sym__closing_tag_html_block] = ACTIONS(1850), - [sym__closing_tag_html_block_newline] = ACTIONS(1850), - [sym_backslash_escape] = ACTIONS(1850), - [sym_uri_autolink] = ACTIONS(1850), - [sym_email_autolink] = ACTIONS(1850), - [sym_entity_reference] = ACTIONS(1850), - [sym_numeric_character_reference] = ACTIONS(1850), - [sym__whitespace_ge_2] = ACTIONS(1850), - [aux_sym__whitespace_token1] = ACTIONS(1852), - [sym__word_no_digit] = ACTIONS(1850), - [sym__digits] = ACTIONS(1850), - [aux_sym__newline_token1] = ACTIONS(1850), - [sym__block_close] = ACTIONS(1850), - [sym__block_quote_start] = ACTIONS(1850), - [sym__indented_chunk_start] = ACTIONS(1850), - [sym_atx_h1_marker] = ACTIONS(1850), - [sym_atx_h2_marker] = ACTIONS(1850), - [sym_atx_h3_marker] = ACTIONS(1850), - [sym_atx_h4_marker] = ACTIONS(1850), - [sym_atx_h5_marker] = ACTIONS(1850), - [sym_atx_h6_marker] = ACTIONS(1850), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1850), - [sym__thematic_break] = ACTIONS(1850), - [sym__list_marker_minus] = ACTIONS(1850), - [sym__list_marker_plus] = ACTIONS(1850), - [sym__list_marker_star] = ACTIONS(1850), - [sym__list_marker_parenthesis] = ACTIONS(1850), - [sym__list_marker_dot] = ACTIONS(1850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1850), - [sym__fenced_code_block_start_backtick] = ACTIONS(1850), - [sym__fenced_code_block_start_tilde] = ACTIONS(1850), - [sym__blank_line_start] = ACTIONS(1850), - [sym__code_span_start] = ACTIONS(1850), - [sym__emphasis_open_star] = ACTIONS(1850), - [sym__emphasis_open_underscore] = ACTIONS(1850), + [sym_shortcut_link] = STATE(383), + [sym_full_reference_link] = STATE(383), + [sym_collapsed_reference_link] = STATE(383), + [sym_inline_link] = STATE(383), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym_hard_line_break] = STATE(383), + [sym_html_tag] = STATE(383), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(383), + [sym__word] = STATE(383), + [sym__text_inline_no_underscore] = STATE(383), + [sym__inline_element_no_newline_no_underscore] = STATE(383), + [aux_sym__inline_no_newline_no_underscore] = STATE(383), + [sym__emphasis_star_no_newline] = STATE(863), + [sym__strong_emphasis_star_no_newline] = STATE(383), + [sym__emphasis_underscore_no_newline] = STATE(863), + [sym__strong_emphasis_underscore_no_newline] = STATE(383), + [sym__code_span_no_newline] = STATE(383), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_COMMA] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(1976), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_COLON] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_EQ] = ACTIONS(1976), + [anon_sym_GT] = ACTIONS(1976), + [anon_sym_QMARK] = ACTIONS(1976), + [anon_sym_AT] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_BSLASH] = ACTIONS(1988), + [anon_sym_RBRACK] = ACTIONS(1976), + [anon_sym_CARET] = ACTIONS(1976), + [anon_sym__] = ACTIONS(1976), + [anon_sym_BQUOTE] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1976), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1991), + [anon_sym_LT_QMARK] = ACTIONS(1994), + [aux_sym__html_block_4_token1] = ACTIONS(1997), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2000), + [sym_backslash_escape] = ACTIONS(2003), + [sym_uri_autolink] = ACTIONS(2003), + [sym_email_autolink] = ACTIONS(2003), + [sym_entity_reference] = ACTIONS(2003), + [sym_numeric_character_reference] = ACTIONS(2003), + [sym__whitespace_ge_2] = ACTIONS(2006), + [aux_sym__whitespace_token1] = ACTIONS(2009), + [sym__word_no_digit] = ACTIONS(2003), + [sym__digits] = ACTIONS(2003), + [sym__code_span_start] = ACTIONS(2012), + [sym__emphasis_open_star] = ACTIONS(2015), + [sym__emphasis_open_underscore] = ACTIONS(2018), + [sym__emphasis_close_underscore] = ACTIONS(2021), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [aux_sym__html_block_1_token1] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1854), - [anon_sym_PERCENT] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_COMMA] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_COLON] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_GT] = ACTIONS(1854), - [anon_sym_QMARK] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_BSLASH] = ACTIONS(1856), - [anon_sym_RBRACK] = ACTIONS(1854), - [anon_sym_CARET] = ACTIONS(1854), - [anon_sym__] = ACTIONS(1854), - [anon_sym_BQUOTE] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_TILDE] = ACTIONS(1854), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1856), - [anon_sym_LT_QMARK] = ACTIONS(1856), - [aux_sym__html_block_4_token1] = ACTIONS(1856), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1854), - [aux_sym__html_block_6_token1] = ACTIONS(1856), - [aux_sym__html_block_6_token2] = ACTIONS(1854), - [sym__open_tag_html_block] = ACTIONS(1854), - [sym__open_tag_html_block_newline] = ACTIONS(1854), - [sym__closing_tag_html_block] = ACTIONS(1854), - [sym__closing_tag_html_block_newline] = ACTIONS(1854), - [sym_backslash_escape] = ACTIONS(1854), - [sym_uri_autolink] = ACTIONS(1854), - [sym_email_autolink] = ACTIONS(1854), - [sym_entity_reference] = ACTIONS(1854), - [sym_numeric_character_reference] = ACTIONS(1854), - [sym__whitespace_ge_2] = ACTIONS(1854), - [aux_sym__whitespace_token1] = ACTIONS(1856), - [sym__word_no_digit] = ACTIONS(1854), - [sym__digits] = ACTIONS(1854), - [aux_sym__newline_token1] = ACTIONS(1854), - [sym__block_quote_start] = ACTIONS(1854), - [sym__indented_chunk_start] = ACTIONS(1854), - [sym_atx_h1_marker] = ACTIONS(1854), - [sym_atx_h2_marker] = ACTIONS(1854), - [sym_atx_h3_marker] = ACTIONS(1854), - [sym_atx_h4_marker] = ACTIONS(1854), - [sym_atx_h5_marker] = ACTIONS(1854), - [sym_atx_h6_marker] = ACTIONS(1854), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1854), - [sym__thematic_break] = ACTIONS(1854), - [sym__list_marker_minus] = ACTIONS(1854), - [sym__list_marker_plus] = ACTIONS(1854), - [sym__list_marker_star] = ACTIONS(1854), - [sym__list_marker_parenthesis] = ACTIONS(1854), - [sym__list_marker_dot] = ACTIONS(1854), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1854), - [sym__fenced_code_block_start_backtick] = ACTIONS(1854), - [sym__fenced_code_block_start_tilde] = ACTIONS(1854), - [sym__blank_line_start] = ACTIONS(1854), - [sym__code_span_start] = ACTIONS(1854), - [sym__emphasis_open_star] = ACTIONS(1854), - [sym__emphasis_open_underscore] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(2023), + [aux_sym__html_block_1_token1] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_PERCENT] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_SLASH] = ACTIONS(2023), + [anon_sym_COLON] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_GT] = ACTIONS(2023), + [anon_sym_QMARK] = ACTIONS(2023), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_BSLASH] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_CARET] = ACTIONS(2023), + [anon_sym__] = ACTIONS(2023), + [anon_sym_BQUOTE] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_TILDE] = ACTIONS(2023), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2025), + [anon_sym_LT_QMARK] = ACTIONS(2025), + [aux_sym__html_block_4_token1] = ACTIONS(2025), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2023), + [aux_sym__html_block_6_token1] = ACTIONS(2025), + [aux_sym__html_block_6_token2] = ACTIONS(2023), + [sym__open_tag_html_block] = ACTIONS(2023), + [sym__open_tag_html_block_newline] = ACTIONS(2023), + [sym__closing_tag_html_block] = ACTIONS(2023), + [sym__closing_tag_html_block_newline] = ACTIONS(2023), + [sym_backslash_escape] = ACTIONS(2023), + [sym_uri_autolink] = ACTIONS(2023), + [sym_email_autolink] = ACTIONS(2023), + [sym_entity_reference] = ACTIONS(2023), + [sym_numeric_character_reference] = ACTIONS(2023), + [sym__whitespace_ge_2] = ACTIONS(2023), + [aux_sym__whitespace_token1] = ACTIONS(2025), + [sym__word_no_digit] = ACTIONS(2023), + [sym__digits] = ACTIONS(2023), + [aux_sym__newline_token1] = ACTIONS(2023), + [sym__block_quote_start] = ACTIONS(2023), + [sym__indented_chunk_start] = ACTIONS(2023), + [sym_atx_h1_marker] = ACTIONS(2023), + [sym_atx_h2_marker] = ACTIONS(2023), + [sym_atx_h3_marker] = ACTIONS(2023), + [sym_atx_h4_marker] = ACTIONS(2023), + [sym_atx_h5_marker] = ACTIONS(2023), + [sym_atx_h6_marker] = ACTIONS(2023), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2023), + [sym__thematic_break] = ACTIONS(2023), + [sym__list_marker_minus] = ACTIONS(2023), + [sym__list_marker_plus] = ACTIONS(2023), + [sym__list_marker_star] = ACTIONS(2023), + [sym__list_marker_parenthesis] = ACTIONS(2023), + [sym__list_marker_dot] = ACTIONS(2023), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2023), + [sym__fenced_code_block_start_backtick] = ACTIONS(2023), + [sym__fenced_code_block_start_tilde] = ACTIONS(2023), + [sym__blank_line_start] = ACTIONS(2023), + [sym__code_span_start] = ACTIONS(2023), + [sym__emphasis_open_star] = ACTIONS(2023), + [sym__emphasis_open_underscore] = ACTIONS(2023), }, [385] = { - [sym_shortcut_link] = STATE(385), - [sym_full_reference_link] = STATE(385), - [sym_collapsed_reference_link] = STATE(385), - [sym_inline_link] = STATE(385), - [sym_image] = STATE(385), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym_hard_line_break] = STATE(385), - [sym_html_tag] = STATE(385), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(385), - [sym__word] = STATE(385), - [sym__text_inline_no_star] = STATE(385), - [sym__inline_element_no_newline_no_star] = STATE(385), - [aux_sym__inline_no_newline_no_star] = STATE(385), - [sym__emphasis_star_no_newline] = STATE(876), - [sym__strong_emphasis_star_no_newline] = STATE(385), - [sym__emphasis_underscore_no_newline] = STATE(876), - [sym__strong_emphasis_underscore_no_newline] = STATE(385), - [sym__code_span_no_newline] = STATE(385), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_DOT] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_COLON] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_EQ] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1861), - [anon_sym_QMARK] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_BSLASH] = ACTIONS(1873), - [anon_sym_RBRACK] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1861), - [anon_sym__] = ACTIONS(1861), - [anon_sym_BQUOTE] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1876), - [anon_sym_LT_QMARK] = ACTIONS(1879), - [aux_sym__html_block_4_token1] = ACTIONS(1882), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1885), - [sym_backslash_escape] = ACTIONS(1888), - [sym_uri_autolink] = ACTIONS(1888), - [sym_email_autolink] = ACTIONS(1888), - [sym_entity_reference] = ACTIONS(1888), - [sym_numeric_character_reference] = ACTIONS(1888), - [sym__whitespace_ge_2] = ACTIONS(1891), - [aux_sym__whitespace_token1] = ACTIONS(1894), - [sym__word_no_digit] = ACTIONS(1888), - [sym__digits] = ACTIONS(1888), - [sym__code_span_start] = ACTIONS(1897), - [sym__emphasis_open_star] = ACTIONS(1900), - [sym__emphasis_open_underscore] = ACTIONS(1903), - [sym__emphasis_close_star] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(2027), + [aux_sym__html_block_1_token1] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_COLON] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_GT] = ACTIONS(2027), + [anon_sym_QMARK] = ACTIONS(2027), + [anon_sym_AT] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2029), + [anon_sym_RBRACK] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym__] = ACTIONS(2027), + [anon_sym_BQUOTE] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2029), + [anon_sym_LT_QMARK] = ACTIONS(2029), + [aux_sym__html_block_4_token1] = ACTIONS(2029), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2027), + [aux_sym__html_block_6_token1] = ACTIONS(2029), + [aux_sym__html_block_6_token2] = ACTIONS(2027), + [sym__open_tag_html_block] = ACTIONS(2027), + [sym__open_tag_html_block_newline] = ACTIONS(2027), + [sym__closing_tag_html_block] = ACTIONS(2027), + [sym__closing_tag_html_block_newline] = ACTIONS(2027), + [sym_backslash_escape] = ACTIONS(2027), + [sym_uri_autolink] = ACTIONS(2027), + [sym_email_autolink] = ACTIONS(2027), + [sym_entity_reference] = ACTIONS(2027), + [sym_numeric_character_reference] = ACTIONS(2027), + [sym__whitespace_ge_2] = ACTIONS(2027), + [aux_sym__whitespace_token1] = ACTIONS(2029), + [sym__word_no_digit] = ACTIONS(2027), + [sym__digits] = ACTIONS(2027), + [aux_sym__newline_token1] = ACTIONS(2027), + [sym__block_quote_start] = ACTIONS(2027), + [sym__indented_chunk_start] = ACTIONS(2027), + [sym_atx_h1_marker] = ACTIONS(2027), + [sym_atx_h2_marker] = ACTIONS(2027), + [sym_atx_h3_marker] = ACTIONS(2027), + [sym_atx_h4_marker] = ACTIONS(2027), + [sym_atx_h5_marker] = ACTIONS(2027), + [sym_atx_h6_marker] = ACTIONS(2027), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2027), + [sym__thematic_break] = ACTIONS(2027), + [sym__list_marker_minus] = ACTIONS(2027), + [sym__list_marker_plus] = ACTIONS(2027), + [sym__list_marker_star] = ACTIONS(2027), + [sym__list_marker_parenthesis] = ACTIONS(2027), + [sym__list_marker_dot] = ACTIONS(2027), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2027), + [sym__fenced_code_block_start_backtick] = ACTIONS(2027), + [sym__fenced_code_block_start_tilde] = ACTIONS(2027), + [sym__blank_line_start] = ACTIONS(2027), + [sym__code_span_start] = ACTIONS(2027), + [sym__emphasis_open_star] = ACTIONS(2027), + [sym__emphasis_open_underscore] = ACTIONS(2027), }, [386] = { - [aux_sym__html_block_1_token1] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1908), - [anon_sym_PERCENT] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_RPAREN] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1908), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_COLON] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_QMARK] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_BSLASH] = ACTIONS(1910), - [anon_sym_RBRACK] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym__] = ACTIONS(1908), - [anon_sym_BQUOTE] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1910), - [anon_sym_LT_QMARK] = ACTIONS(1910), - [aux_sym__html_block_4_token1] = ACTIONS(1910), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1908), - [aux_sym__html_block_6_token1] = ACTIONS(1910), - [aux_sym__html_block_6_token2] = ACTIONS(1908), - [sym__open_tag_html_block] = ACTIONS(1908), - [sym__open_tag_html_block_newline] = ACTIONS(1908), - [sym__closing_tag_html_block] = ACTIONS(1908), - [sym__closing_tag_html_block_newline] = ACTIONS(1908), - [sym_backslash_escape] = ACTIONS(1908), - [sym_uri_autolink] = ACTIONS(1908), - [sym_email_autolink] = ACTIONS(1908), - [sym_entity_reference] = ACTIONS(1908), - [sym_numeric_character_reference] = ACTIONS(1908), - [sym__whitespace_ge_2] = ACTIONS(1908), - [aux_sym__whitespace_token1] = ACTIONS(1910), - [sym__word_no_digit] = ACTIONS(1908), - [sym__digits] = ACTIONS(1908), - [aux_sym__newline_token1] = ACTIONS(1908), - [sym__block_close] = ACTIONS(1908), - [sym__block_quote_start] = ACTIONS(1908), - [sym__indented_chunk_start] = ACTIONS(1908), - [sym_atx_h1_marker] = ACTIONS(1908), - [sym_atx_h2_marker] = ACTIONS(1908), - [sym_atx_h3_marker] = ACTIONS(1908), - [sym_atx_h4_marker] = ACTIONS(1908), - [sym_atx_h5_marker] = ACTIONS(1908), - [sym_atx_h6_marker] = ACTIONS(1908), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1908), - [sym__thematic_break] = ACTIONS(1908), - [sym__list_marker_minus] = ACTIONS(1908), - [sym__list_marker_plus] = ACTIONS(1908), - [sym__list_marker_star] = ACTIONS(1908), - [sym__list_marker_parenthesis] = ACTIONS(1908), - [sym__list_marker_dot] = ACTIONS(1908), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1908), - [sym__fenced_code_block_start_backtick] = ACTIONS(1908), - [sym__fenced_code_block_start_tilde] = ACTIONS(1908), - [sym__blank_line_start] = ACTIONS(1908), - [sym__code_span_start] = ACTIONS(1908), - [sym__emphasis_open_star] = ACTIONS(1908), - [sym__emphasis_open_underscore] = ACTIONS(1908), + [ts_builtin_sym_end] = ACTIONS(2031), + [aux_sym__html_block_1_token1] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_GT] = ACTIONS(2031), + [anon_sym_QMARK] = ACTIONS(2031), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2033), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym__] = ACTIONS(2031), + [anon_sym_BQUOTE] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2033), + [anon_sym_LT_QMARK] = ACTIONS(2033), + [aux_sym__html_block_4_token1] = ACTIONS(2033), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2031), + [aux_sym__html_block_6_token1] = ACTIONS(2033), + [aux_sym__html_block_6_token2] = ACTIONS(2031), + [sym__open_tag_html_block] = ACTIONS(2031), + [sym__open_tag_html_block_newline] = ACTIONS(2031), + [sym__closing_tag_html_block] = ACTIONS(2031), + [sym__closing_tag_html_block_newline] = ACTIONS(2031), + [sym_backslash_escape] = ACTIONS(2031), + [sym_uri_autolink] = ACTIONS(2031), + [sym_email_autolink] = ACTIONS(2031), + [sym_entity_reference] = ACTIONS(2031), + [sym_numeric_character_reference] = ACTIONS(2031), + [sym__whitespace_ge_2] = ACTIONS(2031), + [aux_sym__whitespace_token1] = ACTIONS(2033), + [sym__word_no_digit] = ACTIONS(2031), + [sym__digits] = ACTIONS(2031), + [aux_sym__newline_token1] = ACTIONS(2031), + [sym__block_quote_start] = ACTIONS(2031), + [sym__indented_chunk_start] = ACTIONS(2031), + [sym_atx_h1_marker] = ACTIONS(2031), + [sym_atx_h2_marker] = ACTIONS(2031), + [sym_atx_h3_marker] = ACTIONS(2031), + [sym_atx_h4_marker] = ACTIONS(2031), + [sym_atx_h5_marker] = ACTIONS(2031), + [sym_atx_h6_marker] = ACTIONS(2031), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2031), + [sym__thematic_break] = ACTIONS(2031), + [sym__list_marker_minus] = ACTIONS(2031), + [sym__list_marker_plus] = ACTIONS(2031), + [sym__list_marker_star] = ACTIONS(2031), + [sym__list_marker_parenthesis] = ACTIONS(2031), + [sym__list_marker_dot] = ACTIONS(2031), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2031), + [sym__fenced_code_block_start_backtick] = ACTIONS(2031), + [sym__fenced_code_block_start_tilde] = ACTIONS(2031), + [sym__blank_line_start] = ACTIONS(2031), + [sym__code_span_start] = ACTIONS(2031), + [sym__emphasis_open_star] = ACTIONS(2031), + [sym__emphasis_open_underscore] = ACTIONS(2031), }, [387] = { - [sym_shortcut_link] = STATE(387), - [sym_full_reference_link] = STATE(387), - [sym_collapsed_reference_link] = STATE(387), - [sym_inline_link] = STATE(387), - [sym_image] = STATE(387), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym_hard_line_break] = STATE(387), - [sym_html_tag] = STATE(387), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(387), - [sym__word] = STATE(387), - [sym__text_inline_no_underscore] = STATE(387), - [sym__inline_element_no_newline_no_underscore] = STATE(387), - [aux_sym__inline_no_newline_no_underscore] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(874), - [sym__strong_emphasis_star_no_newline] = STATE(387), - [sym__emphasis_underscore_no_newline] = STATE(874), - [sym__strong_emphasis_underscore_no_newline] = STATE(387), - [sym__code_span_no_newline] = STATE(387), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_POUND] = ACTIONS(1915), - [anon_sym_DOLLAR] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1915), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_QMARK] = ACTIONS(1915), - [anon_sym_AT] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_BSLASH] = ACTIONS(1927), - [anon_sym_RBRACK] = ACTIONS(1915), - [anon_sym_CARET] = ACTIONS(1915), - [anon_sym__] = ACTIONS(1915), - [anon_sym_BQUOTE] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_PIPE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1930), - [anon_sym_LT_QMARK] = ACTIONS(1933), - [aux_sym__html_block_4_token1] = ACTIONS(1936), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1939), - [sym_backslash_escape] = ACTIONS(1942), - [sym_uri_autolink] = ACTIONS(1942), - [sym_email_autolink] = ACTIONS(1942), - [sym_entity_reference] = ACTIONS(1942), - [sym_numeric_character_reference] = ACTIONS(1942), - [sym__whitespace_ge_2] = ACTIONS(1945), - [aux_sym__whitespace_token1] = ACTIONS(1948), - [sym__word_no_digit] = ACTIONS(1942), - [sym__digits] = ACTIONS(1942), - [sym__code_span_start] = ACTIONS(1951), - [sym__emphasis_open_star] = ACTIONS(1954), - [sym__emphasis_open_underscore] = ACTIONS(1957), - [sym__emphasis_close_underscore] = ACTIONS(1960), + [sym__block_interrupt_paragraph] = STATE(1574), + [sym__blank_line] = STATE(1574), + [sym_block_quote] = STATE(1574), + [sym_atx_heading] = STATE(1574), + [sym_setext_h1_underline] = STATE(1574), + [sym_setext_h2_underline] = STATE(1574), + [sym_thematic_break] = STATE(1574), + [sym_fenced_code_block] = STATE(1574), + [sym__html_block_1] = STATE(1574), + [sym__html_block_2] = STATE(1574), + [sym__html_block_3] = STATE(1574), + [sym__html_block_4] = STATE(1574), + [sym__html_block_5] = STATE(1574), + [sym__html_block_6] = STATE(1574), + [aux_sym__html_block_1_token1] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1476), + [anon_sym_LT_QMARK] = ACTIONS(1478), + [aux_sym__html_block_4_token1] = ACTIONS(1480), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1482), + [aux_sym__html_block_6_token1] = ACTIONS(1484), + [aux_sym__html_block_6_token2] = ACTIONS(1486), + [sym_backslash_escape] = ACTIONS(419), + [sym_entity_reference] = ACTIONS(419), + [sym_numeric_character_reference] = ACTIONS(419), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__setext_h1_underline] = ACTIONS(1492), + [sym__setext_h2_underline] = ACTIONS(1494), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2035), + [sym__thematic_break] = ACTIONS(1498), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1502), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1506), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1962), - [aux_sym__html_block_1_token1] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_DQUOTE] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_DOT] = ACTIONS(1962), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_EQ] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_QMARK] = ACTIONS(1962), - [anon_sym_AT] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_BSLASH] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym__] = ACTIONS(1962), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1964), - [anon_sym_LT_QMARK] = ACTIONS(1964), - [aux_sym__html_block_4_token1] = ACTIONS(1964), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1962), - [aux_sym__html_block_6_token1] = ACTIONS(1964), - [aux_sym__html_block_6_token2] = ACTIONS(1962), - [sym__open_tag_html_block] = ACTIONS(1962), - [sym__open_tag_html_block_newline] = ACTIONS(1962), - [sym__closing_tag_html_block] = ACTIONS(1962), - [sym__closing_tag_html_block_newline] = ACTIONS(1962), - [sym_backslash_escape] = ACTIONS(1962), - [sym_uri_autolink] = ACTIONS(1962), - [sym_email_autolink] = ACTIONS(1962), - [sym_entity_reference] = ACTIONS(1962), - [sym_numeric_character_reference] = ACTIONS(1962), - [sym__whitespace_ge_2] = ACTIONS(1962), - [aux_sym__whitespace_token1] = ACTIONS(1964), - [sym__word_no_digit] = ACTIONS(1962), - [sym__digits] = ACTIONS(1962), - [aux_sym__newline_token1] = ACTIONS(1962), - [sym__block_quote_start] = ACTIONS(1962), - [sym__indented_chunk_start] = ACTIONS(1962), - [sym_atx_h1_marker] = ACTIONS(1962), - [sym_atx_h2_marker] = ACTIONS(1962), - [sym_atx_h3_marker] = ACTIONS(1962), - [sym_atx_h4_marker] = ACTIONS(1962), - [sym_atx_h5_marker] = ACTIONS(1962), - [sym_atx_h6_marker] = ACTIONS(1962), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1962), - [sym__thematic_break] = ACTIONS(1962), - [sym__list_marker_minus] = ACTIONS(1962), - [sym__list_marker_plus] = ACTIONS(1962), - [sym__list_marker_star] = ACTIONS(1962), - [sym__list_marker_parenthesis] = ACTIONS(1962), - [sym__list_marker_dot] = ACTIONS(1962), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1962), - [sym__fenced_code_block_start_backtick] = ACTIONS(1962), - [sym__fenced_code_block_start_tilde] = ACTIONS(1962), - [sym__blank_line_start] = ACTIONS(1962), - [sym__code_span_start] = ACTIONS(1962), - [sym__emphasis_open_star] = ACTIONS(1962), - [sym__emphasis_open_underscore] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(2037), + [aux_sym__html_block_1_token1] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_PERCENT] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_COMMA] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2037), + [anon_sym_SLASH] = ACTIONS(2037), + [anon_sym_COLON] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_GT] = ACTIONS(2037), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_BSLASH] = ACTIONS(2039), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_CARET] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_BQUOTE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2039), + [anon_sym_LT_QMARK] = ACTIONS(2039), + [aux_sym__html_block_4_token1] = ACTIONS(2039), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2037), + [aux_sym__html_block_6_token1] = ACTIONS(2039), + [aux_sym__html_block_6_token2] = ACTIONS(2037), + [sym__open_tag_html_block] = ACTIONS(2037), + [sym__open_tag_html_block_newline] = ACTIONS(2037), + [sym__closing_tag_html_block] = ACTIONS(2037), + [sym__closing_tag_html_block_newline] = ACTIONS(2037), + [sym_backslash_escape] = ACTIONS(2037), + [sym_uri_autolink] = ACTIONS(2037), + [sym_email_autolink] = ACTIONS(2037), + [sym_entity_reference] = ACTIONS(2037), + [sym_numeric_character_reference] = ACTIONS(2037), + [sym__whitespace_ge_2] = ACTIONS(2037), + [aux_sym__whitespace_token1] = ACTIONS(2039), + [sym__word_no_digit] = ACTIONS(2037), + [sym__digits] = ACTIONS(2037), + [aux_sym__newline_token1] = ACTIONS(2037), + [sym__block_quote_start] = ACTIONS(2037), + [sym__indented_chunk_start] = ACTIONS(2037), + [sym_atx_h1_marker] = ACTIONS(2037), + [sym_atx_h2_marker] = ACTIONS(2037), + [sym_atx_h3_marker] = ACTIONS(2037), + [sym_atx_h4_marker] = ACTIONS(2037), + [sym_atx_h5_marker] = ACTIONS(2037), + [sym_atx_h6_marker] = ACTIONS(2037), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2037), + [sym__thematic_break] = ACTIONS(2037), + [sym__list_marker_minus] = ACTIONS(2037), + [sym__list_marker_plus] = ACTIONS(2037), + [sym__list_marker_star] = ACTIONS(2037), + [sym__list_marker_parenthesis] = ACTIONS(2037), + [sym__list_marker_dot] = ACTIONS(2037), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2037), + [sym__fenced_code_block_start_backtick] = ACTIONS(2037), + [sym__fenced_code_block_start_tilde] = ACTIONS(2037), + [sym__blank_line_start] = ACTIONS(2037), + [sym__code_span_start] = ACTIONS(2037), + [sym__emphasis_open_star] = ACTIONS(2037), + [sym__emphasis_open_underscore] = ACTIONS(2037), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [aux_sym__html_block_1_token1] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1966), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1966), - [anon_sym_COLON] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_QMARK] = ACTIONS(1966), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_BSLASH] = ACTIONS(1968), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_CARET] = ACTIONS(1966), - [anon_sym__] = ACTIONS(1966), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1968), - [anon_sym_LT_QMARK] = ACTIONS(1968), - [aux_sym__html_block_4_token1] = ACTIONS(1968), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1966), - [aux_sym__html_block_6_token1] = ACTIONS(1968), - [aux_sym__html_block_6_token2] = ACTIONS(1966), - [sym__open_tag_html_block] = ACTIONS(1966), - [sym__open_tag_html_block_newline] = ACTIONS(1966), - [sym__closing_tag_html_block] = ACTIONS(1966), - [sym__closing_tag_html_block_newline] = ACTIONS(1966), - [sym_backslash_escape] = ACTIONS(1966), - [sym_uri_autolink] = ACTIONS(1966), - [sym_email_autolink] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1966), - [sym_numeric_character_reference] = ACTIONS(1966), - [sym__whitespace_ge_2] = ACTIONS(1966), - [aux_sym__whitespace_token1] = ACTIONS(1968), - [sym__word_no_digit] = ACTIONS(1966), - [sym__digits] = ACTIONS(1966), - [aux_sym__newline_token1] = ACTIONS(1966), - [sym__block_quote_start] = ACTIONS(1966), - [sym__indented_chunk_start] = ACTIONS(1966), - [sym_atx_h1_marker] = ACTIONS(1966), - [sym_atx_h2_marker] = ACTIONS(1966), - [sym_atx_h3_marker] = ACTIONS(1966), - [sym_atx_h4_marker] = ACTIONS(1966), - [sym_atx_h5_marker] = ACTIONS(1966), - [sym_atx_h6_marker] = ACTIONS(1966), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1966), - [sym__thematic_break] = ACTIONS(1966), - [sym__list_marker_minus] = ACTIONS(1966), - [sym__list_marker_plus] = ACTIONS(1966), - [sym__list_marker_star] = ACTIONS(1966), - [sym__list_marker_parenthesis] = ACTIONS(1966), - [sym__list_marker_dot] = ACTIONS(1966), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1966), - [sym__fenced_code_block_start_backtick] = ACTIONS(1966), - [sym__fenced_code_block_start_tilde] = ACTIONS(1966), - [sym__blank_line_start] = ACTIONS(1966), - [sym__code_span_start] = ACTIONS(1966), - [sym__emphasis_open_star] = ACTIONS(1966), - [sym__emphasis_open_underscore] = ACTIONS(1966), + [aux_sym__html_block_1_token1] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_PERCENT] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_SQUOTE] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2023), + [anon_sym_COMMA] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_DOT] = ACTIONS(2023), + [anon_sym_SLASH] = ACTIONS(2023), + [anon_sym_COLON] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_EQ] = ACTIONS(2023), + [anon_sym_GT] = ACTIONS(2023), + [anon_sym_QMARK] = ACTIONS(2023), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_BSLASH] = ACTIONS(2025), + [anon_sym_RBRACK] = ACTIONS(2023), + [anon_sym_CARET] = ACTIONS(2023), + [anon_sym__] = ACTIONS(2023), + [anon_sym_BQUOTE] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_TILDE] = ACTIONS(2023), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2025), + [anon_sym_LT_QMARK] = ACTIONS(2025), + [aux_sym__html_block_4_token1] = ACTIONS(2025), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2023), + [aux_sym__html_block_6_token1] = ACTIONS(2025), + [aux_sym__html_block_6_token2] = ACTIONS(2023), + [sym__open_tag_html_block] = ACTIONS(2023), + [sym__open_tag_html_block_newline] = ACTIONS(2023), + [sym__closing_tag_html_block] = ACTIONS(2023), + [sym__closing_tag_html_block_newline] = ACTIONS(2023), + [sym_backslash_escape] = ACTIONS(2023), + [sym_uri_autolink] = ACTIONS(2023), + [sym_email_autolink] = ACTIONS(2023), + [sym_entity_reference] = ACTIONS(2023), + [sym_numeric_character_reference] = ACTIONS(2023), + [sym__whitespace_ge_2] = ACTIONS(2023), + [aux_sym__whitespace_token1] = ACTIONS(2025), + [sym__word_no_digit] = ACTIONS(2023), + [sym__digits] = ACTIONS(2023), + [aux_sym__newline_token1] = ACTIONS(2023), + [sym__block_close] = ACTIONS(2023), + [sym__block_quote_start] = ACTIONS(2023), + [sym__indented_chunk_start] = ACTIONS(2023), + [sym_atx_h1_marker] = ACTIONS(2023), + [sym_atx_h2_marker] = ACTIONS(2023), + [sym_atx_h3_marker] = ACTIONS(2023), + [sym_atx_h4_marker] = ACTIONS(2023), + [sym_atx_h5_marker] = ACTIONS(2023), + [sym_atx_h6_marker] = ACTIONS(2023), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2023), + [sym__thematic_break] = ACTIONS(2023), + [sym__list_marker_minus] = ACTIONS(2023), + [sym__list_marker_plus] = ACTIONS(2023), + [sym__list_marker_star] = ACTIONS(2023), + [sym__list_marker_parenthesis] = ACTIONS(2023), + [sym__list_marker_dot] = ACTIONS(2023), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2023), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2023), + [sym__fenced_code_block_start_backtick] = ACTIONS(2023), + [sym__fenced_code_block_start_tilde] = ACTIONS(2023), + [sym__blank_line_start] = ACTIONS(2023), + [sym__code_span_start] = ACTIONS(2023), + [sym__emphasis_open_star] = ACTIONS(2023), + [sym__emphasis_open_underscore] = ACTIONS(2023), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1970), - [aux_sym__html_block_1_token1] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_COMMA] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_QMARK] = ACTIONS(1970), - [anon_sym_AT] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BSLASH] = ACTIONS(1972), - [anon_sym_RBRACK] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym__] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), - [anon_sym_LT_QMARK] = ACTIONS(1972), - [aux_sym__html_block_4_token1] = ACTIONS(1972), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1970), - [aux_sym__html_block_6_token1] = ACTIONS(1972), - [aux_sym__html_block_6_token2] = ACTIONS(1970), - [sym__open_tag_html_block] = ACTIONS(1970), - [sym__open_tag_html_block_newline] = ACTIONS(1970), - [sym__closing_tag_html_block] = ACTIONS(1970), - [sym__closing_tag_html_block_newline] = ACTIONS(1970), - [sym_backslash_escape] = ACTIONS(1970), - [sym_uri_autolink] = ACTIONS(1970), - [sym_email_autolink] = ACTIONS(1970), - [sym_entity_reference] = ACTIONS(1970), - [sym_numeric_character_reference] = ACTIONS(1970), - [sym__whitespace_ge_2] = ACTIONS(1970), - [aux_sym__whitespace_token1] = ACTIONS(1972), - [sym__word_no_digit] = ACTIONS(1970), - [sym__digits] = ACTIONS(1970), - [aux_sym__newline_token1] = ACTIONS(1970), - [sym__block_quote_start] = ACTIONS(1970), - [sym__indented_chunk_start] = ACTIONS(1970), - [sym_atx_h1_marker] = ACTIONS(1970), - [sym_atx_h2_marker] = ACTIONS(1970), - [sym_atx_h3_marker] = ACTIONS(1970), - [sym_atx_h4_marker] = ACTIONS(1970), - [sym_atx_h5_marker] = ACTIONS(1970), - [sym_atx_h6_marker] = ACTIONS(1970), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1970), - [sym__thematic_break] = ACTIONS(1970), - [sym__list_marker_minus] = ACTIONS(1970), - [sym__list_marker_plus] = ACTIONS(1970), - [sym__list_marker_star] = ACTIONS(1970), - [sym__list_marker_parenthesis] = ACTIONS(1970), - [sym__list_marker_dot] = ACTIONS(1970), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1970), - [sym__fenced_code_block_start_backtick] = ACTIONS(1970), - [sym__fenced_code_block_start_tilde] = ACTIONS(1970), - [sym__blank_line_start] = ACTIONS(1970), - [sym__code_span_start] = ACTIONS(1970), - [sym__emphasis_open_star] = ACTIONS(1970), - [sym__emphasis_open_underscore] = ACTIONS(1970), + [sym_shortcut_link] = STATE(373), + [sym_full_reference_link] = STATE(373), + [sym_collapsed_reference_link] = STATE(373), + [sym_inline_link] = STATE(373), + [sym_image] = STATE(373), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym_hard_line_break] = STATE(373), + [sym_html_tag] = STATE(373), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(373), + [sym__word] = STATE(373), + [sym__text_inline_no_star] = STATE(373), + [sym__inline_element_no_newline_no_star] = STATE(373), + [aux_sym__inline_no_newline_no_star] = STATE(373), + [sym__emphasis_star_no_newline] = STATE(858), + [sym__strong_emphasis_star_no_newline] = STATE(373), + [sym__emphasis_underscore_no_newline] = STATE(853), + [sym__strong_emphasis_underscore_no_newline] = STATE(373), + [sym__code_span_no_newline] = STATE(373), + [anon_sym_BANG] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_COLON] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_GT] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_BSLASH] = ACTIONS(2047), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2050), + [anon_sym_LT_QMARK] = ACTIONS(2053), + [aux_sym__html_block_4_token1] = ACTIONS(2056), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2059), + [sym_backslash_escape] = ACTIONS(2062), + [sym_uri_autolink] = ACTIONS(2062), + [sym_email_autolink] = ACTIONS(2062), + [sym_entity_reference] = ACTIONS(2062), + [sym_numeric_character_reference] = ACTIONS(2062), + [sym__whitespace_ge_2] = ACTIONS(2065), + [aux_sym__whitespace_token1] = ACTIONS(1607), + [sym__word_no_digit] = ACTIONS(2062), + [sym__digits] = ACTIONS(2062), + [aux_sym__newline_token1] = ACTIONS(2068), + [sym__code_span_start] = ACTIONS(2070), + [sym__emphasis_open_star] = ACTIONS(2073), + [sym__emphasis_open_underscore] = ACTIONS(2076), }, [391] = { - [sym_shortcut_link] = STATE(387), - [sym_full_reference_link] = STATE(387), - [sym_collapsed_reference_link] = STATE(387), - [sym_inline_link] = STATE(387), - [sym_image] = STATE(387), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym_hard_line_break] = STATE(387), - [sym_html_tag] = STATE(387), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(387), - [sym__word] = STATE(387), - [sym__text_inline_no_underscore] = STATE(387), - [sym__inline_element_no_newline_no_underscore] = STATE(387), - [aux_sym__inline_no_newline_no_underscore] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(874), - [sym__strong_emphasis_star_no_newline] = STATE(387), - [sym__emphasis_underscore_no_newline] = STATE(874), - [sym__strong_emphasis_underscore_no_newline] = STATE(387), - [sym__code_span_no_newline] = STATE(387), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_BSLASH] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_QMARK] = ACTIONS(1982), - [aux_sym__html_block_4_token1] = ACTIONS(1984), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1986), - [sym_backslash_escape] = ACTIONS(1988), - [sym_uri_autolink] = ACTIONS(1988), - [sym_email_autolink] = ACTIONS(1988), - [sym_entity_reference] = ACTIONS(1988), - [sym_numeric_character_reference] = ACTIONS(1988), - [sym__whitespace_ge_2] = ACTIONS(1990), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(1988), - [sym__digits] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1992), - [sym__emphasis_open_star] = ACTIONS(1994), - [sym__emphasis_open_underscore] = ACTIONS(1996), - [sym__emphasis_close_underscore] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(1909), + [aux_sym__html_block_1_token1] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_PERCENT] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1909), + [anon_sym_SLASH] = ACTIONS(1909), + [anon_sym_COLON] = ACTIONS(1909), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1909), + [anon_sym_QMARK] = ACTIONS(1909), + [anon_sym_AT] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_BSLASH] = ACTIONS(1911), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym__] = ACTIONS(1909), + [anon_sym_BQUOTE] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1911), + [anon_sym_LT_QMARK] = ACTIONS(1911), + [aux_sym__html_block_4_token1] = ACTIONS(1911), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1909), + [aux_sym__html_block_6_token1] = ACTIONS(1911), + [aux_sym__html_block_6_token2] = ACTIONS(1909), + [sym__open_tag_html_block] = ACTIONS(1909), + [sym__open_tag_html_block_newline] = ACTIONS(1909), + [sym__closing_tag_html_block] = ACTIONS(1909), + [sym__closing_tag_html_block_newline] = ACTIONS(1909), + [sym_backslash_escape] = ACTIONS(1909), + [sym_uri_autolink] = ACTIONS(1909), + [sym_email_autolink] = ACTIONS(1909), + [sym_entity_reference] = ACTIONS(1909), + [sym_numeric_character_reference] = ACTIONS(1909), + [sym__whitespace_ge_2] = ACTIONS(1909), + [aux_sym__whitespace_token1] = ACTIONS(1911), + [sym__word_no_digit] = ACTIONS(1909), + [sym__digits] = ACTIONS(1909), + [aux_sym__newline_token1] = ACTIONS(1909), + [sym__block_quote_start] = ACTIONS(1909), + [sym__indented_chunk_start] = ACTIONS(1909), + [sym_atx_h1_marker] = ACTIONS(1909), + [sym_atx_h2_marker] = ACTIONS(1909), + [sym_atx_h3_marker] = ACTIONS(1909), + [sym_atx_h4_marker] = ACTIONS(1909), + [sym_atx_h5_marker] = ACTIONS(1909), + [sym_atx_h6_marker] = ACTIONS(1909), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1909), + [sym__thematic_break] = ACTIONS(1909), + [sym__list_marker_minus] = ACTIONS(1909), + [sym__list_marker_plus] = ACTIONS(1909), + [sym__list_marker_star] = ACTIONS(1909), + [sym__list_marker_parenthesis] = ACTIONS(1909), + [sym__list_marker_dot] = ACTIONS(1909), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1909), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1909), + [sym__fenced_code_block_start_backtick] = ACTIONS(1909), + [sym__fenced_code_block_start_tilde] = ACTIONS(1909), + [sym__blank_line_start] = ACTIONS(1909), + [sym__code_span_start] = ACTIONS(1909), + [sym__emphasis_open_star] = ACTIONS(1909), + [sym__emphasis_open_underscore] = ACTIONS(1909), }, [392] = { - [sym__block_interrupt_paragraph] = STATE(1702), - [sym__blank_line] = STATE(1702), - [sym_block_quote] = STATE(1702), - [sym_atx_heading] = STATE(1702), - [sym_setext_h1_underline] = STATE(1702), - [sym_setext_h2_underline] = STATE(1702), - [sym_thematic_break] = STATE(1702), - [sym_fenced_code_block] = STATE(1702), - [sym__html_block_1] = STATE(1702), - [sym__html_block_2] = STATE(1702), - [sym__html_block_3] = STATE(1702), - [sym__html_block_4] = STATE(1702), - [sym__html_block_5] = STATE(1702), - [sym__html_block_6] = STATE(1702), - [aux_sym__html_block_1_token1] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(394), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1762), - [anon_sym_LT_QMARK] = ACTIONS(1764), - [aux_sym__html_block_4_token1] = ACTIONS(1766), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1768), - [aux_sym__html_block_6_token1] = ACTIONS(1770), - [aux_sym__html_block_6_token2] = ACTIONS(1772), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [aux_sym__newline_token1] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(1774), - [sym_atx_h1_marker] = ACTIONS(1776), - [sym_atx_h2_marker] = ACTIONS(1776), - [sym_atx_h3_marker] = ACTIONS(1776), - [sym_atx_h4_marker] = ACTIONS(1776), - [sym_atx_h5_marker] = ACTIONS(1776), - [sym_atx_h6_marker] = ACTIONS(1776), - [sym__setext_h1_underline] = ACTIONS(1778), - [sym__setext_h2_underline] = ACTIONS(1780), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1782), - [sym__thematic_break] = ACTIONS(1784), - [sym__list_marker_minus] = ACTIONS(2000), - [sym__list_marker_plus] = ACTIONS(2000), - [sym__list_marker_star] = ACTIONS(2000), - [sym__list_marker_parenthesis] = ACTIONS(2000), - [sym__list_marker_dot] = ACTIONS(2000), - [sym__fenced_code_block_start_backtick] = ACTIONS(1788), - [sym__fenced_code_block_start_tilde] = ACTIONS(1790), - [sym__blank_line_start] = ACTIONS(1792), - [sym__code_span_close] = ACTIONS(394), + [aux_sym__html_block_1_token1] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_EQ] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_QMARK] = ACTIONS(2079), + [anon_sym_AT] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BSLASH] = ACTIONS(2081), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym__] = ACTIONS(2079), + [anon_sym_BQUOTE] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2081), + [anon_sym_LT_QMARK] = ACTIONS(2081), + [aux_sym__html_block_4_token1] = ACTIONS(2081), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2079), + [aux_sym__html_block_6_token1] = ACTIONS(2081), + [aux_sym__html_block_6_token2] = ACTIONS(2079), + [sym__open_tag_html_block] = ACTIONS(2079), + [sym__open_tag_html_block_newline] = ACTIONS(2079), + [sym__closing_tag_html_block] = ACTIONS(2079), + [sym__closing_tag_html_block_newline] = ACTIONS(2079), + [sym_backslash_escape] = ACTIONS(2079), + [sym_uri_autolink] = ACTIONS(2079), + [sym_email_autolink] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [sym__whitespace_ge_2] = ACTIONS(2079), + [aux_sym__whitespace_token1] = ACTIONS(2081), + [sym__word_no_digit] = ACTIONS(2079), + [sym__digits] = ACTIONS(2079), + [aux_sym__newline_token1] = ACTIONS(2079), + [sym__block_close] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym__indented_chunk_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(2079), + [sym__list_marker_plus] = ACTIONS(2079), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym__fenced_code_block_start_tilde] = ACTIONS(2079), + [sym__blank_line_start] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), }, [393] = { - [aux_sym__html_block_1_token1] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2002), - [anon_sym_PERCENT] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_COMMA] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_DOT] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2002), - [anon_sym_COLON] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_EQ] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_QMARK] = ACTIONS(2002), - [anon_sym_AT] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_BSLASH] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), - [anon_sym__] = ACTIONS(2002), - [anon_sym_BQUOTE] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2004), - [anon_sym_LT_QMARK] = ACTIONS(2004), - [aux_sym__html_block_4_token1] = ACTIONS(2004), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2002), - [aux_sym__html_block_6_token1] = ACTIONS(2004), - [aux_sym__html_block_6_token2] = ACTIONS(2002), - [sym__open_tag_html_block] = ACTIONS(2002), - [sym__open_tag_html_block_newline] = ACTIONS(2002), - [sym__closing_tag_html_block] = ACTIONS(2002), - [sym__closing_tag_html_block_newline] = ACTIONS(2002), - [sym_backslash_escape] = ACTIONS(2002), - [sym_uri_autolink] = ACTIONS(2002), - [sym_email_autolink] = ACTIONS(2002), - [sym_entity_reference] = ACTIONS(2002), - [sym_numeric_character_reference] = ACTIONS(2002), - [sym__whitespace_ge_2] = ACTIONS(2002), - [aux_sym__whitespace_token1] = ACTIONS(2004), - [sym__word_no_digit] = ACTIONS(2002), - [sym__digits] = ACTIONS(2002), - [aux_sym__newline_token1] = ACTIONS(2002), - [sym__block_close] = ACTIONS(2002), - [sym__block_quote_start] = ACTIONS(2002), - [sym__indented_chunk_start] = ACTIONS(2002), - [sym_atx_h1_marker] = ACTIONS(2002), - [sym_atx_h2_marker] = ACTIONS(2002), - [sym_atx_h3_marker] = ACTIONS(2002), - [sym_atx_h4_marker] = ACTIONS(2002), - [sym_atx_h5_marker] = ACTIONS(2002), - [sym_atx_h6_marker] = ACTIONS(2002), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2002), - [sym__thematic_break] = ACTIONS(2002), - [sym__list_marker_minus] = ACTIONS(2002), - [sym__list_marker_plus] = ACTIONS(2002), - [sym__list_marker_star] = ACTIONS(2002), - [sym__list_marker_parenthesis] = ACTIONS(2002), - [sym__list_marker_dot] = ACTIONS(2002), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2002), - [sym__fenced_code_block_start_backtick] = ACTIONS(2002), - [sym__fenced_code_block_start_tilde] = ACTIONS(2002), - [sym__blank_line_start] = ACTIONS(2002), - [sym__code_span_start] = ACTIONS(2002), - [sym__emphasis_open_star] = ACTIONS(2002), - [sym__emphasis_open_underscore] = ACTIONS(2002), + [aux_sym__html_block_1_token1] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_COLON] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1835), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_BSLASH] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1835), + [anon_sym__] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1837), + [anon_sym_LT_QMARK] = ACTIONS(1837), + [aux_sym__html_block_4_token1] = ACTIONS(1837), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1835), + [aux_sym__html_block_6_token1] = ACTIONS(1837), + [aux_sym__html_block_6_token2] = ACTIONS(1835), + [sym__open_tag_html_block] = ACTIONS(1835), + [sym__open_tag_html_block_newline] = ACTIONS(1835), + [sym__closing_tag_html_block] = ACTIONS(1835), + [sym__closing_tag_html_block_newline] = ACTIONS(1835), + [sym_backslash_escape] = ACTIONS(1835), + [sym_uri_autolink] = ACTIONS(1835), + [sym_email_autolink] = ACTIONS(1835), + [sym_entity_reference] = ACTIONS(1835), + [sym_numeric_character_reference] = ACTIONS(1835), + [sym__whitespace_ge_2] = ACTIONS(1835), + [aux_sym__whitespace_token1] = ACTIONS(1837), + [sym__word_no_digit] = ACTIONS(1835), + [sym__digits] = ACTIONS(1835), + [aux_sym__newline_token1] = ACTIONS(1835), + [sym__block_close] = ACTIONS(1835), + [sym__block_quote_start] = ACTIONS(1835), + [sym__indented_chunk_start] = ACTIONS(1835), + [sym_atx_h1_marker] = ACTIONS(1835), + [sym_atx_h2_marker] = ACTIONS(1835), + [sym_atx_h3_marker] = ACTIONS(1835), + [sym_atx_h4_marker] = ACTIONS(1835), + [sym_atx_h5_marker] = ACTIONS(1835), + [sym_atx_h6_marker] = ACTIONS(1835), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1835), + [sym__thematic_break] = ACTIONS(1835), + [sym__list_marker_minus] = ACTIONS(1835), + [sym__list_marker_plus] = ACTIONS(1835), + [sym__list_marker_star] = ACTIONS(1835), + [sym__list_marker_parenthesis] = ACTIONS(1835), + [sym__list_marker_dot] = ACTIONS(1835), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1835), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1835), + [sym__fenced_code_block_start_backtick] = ACTIONS(1835), + [sym__fenced_code_block_start_tilde] = ACTIONS(1835), + [sym__blank_line_start] = ACTIONS(1835), + [sym__code_span_start] = ACTIONS(1835), + [sym__emphasis_open_star] = ACTIONS(1835), + [sym__emphasis_open_underscore] = ACTIONS(1835), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(2006), - [aux_sym__html_block_1_token1] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_DOLLAR] = ACTIONS(2006), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_COMMA] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_DOT] = ACTIONS(2006), - [anon_sym_SLASH] = ACTIONS(2006), - [anon_sym_COLON] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2006), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_QMARK] = ACTIONS(2006), - [anon_sym_AT] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_BSLASH] = ACTIONS(2008), - [anon_sym_RBRACK] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym__] = ACTIONS(2006), - [anon_sym_BQUOTE] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2008), - [anon_sym_LT_QMARK] = ACTIONS(2008), - [aux_sym__html_block_4_token1] = ACTIONS(2008), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2006), - [aux_sym__html_block_6_token1] = ACTIONS(2008), - [aux_sym__html_block_6_token2] = ACTIONS(2006), - [sym__open_tag_html_block] = ACTIONS(2006), - [sym__open_tag_html_block_newline] = ACTIONS(2006), - [sym__closing_tag_html_block] = ACTIONS(2006), - [sym__closing_tag_html_block_newline] = ACTIONS(2006), - [sym_backslash_escape] = ACTIONS(2006), - [sym_uri_autolink] = ACTIONS(2006), - [sym_email_autolink] = ACTIONS(2006), - [sym_entity_reference] = ACTIONS(2006), - [sym_numeric_character_reference] = ACTIONS(2006), - [sym__whitespace_ge_2] = ACTIONS(2006), - [aux_sym__whitespace_token1] = ACTIONS(2008), - [sym__word_no_digit] = ACTIONS(2006), - [sym__digits] = ACTIONS(2006), - [aux_sym__newline_token1] = ACTIONS(2006), - [sym__block_quote_start] = ACTIONS(2006), - [sym__indented_chunk_start] = ACTIONS(2006), - [sym_atx_h1_marker] = ACTIONS(2006), - [sym_atx_h2_marker] = ACTIONS(2006), - [sym_atx_h3_marker] = ACTIONS(2006), - [sym_atx_h4_marker] = ACTIONS(2006), - [sym_atx_h5_marker] = ACTIONS(2006), - [sym_atx_h6_marker] = ACTIONS(2006), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2006), - [sym__thematic_break] = ACTIONS(2006), - [sym__list_marker_minus] = ACTIONS(2006), - [sym__list_marker_plus] = ACTIONS(2006), - [sym__list_marker_star] = ACTIONS(2006), - [sym__list_marker_parenthesis] = ACTIONS(2006), - [sym__list_marker_dot] = ACTIONS(2006), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2006), - [sym__fenced_code_block_start_backtick] = ACTIONS(2006), - [sym__fenced_code_block_start_tilde] = ACTIONS(2006), - [sym__blank_line_start] = ACTIONS(2006), - [sym__code_span_start] = ACTIONS(2006), - [sym__emphasis_open_star] = ACTIONS(2006), - [sym__emphasis_open_underscore] = ACTIONS(2006), + [sym_shortcut_link] = STATE(383), + [sym_full_reference_link] = STATE(383), + [sym_collapsed_reference_link] = STATE(383), + [sym_inline_link] = STATE(383), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym_hard_line_break] = STATE(383), + [sym_html_tag] = STATE(383), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(383), + [sym__word] = STATE(383), + [sym__text_inline_no_underscore] = STATE(383), + [sym__inline_element_no_newline_no_underscore] = STATE(383), + [aux_sym__inline_no_newline_no_underscore] = STATE(383), + [sym__emphasis_star_no_newline] = STATE(863), + [sym__strong_emphasis_star_no_newline] = STATE(383), + [sym__emphasis_underscore_no_newline] = STATE(863), + [sym__strong_emphasis_underscore_no_newline] = STATE(383), + [sym__code_span_no_newline] = STATE(383), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_BSLASH] = ACTIONS(1813), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1815), + [anon_sym_LT_QMARK] = ACTIONS(1817), + [aux_sym__html_block_4_token1] = ACTIONS(1819), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1821), + [sym_backslash_escape] = ACTIONS(1823), + [sym_uri_autolink] = ACTIONS(1823), + [sym_email_autolink] = ACTIONS(1823), + [sym_entity_reference] = ACTIONS(1823), + [sym_numeric_character_reference] = ACTIONS(1823), + [sym__whitespace_ge_2] = ACTIONS(1825), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(1823), + [sym__digits] = ACTIONS(1823), + [sym__code_span_start] = ACTIONS(1827), + [sym__emphasis_open_star] = ACTIONS(1829), + [sym__emphasis_open_underscore] = ACTIONS(1831), + [sym__emphasis_close_underscore] = ACTIONS(2083), }, [395] = { - [aux_sym__html_block_1_token1] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2010), - [anon_sym_PERCENT] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_COMMA] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_DOT] = ACTIONS(2010), - [anon_sym_SLASH] = ACTIONS(2010), - [anon_sym_COLON] = ACTIONS(2010), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(2010), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_QMARK] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_BSLASH] = ACTIONS(2012), - [anon_sym_RBRACK] = ACTIONS(2010), - [anon_sym_CARET] = ACTIONS(2010), - [anon_sym__] = ACTIONS(2010), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2012), - [anon_sym_LT_QMARK] = ACTIONS(2012), - [aux_sym__html_block_4_token1] = ACTIONS(2012), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2010), - [aux_sym__html_block_6_token1] = ACTIONS(2012), - [aux_sym__html_block_6_token2] = ACTIONS(2010), - [sym__open_tag_html_block] = ACTIONS(2010), - [sym__open_tag_html_block_newline] = ACTIONS(2010), - [sym__closing_tag_html_block] = ACTIONS(2010), - [sym__closing_tag_html_block_newline] = ACTIONS(2010), - [sym_backslash_escape] = ACTIONS(2010), - [sym_uri_autolink] = ACTIONS(2010), - [sym_email_autolink] = ACTIONS(2010), - [sym_entity_reference] = ACTIONS(2010), - [sym_numeric_character_reference] = ACTIONS(2010), - [sym__whitespace_ge_2] = ACTIONS(2010), - [aux_sym__whitespace_token1] = ACTIONS(2012), - [sym__word_no_digit] = ACTIONS(2010), - [sym__digits] = ACTIONS(2010), - [aux_sym__newline_token1] = ACTIONS(2010), - [sym__block_close] = ACTIONS(2010), - [sym__block_quote_start] = ACTIONS(2010), - [sym__indented_chunk_start] = ACTIONS(2010), - [sym_atx_h1_marker] = ACTIONS(2010), - [sym_atx_h2_marker] = ACTIONS(2010), - [sym_atx_h3_marker] = ACTIONS(2010), - [sym_atx_h4_marker] = ACTIONS(2010), - [sym_atx_h5_marker] = ACTIONS(2010), - [sym_atx_h6_marker] = ACTIONS(2010), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2010), - [sym__thematic_break] = ACTIONS(2010), - [sym__list_marker_minus] = ACTIONS(2010), - [sym__list_marker_plus] = ACTIONS(2010), - [sym__list_marker_star] = ACTIONS(2010), - [sym__list_marker_parenthesis] = ACTIONS(2010), - [sym__list_marker_dot] = ACTIONS(2010), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2010), - [sym__fenced_code_block_start_backtick] = ACTIONS(2010), - [sym__fenced_code_block_start_tilde] = ACTIONS(2010), - [sym__blank_line_start] = ACTIONS(2010), - [sym__code_span_start] = ACTIONS(2010), - [sym__emphasis_open_star] = ACTIONS(2010), - [sym__emphasis_open_underscore] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2079), + [aux_sym__html_block_1_token1] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_COLON] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_EQ] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_QMARK] = ACTIONS(2079), + [anon_sym_AT] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_BSLASH] = ACTIONS(2081), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym__] = ACTIONS(2079), + [anon_sym_BQUOTE] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2079), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2081), + [anon_sym_LT_QMARK] = ACTIONS(2081), + [aux_sym__html_block_4_token1] = ACTIONS(2081), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2079), + [aux_sym__html_block_6_token1] = ACTIONS(2081), + [aux_sym__html_block_6_token2] = ACTIONS(2079), + [sym__open_tag_html_block] = ACTIONS(2079), + [sym__open_tag_html_block_newline] = ACTIONS(2079), + [sym__closing_tag_html_block] = ACTIONS(2079), + [sym__closing_tag_html_block_newline] = ACTIONS(2079), + [sym_backslash_escape] = ACTIONS(2079), + [sym_uri_autolink] = ACTIONS(2079), + [sym_email_autolink] = ACTIONS(2079), + [sym_entity_reference] = ACTIONS(2079), + [sym_numeric_character_reference] = ACTIONS(2079), + [sym__whitespace_ge_2] = ACTIONS(2079), + [aux_sym__whitespace_token1] = ACTIONS(2081), + [sym__word_no_digit] = ACTIONS(2079), + [sym__digits] = ACTIONS(2079), + [aux_sym__newline_token1] = ACTIONS(2079), + [sym__block_quote_start] = ACTIONS(2079), + [sym__indented_chunk_start] = ACTIONS(2079), + [sym_atx_h1_marker] = ACTIONS(2079), + [sym_atx_h2_marker] = ACTIONS(2079), + [sym_atx_h3_marker] = ACTIONS(2079), + [sym_atx_h4_marker] = ACTIONS(2079), + [sym_atx_h5_marker] = ACTIONS(2079), + [sym_atx_h6_marker] = ACTIONS(2079), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2079), + [sym__thematic_break] = ACTIONS(2079), + [sym__list_marker_minus] = ACTIONS(2079), + [sym__list_marker_plus] = ACTIONS(2079), + [sym__list_marker_star] = ACTIONS(2079), + [sym__list_marker_parenthesis] = ACTIONS(2079), + [sym__list_marker_dot] = ACTIONS(2079), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2079), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2079), + [sym__fenced_code_block_start_backtick] = ACTIONS(2079), + [sym__fenced_code_block_start_tilde] = ACTIONS(2079), + [sym__blank_line_start] = ACTIONS(2079), + [sym__code_span_start] = ACTIONS(2079), + [sym__emphasis_open_star] = ACTIONS(2079), + [sym__emphasis_open_underscore] = ACTIONS(2079), }, [396] = { - [aux_sym__html_block_1_token1] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_DOLLAR] = ACTIONS(2014), - [anon_sym_PERCENT] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_RPAREN] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_COMMA] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_DOT] = ACTIONS(2014), - [anon_sym_SLASH] = ACTIONS(2014), - [anon_sym_COLON] = ACTIONS(2014), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2016), - [anon_sym_EQ] = ACTIONS(2014), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_QMARK] = ACTIONS(2014), - [anon_sym_AT] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_BSLASH] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2014), - [anon_sym_CARET] = ACTIONS(2014), - [anon_sym__] = ACTIONS(2014), - [anon_sym_BQUOTE] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2014), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2016), - [aux_sym__html_block_4_token1] = ACTIONS(2016), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2014), - [aux_sym__html_block_6_token1] = ACTIONS(2016), - [aux_sym__html_block_6_token2] = ACTIONS(2014), - [sym__open_tag_html_block] = ACTIONS(2014), - [sym__open_tag_html_block_newline] = ACTIONS(2014), - [sym__closing_tag_html_block] = ACTIONS(2014), - [sym__closing_tag_html_block_newline] = ACTIONS(2014), - [sym_backslash_escape] = ACTIONS(2014), - [sym_uri_autolink] = ACTIONS(2014), - [sym_email_autolink] = ACTIONS(2014), - [sym_entity_reference] = ACTIONS(2014), - [sym_numeric_character_reference] = ACTIONS(2014), - [sym__whitespace_ge_2] = ACTIONS(2014), - [aux_sym__whitespace_token1] = ACTIONS(2016), - [sym__word_no_digit] = ACTIONS(2014), - [sym__digits] = ACTIONS(2014), - [aux_sym__newline_token1] = ACTIONS(2014), - [sym__block_close] = ACTIONS(2014), - [sym__block_quote_start] = ACTIONS(2014), - [sym__indented_chunk_start] = ACTIONS(2014), - [sym_atx_h1_marker] = ACTIONS(2014), - [sym_atx_h2_marker] = ACTIONS(2014), - [sym_atx_h3_marker] = ACTIONS(2014), - [sym_atx_h4_marker] = ACTIONS(2014), - [sym_atx_h5_marker] = ACTIONS(2014), - [sym_atx_h6_marker] = ACTIONS(2014), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2014), - [sym__thematic_break] = ACTIONS(2014), - [sym__list_marker_minus] = ACTIONS(2014), - [sym__list_marker_plus] = ACTIONS(2014), - [sym__list_marker_star] = ACTIONS(2014), - [sym__list_marker_parenthesis] = ACTIONS(2014), - [sym__list_marker_dot] = ACTIONS(2014), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2014), - [sym__fenced_code_block_start_backtick] = ACTIONS(2014), - [sym__fenced_code_block_start_tilde] = ACTIONS(2014), - [sym__blank_line_start] = ACTIONS(2014), - [sym__code_span_start] = ACTIONS(2014), - [sym__emphasis_open_star] = ACTIONS(2014), - [sym__emphasis_open_underscore] = ACTIONS(2014), + [aux_sym__html_block_1_token1] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_COLON] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_QMARK] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_BSLASH] = ACTIONS(2087), + [anon_sym_RBRACK] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym__] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2087), + [anon_sym_LT_QMARK] = ACTIONS(2087), + [aux_sym__html_block_4_token1] = ACTIONS(2087), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2085), + [aux_sym__html_block_6_token1] = ACTIONS(2087), + [aux_sym__html_block_6_token2] = ACTIONS(2085), + [sym__open_tag_html_block] = ACTIONS(2085), + [sym__open_tag_html_block_newline] = ACTIONS(2085), + [sym__closing_tag_html_block] = ACTIONS(2085), + [sym__closing_tag_html_block_newline] = ACTIONS(2085), + [sym_backslash_escape] = ACTIONS(2085), + [sym_uri_autolink] = ACTIONS(2085), + [sym_email_autolink] = ACTIONS(2085), + [sym_entity_reference] = ACTIONS(2085), + [sym_numeric_character_reference] = ACTIONS(2085), + [sym__whitespace_ge_2] = ACTIONS(2085), + [aux_sym__whitespace_token1] = ACTIONS(2087), + [sym__word_no_digit] = ACTIONS(2085), + [sym__digits] = ACTIONS(2085), + [aux_sym__newline_token1] = ACTIONS(2085), + [sym__block_close] = ACTIONS(2085), + [sym__block_quote_start] = ACTIONS(2085), + [sym__indented_chunk_start] = ACTIONS(2085), + [sym_atx_h1_marker] = ACTIONS(2085), + [sym_atx_h2_marker] = ACTIONS(2085), + [sym_atx_h3_marker] = ACTIONS(2085), + [sym_atx_h4_marker] = ACTIONS(2085), + [sym_atx_h5_marker] = ACTIONS(2085), + [sym_atx_h6_marker] = ACTIONS(2085), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2085), + [sym__thematic_break] = ACTIONS(2085), + [sym__list_marker_minus] = ACTIONS(2085), + [sym__list_marker_plus] = ACTIONS(2085), + [sym__list_marker_star] = ACTIONS(2085), + [sym__list_marker_parenthesis] = ACTIONS(2085), + [sym__list_marker_dot] = ACTIONS(2085), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2085), + [sym__fenced_code_block_start_backtick] = ACTIONS(2085), + [sym__fenced_code_block_start_tilde] = ACTIONS(2085), + [sym__blank_line_start] = ACTIONS(2085), + [sym__code_span_start] = ACTIONS(2085), + [sym__emphasis_open_star] = ACTIONS(2085), + [sym__emphasis_open_underscore] = ACTIONS(2085), }, [397] = { - [sym_shortcut_link] = STATE(421), - [sym_full_reference_link] = STATE(421), - [sym_collapsed_reference_link] = STATE(421), - [sym_inline_link] = STATE(421), - [sym_image] = STATE(421), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym_hard_line_break] = STATE(421), - [sym_html_tag] = STATE(421), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(421), - [sym__word] = STATE(421), - [sym__text_inline_no_underscore] = STATE(421), - [sym__inline_element_no_newline_no_underscore] = STATE(421), - [aux_sym__inline_no_newline_no_underscore] = STATE(421), - [sym__emphasis_star_no_newline] = STATE(874), - [sym__strong_emphasis_star_no_newline] = STATE(421), - [sym__emphasis_underscore_no_newline] = STATE(873), - [sym__strong_emphasis_underscore_no_newline] = STATE(421), - [sym__code_span_no_newline] = STATE(421), - [anon_sym_BANG] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1493), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_COLON] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_BSLASH] = ACTIONS(2024), - [anon_sym_RBRACK] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym__] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2027), - [anon_sym_LT_QMARK] = ACTIONS(2030), - [aux_sym__html_block_4_token1] = ACTIONS(2033), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2036), - [sym_backslash_escape] = ACTIONS(2039), - [sym_uri_autolink] = ACTIONS(2039), - [sym_email_autolink] = ACTIONS(2039), - [sym_entity_reference] = ACTIONS(2039), - [sym_numeric_character_reference] = ACTIONS(2039), - [sym__whitespace_ge_2] = ACTIONS(2042), - [aux_sym__whitespace_token1] = ACTIONS(1526), - [sym__word_no_digit] = ACTIONS(2039), - [sym__digits] = ACTIONS(2039), - [aux_sym__newline_token1] = ACTIONS(2045), - [sym__code_span_start] = ACTIONS(2047), - [sym__emphasis_open_star] = ACTIONS(2050), - [sym__emphasis_open_underscore] = ACTIONS(2053), + [sym_shortcut_link] = STATE(886), + [sym_full_reference_link] = STATE(886), + [sym_collapsed_reference_link] = STATE(886), + [sym_inline_link] = STATE(886), + [sym_image] = STATE(886), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__link_text] = STATE(2112), + [sym__link_text_non_empty] = STATE(915), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(914), + [sym_hard_line_break] = STATE(886), + [sym_html_tag] = STATE(886), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(886), + [sym__word] = STATE(886), + [sym__text_inline] = STATE(886), + [sym__inline_element_no_newline] = STATE(886), + [aux_sym__inline_no_newline] = STATE(397), + [sym__emphasis_star_no_newline] = STATE(904), + [sym__strong_emphasis_star_no_newline] = STATE(886), + [sym__emphasis_underscore_no_newline] = STATE(904), + [sym__strong_emphasis_underscore_no_newline] = STATE(886), + [sym__code_span_no_newline] = STATE(886), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(2092), + [anon_sym_PERCENT] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_RPAREN] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_COMMA] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_DOT] = ACTIONS(2092), + [anon_sym_SLASH] = ACTIONS(2092), + [anon_sym_COLON] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_EQ] = ACTIONS(2092), + [anon_sym_GT] = ACTIONS(2092), + [anon_sym_QMARK] = ACTIONS(2092), + [anon_sym_AT] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_BSLASH] = ACTIONS(2104), + [anon_sym_RBRACK] = ACTIONS(2092), + [anon_sym_CARET] = ACTIONS(2092), + [anon_sym__] = ACTIONS(2092), + [anon_sym_BQUOTE] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_TILDE] = ACTIONS(2092), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2107), + [anon_sym_LT_QMARK] = ACTIONS(2110), + [aux_sym__html_block_4_token1] = ACTIONS(2113), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2116), + [sym_backslash_escape] = ACTIONS(2119), + [sym_uri_autolink] = ACTIONS(2119), + [sym_email_autolink] = ACTIONS(2119), + [sym_entity_reference] = ACTIONS(2119), + [sym_numeric_character_reference] = ACTIONS(2119), + [sym__whitespace_ge_2] = ACTIONS(2122), + [aux_sym__whitespace_token1] = ACTIONS(2125), + [sym__word_no_digit] = ACTIONS(2119), + [sym__digits] = ACTIONS(2119), + [aux_sym__newline_token1] = ACTIONS(2128), + [sym__code_span_start] = ACTIONS(2130), + [sym__emphasis_open_star] = ACTIONS(2133), + [sym__emphasis_open_underscore] = ACTIONS(2136), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(2002), - [aux_sym__html_block_1_token1] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2002), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_DOLLAR] = ACTIONS(2002), - [anon_sym_PERCENT] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_COMMA] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_DOT] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2002), - [anon_sym_COLON] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_EQ] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2002), - [anon_sym_QMARK] = ACTIONS(2002), - [anon_sym_AT] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_BSLASH] = ACTIONS(2004), - [anon_sym_RBRACK] = ACTIONS(2002), - [anon_sym_CARET] = ACTIONS(2002), - [anon_sym__] = ACTIONS(2002), - [anon_sym_BQUOTE] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2004), - [anon_sym_LT_QMARK] = ACTIONS(2004), - [aux_sym__html_block_4_token1] = ACTIONS(2004), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2002), - [aux_sym__html_block_6_token1] = ACTIONS(2004), - [aux_sym__html_block_6_token2] = ACTIONS(2002), - [sym__open_tag_html_block] = ACTIONS(2002), - [sym__open_tag_html_block_newline] = ACTIONS(2002), - [sym__closing_tag_html_block] = ACTIONS(2002), - [sym__closing_tag_html_block_newline] = ACTIONS(2002), - [sym_backslash_escape] = ACTIONS(2002), - [sym_uri_autolink] = ACTIONS(2002), - [sym_email_autolink] = ACTIONS(2002), - [sym_entity_reference] = ACTIONS(2002), - [sym_numeric_character_reference] = ACTIONS(2002), - [sym__whitespace_ge_2] = ACTIONS(2002), - [aux_sym__whitespace_token1] = ACTIONS(2004), - [sym__word_no_digit] = ACTIONS(2002), - [sym__digits] = ACTIONS(2002), - [aux_sym__newline_token1] = ACTIONS(2002), - [sym__block_quote_start] = ACTIONS(2002), - [sym__indented_chunk_start] = ACTIONS(2002), - [sym_atx_h1_marker] = ACTIONS(2002), - [sym_atx_h2_marker] = ACTIONS(2002), - [sym_atx_h3_marker] = ACTIONS(2002), - [sym_atx_h4_marker] = ACTIONS(2002), - [sym_atx_h5_marker] = ACTIONS(2002), - [sym_atx_h6_marker] = ACTIONS(2002), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2002), - [sym__thematic_break] = ACTIONS(2002), - [sym__list_marker_minus] = ACTIONS(2002), - [sym__list_marker_plus] = ACTIONS(2002), - [sym__list_marker_star] = ACTIONS(2002), - [sym__list_marker_parenthesis] = ACTIONS(2002), - [sym__list_marker_dot] = ACTIONS(2002), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2002), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2002), - [sym__fenced_code_block_start_backtick] = ACTIONS(2002), - [sym__fenced_code_block_start_tilde] = ACTIONS(2002), - [sym__blank_line_start] = ACTIONS(2002), - [sym__code_span_start] = ACTIONS(2002), - [sym__emphasis_open_star] = ACTIONS(2002), - [sym__emphasis_open_underscore] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(2085), + [aux_sym__html_block_1_token1] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_SLASH] = ACTIONS(2085), + [anon_sym_COLON] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_QMARK] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_BSLASH] = ACTIONS(2087), + [anon_sym_RBRACK] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym__] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2087), + [anon_sym_LT_QMARK] = ACTIONS(2087), + [aux_sym__html_block_4_token1] = ACTIONS(2087), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2085), + [aux_sym__html_block_6_token1] = ACTIONS(2087), + [aux_sym__html_block_6_token2] = ACTIONS(2085), + [sym__open_tag_html_block] = ACTIONS(2085), + [sym__open_tag_html_block_newline] = ACTIONS(2085), + [sym__closing_tag_html_block] = ACTIONS(2085), + [sym__closing_tag_html_block_newline] = ACTIONS(2085), + [sym_backslash_escape] = ACTIONS(2085), + [sym_uri_autolink] = ACTIONS(2085), + [sym_email_autolink] = ACTIONS(2085), + [sym_entity_reference] = ACTIONS(2085), + [sym_numeric_character_reference] = ACTIONS(2085), + [sym__whitespace_ge_2] = ACTIONS(2085), + [aux_sym__whitespace_token1] = ACTIONS(2087), + [sym__word_no_digit] = ACTIONS(2085), + [sym__digits] = ACTIONS(2085), + [aux_sym__newline_token1] = ACTIONS(2085), + [sym__block_quote_start] = ACTIONS(2085), + [sym__indented_chunk_start] = ACTIONS(2085), + [sym_atx_h1_marker] = ACTIONS(2085), + [sym_atx_h2_marker] = ACTIONS(2085), + [sym_atx_h3_marker] = ACTIONS(2085), + [sym_atx_h4_marker] = ACTIONS(2085), + [sym_atx_h5_marker] = ACTIONS(2085), + [sym_atx_h6_marker] = ACTIONS(2085), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2085), + [sym__thematic_break] = ACTIONS(2085), + [sym__list_marker_minus] = ACTIONS(2085), + [sym__list_marker_plus] = ACTIONS(2085), + [sym__list_marker_star] = ACTIONS(2085), + [sym__list_marker_parenthesis] = ACTIONS(2085), + [sym__list_marker_dot] = ACTIONS(2085), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2085), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2085), + [sym__fenced_code_block_start_backtick] = ACTIONS(2085), + [sym__fenced_code_block_start_tilde] = ACTIONS(2085), + [sym__blank_line_start] = ACTIONS(2085), + [sym__code_span_start] = ACTIONS(2085), + [sym__emphasis_open_star] = ACTIONS(2085), + [sym__emphasis_open_underscore] = ACTIONS(2085), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1908), - [aux_sym__html_block_1_token1] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1908), - [anon_sym_PERCENT] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_RPAREN] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOT] = ACTIONS(1908), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_COLON] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_QMARK] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_BSLASH] = ACTIONS(1910), - [anon_sym_RBRACK] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym__] = ACTIONS(1908), - [anon_sym_BQUOTE] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1910), - [anon_sym_LT_QMARK] = ACTIONS(1910), - [aux_sym__html_block_4_token1] = ACTIONS(1910), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1908), - [aux_sym__html_block_6_token1] = ACTIONS(1910), - [aux_sym__html_block_6_token2] = ACTIONS(1908), - [sym__open_tag_html_block] = ACTIONS(1908), - [sym__open_tag_html_block_newline] = ACTIONS(1908), - [sym__closing_tag_html_block] = ACTIONS(1908), - [sym__closing_tag_html_block_newline] = ACTIONS(1908), - [sym_backslash_escape] = ACTIONS(1908), - [sym_uri_autolink] = ACTIONS(1908), - [sym_email_autolink] = ACTIONS(1908), - [sym_entity_reference] = ACTIONS(1908), - [sym_numeric_character_reference] = ACTIONS(1908), - [sym__whitespace_ge_2] = ACTIONS(1908), - [aux_sym__whitespace_token1] = ACTIONS(1910), - [sym__word_no_digit] = ACTIONS(1908), - [sym__digits] = ACTIONS(1908), - [aux_sym__newline_token1] = ACTIONS(1908), - [sym__block_quote_start] = ACTIONS(1908), - [sym__indented_chunk_start] = ACTIONS(1908), - [sym_atx_h1_marker] = ACTIONS(1908), - [sym_atx_h2_marker] = ACTIONS(1908), - [sym_atx_h3_marker] = ACTIONS(1908), - [sym_atx_h4_marker] = ACTIONS(1908), - [sym_atx_h5_marker] = ACTIONS(1908), - [sym_atx_h6_marker] = ACTIONS(1908), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1908), - [sym__thematic_break] = ACTIONS(1908), - [sym__list_marker_minus] = ACTIONS(1908), - [sym__list_marker_plus] = ACTIONS(1908), - [sym__list_marker_star] = ACTIONS(1908), - [sym__list_marker_parenthesis] = ACTIONS(1908), - [sym__list_marker_dot] = ACTIONS(1908), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1908), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1908), - [sym__fenced_code_block_start_backtick] = ACTIONS(1908), - [sym__fenced_code_block_start_tilde] = ACTIONS(1908), - [sym__blank_line_start] = ACTIONS(1908), - [sym__code_span_start] = ACTIONS(1908), - [sym__emphasis_open_star] = ACTIONS(1908), - [sym__emphasis_open_underscore] = ACTIONS(1908), + [aux_sym__html_block_1_token1] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(2031), + [anon_sym_COMMA] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_COLON] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_EQ] = ACTIONS(2031), + [anon_sym_GT] = ACTIONS(2031), + [anon_sym_QMARK] = ACTIONS(2031), + [anon_sym_AT] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_BSLASH] = ACTIONS(2033), + [anon_sym_RBRACK] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), + [anon_sym__] = ACTIONS(2031), + [anon_sym_BQUOTE] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_TILDE] = ACTIONS(2031), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2033), + [anon_sym_LT_QMARK] = ACTIONS(2033), + [aux_sym__html_block_4_token1] = ACTIONS(2033), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2031), + [aux_sym__html_block_6_token1] = ACTIONS(2033), + [aux_sym__html_block_6_token2] = ACTIONS(2031), + [sym__open_tag_html_block] = ACTIONS(2031), + [sym__open_tag_html_block_newline] = ACTIONS(2031), + [sym__closing_tag_html_block] = ACTIONS(2031), + [sym__closing_tag_html_block_newline] = ACTIONS(2031), + [sym_backslash_escape] = ACTIONS(2031), + [sym_uri_autolink] = ACTIONS(2031), + [sym_email_autolink] = ACTIONS(2031), + [sym_entity_reference] = ACTIONS(2031), + [sym_numeric_character_reference] = ACTIONS(2031), + [sym__whitespace_ge_2] = ACTIONS(2031), + [aux_sym__whitespace_token1] = ACTIONS(2033), + [sym__word_no_digit] = ACTIONS(2031), + [sym__digits] = ACTIONS(2031), + [aux_sym__newline_token1] = ACTIONS(2031), + [sym__block_close] = ACTIONS(2031), + [sym__block_quote_start] = ACTIONS(2031), + [sym__indented_chunk_start] = ACTIONS(2031), + [sym_atx_h1_marker] = ACTIONS(2031), + [sym_atx_h2_marker] = ACTIONS(2031), + [sym_atx_h3_marker] = ACTIONS(2031), + [sym_atx_h4_marker] = ACTIONS(2031), + [sym_atx_h5_marker] = ACTIONS(2031), + [sym_atx_h6_marker] = ACTIONS(2031), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2031), + [sym__thematic_break] = ACTIONS(2031), + [sym__list_marker_minus] = ACTIONS(2031), + [sym__list_marker_plus] = ACTIONS(2031), + [sym__list_marker_star] = ACTIONS(2031), + [sym__list_marker_parenthesis] = ACTIONS(2031), + [sym__list_marker_dot] = ACTIONS(2031), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2031), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2031), + [sym__fenced_code_block_start_backtick] = ACTIONS(2031), + [sym__fenced_code_block_start_tilde] = ACTIONS(2031), + [sym__blank_line_start] = ACTIONS(2031), + [sym__code_span_start] = ACTIONS(2031), + [sym__emphasis_open_star] = ACTIONS(2031), + [sym__emphasis_open_underscore] = ACTIONS(2031), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [aux_sym__html_block_1_token1] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_PERCENT] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_DOT] = ACTIONS(1830), - [anon_sym_SLASH] = ACTIONS(1830), - [anon_sym_COLON] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1830), - [anon_sym_QMARK] = ACTIONS(1830), - [anon_sym_AT] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_BSLASH] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_CARET] = ACTIONS(1830), - [anon_sym__] = ACTIONS(1830), - [anon_sym_BQUOTE] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1830), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1832), - [anon_sym_LT_QMARK] = ACTIONS(1832), - [aux_sym__html_block_4_token1] = ACTIONS(1832), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1830), - [aux_sym__html_block_6_token1] = ACTIONS(1832), - [aux_sym__html_block_6_token2] = ACTIONS(1830), - [sym__open_tag_html_block] = ACTIONS(1830), - [sym__open_tag_html_block_newline] = ACTIONS(1830), - [sym__closing_tag_html_block] = ACTIONS(1830), - [sym__closing_tag_html_block_newline] = ACTIONS(1830), - [sym_backslash_escape] = ACTIONS(1830), - [sym_uri_autolink] = ACTIONS(1830), - [sym_email_autolink] = ACTIONS(1830), - [sym_entity_reference] = ACTIONS(1830), - [sym_numeric_character_reference] = ACTIONS(1830), - [sym__whitespace_ge_2] = ACTIONS(1830), - [aux_sym__whitespace_token1] = ACTIONS(1832), - [sym__word_no_digit] = ACTIONS(1830), - [sym__digits] = ACTIONS(1830), - [aux_sym__newline_token1] = ACTIONS(1830), - [sym__block_quote_start] = ACTIONS(1830), - [sym__indented_chunk_start] = ACTIONS(1830), - [sym_atx_h1_marker] = ACTIONS(1830), - [sym_atx_h2_marker] = ACTIONS(1830), - [sym_atx_h3_marker] = ACTIONS(1830), - [sym_atx_h4_marker] = ACTIONS(1830), - [sym_atx_h5_marker] = ACTIONS(1830), - [sym_atx_h6_marker] = ACTIONS(1830), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1830), - [sym__thematic_break] = ACTIONS(1830), - [sym__list_marker_minus] = ACTIONS(1830), - [sym__list_marker_plus] = ACTIONS(1830), - [sym__list_marker_star] = ACTIONS(1830), - [sym__list_marker_parenthesis] = ACTIONS(1830), - [sym__list_marker_dot] = ACTIONS(1830), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1830), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1830), - [sym__fenced_code_block_start_backtick] = ACTIONS(1830), - [sym__fenced_code_block_start_tilde] = ACTIONS(1830), - [sym__blank_line_start] = ACTIONS(1830), - [sym__code_span_start] = ACTIONS(1830), - [sym__emphasis_open_star] = ACTIONS(1830), - [sym__emphasis_open_underscore] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1739), + [aux_sym__html_block_1_token1] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_PERCENT] = ACTIONS(1739), + [anon_sym_AMP] = ACTIONS(1741), + [anon_sym_SQUOTE] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_COMMA] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_COLON] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1741), + [anon_sym_EQ] = ACTIONS(1739), + [anon_sym_GT] = ACTIONS(1739), + [anon_sym_QMARK] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_BSLASH] = ACTIONS(1741), + [anon_sym_RBRACK] = ACTIONS(1739), + [anon_sym_CARET] = ACTIONS(1739), + [anon_sym__] = ACTIONS(1739), + [anon_sym_BQUOTE] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1739), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1741), + [anon_sym_LT_QMARK] = ACTIONS(1741), + [aux_sym__html_block_4_token1] = ACTIONS(1741), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1739), + [aux_sym__html_block_6_token1] = ACTIONS(1741), + [aux_sym__html_block_6_token2] = ACTIONS(1739), + [sym__open_tag_html_block] = ACTIONS(1739), + [sym__open_tag_html_block_newline] = ACTIONS(1739), + [sym__closing_tag_html_block] = ACTIONS(1739), + [sym__closing_tag_html_block_newline] = ACTIONS(1739), + [sym_backslash_escape] = ACTIONS(1739), + [sym_uri_autolink] = ACTIONS(1739), + [sym_email_autolink] = ACTIONS(1739), + [sym_entity_reference] = ACTIONS(1739), + [sym_numeric_character_reference] = ACTIONS(1739), + [sym__whitespace_ge_2] = ACTIONS(1739), + [aux_sym__whitespace_token1] = ACTIONS(1741), + [sym__word_no_digit] = ACTIONS(1739), + [sym__digits] = ACTIONS(1739), + [aux_sym__newline_token1] = ACTIONS(1739), + [sym__block_quote_start] = ACTIONS(1739), + [sym__indented_chunk_start] = ACTIONS(1739), + [sym_atx_h1_marker] = ACTIONS(1739), + [sym_atx_h2_marker] = ACTIONS(1739), + [sym_atx_h3_marker] = ACTIONS(1739), + [sym_atx_h4_marker] = ACTIONS(1739), + [sym_atx_h5_marker] = ACTIONS(1739), + [sym_atx_h6_marker] = ACTIONS(1739), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1739), + [sym__thematic_break] = ACTIONS(1739), + [sym__list_marker_minus] = ACTIONS(1739), + [sym__list_marker_plus] = ACTIONS(1739), + [sym__list_marker_star] = ACTIONS(1739), + [sym__list_marker_parenthesis] = ACTIONS(1739), + [sym__list_marker_dot] = ACTIONS(1739), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1739), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1739), + [sym__fenced_code_block_start_backtick] = ACTIONS(1739), + [sym__fenced_code_block_start_tilde] = ACTIONS(1739), + [sym__blank_line_start] = ACTIONS(1739), + [sym__code_span_start] = ACTIONS(1739), + [sym__emphasis_open_star] = ACTIONS(1739), + [sym__emphasis_open_underscore] = ACTIONS(1739), }, [401] = { - [aux_sym__html_block_1_token1] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1854), - [anon_sym_PERCENT] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_COMMA] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_DOT] = ACTIONS(1854), - [anon_sym_SLASH] = ACTIONS(1854), - [anon_sym_COLON] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_GT] = ACTIONS(1854), - [anon_sym_QMARK] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_BSLASH] = ACTIONS(1856), - [anon_sym_RBRACK] = ACTIONS(1854), - [anon_sym_CARET] = ACTIONS(1854), - [anon_sym__] = ACTIONS(1854), - [anon_sym_BQUOTE] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_TILDE] = ACTIONS(1854), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1856), - [anon_sym_LT_QMARK] = ACTIONS(1856), - [aux_sym__html_block_4_token1] = ACTIONS(1856), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1854), - [aux_sym__html_block_6_token1] = ACTIONS(1856), - [aux_sym__html_block_6_token2] = ACTIONS(1854), - [sym__open_tag_html_block] = ACTIONS(1854), - [sym__open_tag_html_block_newline] = ACTIONS(1854), - [sym__closing_tag_html_block] = ACTIONS(1854), - [sym__closing_tag_html_block_newline] = ACTIONS(1854), - [sym_backslash_escape] = ACTIONS(1854), - [sym_uri_autolink] = ACTIONS(1854), - [sym_email_autolink] = ACTIONS(1854), - [sym_entity_reference] = ACTIONS(1854), - [sym_numeric_character_reference] = ACTIONS(1854), - [sym__whitespace_ge_2] = ACTIONS(1854), - [aux_sym__whitespace_token1] = ACTIONS(1856), - [sym__word_no_digit] = ACTIONS(1854), - [sym__digits] = ACTIONS(1854), - [aux_sym__newline_token1] = ACTIONS(1854), - [sym__block_close] = ACTIONS(1854), - [sym__block_quote_start] = ACTIONS(1854), - [sym__indented_chunk_start] = ACTIONS(1854), - [sym_atx_h1_marker] = ACTIONS(1854), - [sym_atx_h2_marker] = ACTIONS(1854), - [sym_atx_h3_marker] = ACTIONS(1854), - [sym_atx_h4_marker] = ACTIONS(1854), - [sym_atx_h5_marker] = ACTIONS(1854), - [sym_atx_h6_marker] = ACTIONS(1854), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1854), - [sym__thematic_break] = ACTIONS(1854), - [sym__list_marker_minus] = ACTIONS(1854), - [sym__list_marker_plus] = ACTIONS(1854), - [sym__list_marker_star] = ACTIONS(1854), - [sym__list_marker_parenthesis] = ACTIONS(1854), - [sym__list_marker_dot] = ACTIONS(1854), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1854), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1854), - [sym__fenced_code_block_start_backtick] = ACTIONS(1854), - [sym__fenced_code_block_start_tilde] = ACTIONS(1854), - [sym__blank_line_start] = ACTIONS(1854), - [sym__code_span_start] = ACTIONS(1854), - [sym__emphasis_open_star] = ACTIONS(1854), - [sym__emphasis_open_underscore] = ACTIONS(1854), + [aux_sym__html_block_1_token1] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [anon_sym_POUND] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_PERCENT] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_SLASH] = ACTIONS(1743), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_EQ] = ACTIONS(1743), + [anon_sym_GT] = ACTIONS(1743), + [anon_sym_QMARK] = ACTIONS(1743), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_BSLASH] = ACTIONS(1745), + [anon_sym_RBRACK] = ACTIONS(1743), + [anon_sym_CARET] = ACTIONS(1743), + [anon_sym__] = ACTIONS(1743), + [anon_sym_BQUOTE] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1745), + [anon_sym_LT_QMARK] = ACTIONS(1745), + [aux_sym__html_block_4_token1] = ACTIONS(1745), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1743), + [aux_sym__html_block_6_token1] = ACTIONS(1745), + [aux_sym__html_block_6_token2] = ACTIONS(1743), + [sym__open_tag_html_block] = ACTIONS(1743), + [sym__open_tag_html_block_newline] = ACTIONS(1743), + [sym__closing_tag_html_block] = ACTIONS(1743), + [sym__closing_tag_html_block_newline] = ACTIONS(1743), + [sym_backslash_escape] = ACTIONS(1743), + [sym_uri_autolink] = ACTIONS(1743), + [sym_email_autolink] = ACTIONS(1743), + [sym_entity_reference] = ACTIONS(1743), + [sym_numeric_character_reference] = ACTIONS(1743), + [sym__whitespace_ge_2] = ACTIONS(1743), + [aux_sym__whitespace_token1] = ACTIONS(1745), + [sym__word_no_digit] = ACTIONS(1743), + [sym__digits] = ACTIONS(1743), + [aux_sym__newline_token1] = ACTIONS(1743), + [sym__block_close] = ACTIONS(1743), + [sym__block_quote_start] = ACTIONS(1743), + [sym__indented_chunk_start] = ACTIONS(1743), + [sym_atx_h1_marker] = ACTIONS(1743), + [sym_atx_h2_marker] = ACTIONS(1743), + [sym_atx_h3_marker] = ACTIONS(1743), + [sym_atx_h4_marker] = ACTIONS(1743), + [sym_atx_h5_marker] = ACTIONS(1743), + [sym_atx_h6_marker] = ACTIONS(1743), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1743), + [sym__thematic_break] = ACTIONS(1743), + [sym__list_marker_minus] = ACTIONS(1743), + [sym__list_marker_plus] = ACTIONS(1743), + [sym__list_marker_star] = ACTIONS(1743), + [sym__list_marker_parenthesis] = ACTIONS(1743), + [sym__list_marker_dot] = ACTIONS(1743), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1743), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1743), + [sym__fenced_code_block_start_backtick] = ACTIONS(1743), + [sym__fenced_code_block_start_tilde] = ACTIONS(1743), + [sym__blank_line_start] = ACTIONS(1743), + [sym__code_span_start] = ACTIONS(1743), + [sym__emphasis_open_star] = ACTIONS(1743), + [sym__emphasis_open_underscore] = ACTIONS(1743), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [aux_sym__html_block_1_token1] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_POUND] = ACTIONS(2056), - [anon_sym_DOLLAR] = ACTIONS(2056), - [anon_sym_PERCENT] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(2056), - [anon_sym_COMMA] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2056), - [anon_sym_DOT] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2056), - [anon_sym_COLON] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_EQ] = ACTIONS(2056), - [anon_sym_GT] = ACTIONS(2056), - [anon_sym_QMARK] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_BSLASH] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym__] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2058), - [anon_sym_LT_QMARK] = ACTIONS(2058), - [aux_sym__html_block_4_token1] = ACTIONS(2058), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2056), - [aux_sym__html_block_6_token1] = ACTIONS(2058), - [aux_sym__html_block_6_token2] = ACTIONS(2056), - [sym__open_tag_html_block] = ACTIONS(2056), - [sym__open_tag_html_block_newline] = ACTIONS(2056), - [sym__closing_tag_html_block] = ACTIONS(2056), - [sym__closing_tag_html_block_newline] = ACTIONS(2056), - [sym_backslash_escape] = ACTIONS(2056), - [sym_uri_autolink] = ACTIONS(2056), - [sym_email_autolink] = ACTIONS(2056), - [sym_entity_reference] = ACTIONS(2056), - [sym_numeric_character_reference] = ACTIONS(2056), - [sym__whitespace_ge_2] = ACTIONS(2056), - [aux_sym__whitespace_token1] = ACTIONS(2058), - [sym__word_no_digit] = ACTIONS(2056), - [sym__digits] = ACTIONS(2056), - [aux_sym__newline_token1] = ACTIONS(2056), - [sym__block_quote_start] = ACTIONS(2056), - [sym__indented_chunk_start] = ACTIONS(2056), - [sym_atx_h1_marker] = ACTIONS(2056), - [sym_atx_h2_marker] = ACTIONS(2056), - [sym_atx_h3_marker] = ACTIONS(2056), - [sym_atx_h4_marker] = ACTIONS(2056), - [sym_atx_h5_marker] = ACTIONS(2056), - [sym_atx_h6_marker] = ACTIONS(2056), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2056), - [sym__thematic_break] = ACTIONS(2056), - [sym__list_marker_minus] = ACTIONS(2056), - [sym__list_marker_plus] = ACTIONS(2056), - [sym__list_marker_star] = ACTIONS(2056), - [sym__list_marker_parenthesis] = ACTIONS(2056), - [sym__list_marker_dot] = ACTIONS(2056), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2056), - [sym__fenced_code_block_start_backtick] = ACTIONS(2056), - [sym__fenced_code_block_start_tilde] = ACTIONS(2056), - [sym__blank_line_start] = ACTIONS(2056), - [sym__code_span_start] = ACTIONS(2056), - [sym__emphasis_open_star] = ACTIONS(2056), - [sym__emphasis_open_underscore] = ACTIONS(2056), + [aux_sym__html_block_1_token1] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_EQ] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_BSLASH] = ACTIONS(2141), + [anon_sym_RBRACK] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym__] = ACTIONS(2139), + [anon_sym_BQUOTE] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2141), + [anon_sym_LT_QMARK] = ACTIONS(2141), + [aux_sym__html_block_4_token1] = ACTIONS(2141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2139), + [aux_sym__html_block_6_token1] = ACTIONS(2141), + [aux_sym__html_block_6_token2] = ACTIONS(2139), + [sym__open_tag_html_block] = ACTIONS(2139), + [sym__open_tag_html_block_newline] = ACTIONS(2139), + [sym__closing_tag_html_block] = ACTIONS(2139), + [sym__closing_tag_html_block_newline] = ACTIONS(2139), + [sym_backslash_escape] = ACTIONS(2139), + [sym_uri_autolink] = ACTIONS(2139), + [sym_email_autolink] = ACTIONS(2139), + [sym_entity_reference] = ACTIONS(2139), + [sym_numeric_character_reference] = ACTIONS(2139), + [sym__whitespace_ge_2] = ACTIONS(2139), + [aux_sym__whitespace_token1] = ACTIONS(2141), + [sym__word_no_digit] = ACTIONS(2139), + [sym__digits] = ACTIONS(2139), + [aux_sym__newline_token1] = ACTIONS(2139), + [sym__block_close] = ACTIONS(2139), + [sym__block_quote_start] = ACTIONS(2139), + [sym__indented_chunk_start] = ACTIONS(2139), + [sym_atx_h1_marker] = ACTIONS(2139), + [sym_atx_h2_marker] = ACTIONS(2139), + [sym_atx_h3_marker] = ACTIONS(2139), + [sym_atx_h4_marker] = ACTIONS(2139), + [sym_atx_h5_marker] = ACTIONS(2139), + [sym_atx_h6_marker] = ACTIONS(2139), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2139), + [sym__thematic_break] = ACTIONS(2139), + [sym__list_marker_minus] = ACTIONS(2139), + [sym__list_marker_plus] = ACTIONS(2139), + [sym__list_marker_star] = ACTIONS(2139), + [sym__list_marker_parenthesis] = ACTIONS(2139), + [sym__list_marker_dot] = ACTIONS(2139), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2139), + [sym__fenced_code_block_start_backtick] = ACTIONS(2139), + [sym__fenced_code_block_start_tilde] = ACTIONS(2139), + [sym__blank_line_start] = ACTIONS(2139), + [sym__code_span_start] = ACTIONS(2139), + [sym__emphasis_open_star] = ACTIONS(2139), + [sym__emphasis_open_underscore] = ACTIONS(2139), }, [403] = { - [aux_sym__html_block_1_token1] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(2060), - [anon_sym_DOLLAR] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_COLON] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_QMARK] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_BSLASH] = ACTIONS(2062), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym__] = ACTIONS(2060), - [anon_sym_BQUOTE] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2062), - [anon_sym_LT_QMARK] = ACTIONS(2062), - [aux_sym__html_block_4_token1] = ACTIONS(2062), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2060), - [aux_sym__html_block_6_token1] = ACTIONS(2062), - [aux_sym__html_block_6_token2] = ACTIONS(2060), - [sym__open_tag_html_block] = ACTIONS(2060), - [sym__open_tag_html_block_newline] = ACTIONS(2060), - [sym__closing_tag_html_block] = ACTIONS(2060), - [sym__closing_tag_html_block_newline] = ACTIONS(2060), - [sym_backslash_escape] = ACTIONS(2060), - [sym_uri_autolink] = ACTIONS(2060), - [sym_email_autolink] = ACTIONS(2060), - [sym_entity_reference] = ACTIONS(2060), - [sym_numeric_character_reference] = ACTIONS(2060), - [sym__whitespace_ge_2] = ACTIONS(2060), - [aux_sym__whitespace_token1] = ACTIONS(2062), - [sym__word_no_digit] = ACTIONS(2060), - [sym__digits] = ACTIONS(2060), - [aux_sym__newline_token1] = ACTIONS(2060), - [sym__block_close] = ACTIONS(2060), - [sym__block_quote_start] = ACTIONS(2060), - [sym__indented_chunk_start] = ACTIONS(2060), - [sym_atx_h1_marker] = ACTIONS(2060), - [sym_atx_h2_marker] = ACTIONS(2060), - [sym_atx_h3_marker] = ACTIONS(2060), - [sym_atx_h4_marker] = ACTIONS(2060), - [sym_atx_h5_marker] = ACTIONS(2060), - [sym_atx_h6_marker] = ACTIONS(2060), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2060), - [sym__thematic_break] = ACTIONS(2060), - [sym__list_marker_minus] = ACTIONS(2060), - [sym__list_marker_plus] = ACTIONS(2060), - [sym__list_marker_star] = ACTIONS(2060), - [sym__list_marker_parenthesis] = ACTIONS(2060), - [sym__list_marker_dot] = ACTIONS(2060), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2060), - [sym__fenced_code_block_start_backtick] = ACTIONS(2060), - [sym__fenced_code_block_start_tilde] = ACTIONS(2060), - [sym__blank_line_start] = ACTIONS(2060), - [sym__code_span_start] = ACTIONS(2060), - [sym__emphasis_open_star] = ACTIONS(2060), - [sym__emphasis_open_underscore] = ACTIONS(2060), + [aux_sym__html_block_1_token1] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_COMMA] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_COLON] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_EQ] = ACTIONS(2143), + [anon_sym_GT] = ACTIONS(2143), + [anon_sym_QMARK] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_BSLASH] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2143), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym__] = ACTIONS(2143), + [anon_sym_BQUOTE] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2145), + [anon_sym_LT_QMARK] = ACTIONS(2145), + [aux_sym__html_block_4_token1] = ACTIONS(2145), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2143), + [aux_sym__html_block_6_token1] = ACTIONS(2145), + [aux_sym__html_block_6_token2] = ACTIONS(2143), + [sym__open_tag_html_block] = ACTIONS(2143), + [sym__open_tag_html_block_newline] = ACTIONS(2143), + [sym__closing_tag_html_block] = ACTIONS(2143), + [sym__closing_tag_html_block_newline] = ACTIONS(2143), + [sym_backslash_escape] = ACTIONS(2143), + [sym_uri_autolink] = ACTIONS(2143), + [sym_email_autolink] = ACTIONS(2143), + [sym_entity_reference] = ACTIONS(2143), + [sym_numeric_character_reference] = ACTIONS(2143), + [sym__whitespace_ge_2] = ACTIONS(2143), + [aux_sym__whitespace_token1] = ACTIONS(2145), + [sym__word_no_digit] = ACTIONS(2143), + [sym__digits] = ACTIONS(2143), + [aux_sym__newline_token1] = ACTIONS(2143), + [sym__block_close] = ACTIONS(2143), + [sym__block_quote_start] = ACTIONS(2143), + [sym__indented_chunk_start] = ACTIONS(2143), + [sym_atx_h1_marker] = ACTIONS(2143), + [sym_atx_h2_marker] = ACTIONS(2143), + [sym_atx_h3_marker] = ACTIONS(2143), + [sym_atx_h4_marker] = ACTIONS(2143), + [sym_atx_h5_marker] = ACTIONS(2143), + [sym_atx_h6_marker] = ACTIONS(2143), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2143), + [sym__thematic_break] = ACTIONS(2143), + [sym__list_marker_minus] = ACTIONS(2143), + [sym__list_marker_plus] = ACTIONS(2143), + [sym__list_marker_star] = ACTIONS(2143), + [sym__list_marker_parenthesis] = ACTIONS(2143), + [sym__list_marker_dot] = ACTIONS(2143), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2143), + [sym__fenced_code_block_start_backtick] = ACTIONS(2143), + [sym__fenced_code_block_start_tilde] = ACTIONS(2143), + [sym__blank_line_start] = ACTIONS(2143), + [sym__code_span_start] = ACTIONS(2143), + [sym__emphasis_open_star] = ACTIONS(2143), + [sym__emphasis_open_underscore] = ACTIONS(2143), }, [404] = { - [aux_sym__html_block_1_token1] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_COMMA] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_DOT] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1970), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_QMARK] = ACTIONS(1970), - [anon_sym_AT] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BSLASH] = ACTIONS(1972), - [anon_sym_RBRACK] = ACTIONS(1970), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym__] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1972), - [anon_sym_LT_QMARK] = ACTIONS(1972), - [aux_sym__html_block_4_token1] = ACTIONS(1972), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1970), - [aux_sym__html_block_6_token1] = ACTIONS(1972), - [aux_sym__html_block_6_token2] = ACTIONS(1970), - [sym__open_tag_html_block] = ACTIONS(1970), - [sym__open_tag_html_block_newline] = ACTIONS(1970), - [sym__closing_tag_html_block] = ACTIONS(1970), - [sym__closing_tag_html_block_newline] = ACTIONS(1970), - [sym_backslash_escape] = ACTIONS(1970), - [sym_uri_autolink] = ACTIONS(1970), - [sym_email_autolink] = ACTIONS(1970), - [sym_entity_reference] = ACTIONS(1970), - [sym_numeric_character_reference] = ACTIONS(1970), - [sym__whitespace_ge_2] = ACTIONS(1970), - [aux_sym__whitespace_token1] = ACTIONS(1972), - [sym__word_no_digit] = ACTIONS(1970), - [sym__digits] = ACTIONS(1970), - [aux_sym__newline_token1] = ACTIONS(1970), - [sym__block_close] = ACTIONS(1970), - [sym__block_quote_start] = ACTIONS(1970), - [sym__indented_chunk_start] = ACTIONS(1970), - [sym_atx_h1_marker] = ACTIONS(1970), - [sym_atx_h2_marker] = ACTIONS(1970), - [sym_atx_h3_marker] = ACTIONS(1970), - [sym_atx_h4_marker] = ACTIONS(1970), - [sym_atx_h5_marker] = ACTIONS(1970), - [sym_atx_h6_marker] = ACTIONS(1970), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1970), - [sym__thematic_break] = ACTIONS(1970), - [sym__list_marker_minus] = ACTIONS(1970), - [sym__list_marker_plus] = ACTIONS(1970), - [sym__list_marker_star] = ACTIONS(1970), - [sym__list_marker_parenthesis] = ACTIONS(1970), - [sym__list_marker_dot] = ACTIONS(1970), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1970), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1970), - [sym__fenced_code_block_start_backtick] = ACTIONS(1970), - [sym__fenced_code_block_start_tilde] = ACTIONS(1970), - [sym__blank_line_start] = ACTIONS(1970), - [sym__code_span_start] = ACTIONS(1970), - [sym__emphasis_open_star] = ACTIONS(1970), - [sym__emphasis_open_underscore] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(1913), + [aux_sym__html_block_1_token1] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_DOLLAR] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_COLON] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(1913), + [anon_sym_AT] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_BSLASH] = ACTIONS(1915), + [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym__] = ACTIONS(1913), + [anon_sym_BQUOTE] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1915), + [anon_sym_LT_QMARK] = ACTIONS(1915), + [aux_sym__html_block_4_token1] = ACTIONS(1915), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1913), + [aux_sym__html_block_6_token1] = ACTIONS(1915), + [aux_sym__html_block_6_token2] = ACTIONS(1913), + [sym__open_tag_html_block] = ACTIONS(1913), + [sym__open_tag_html_block_newline] = ACTIONS(1913), + [sym__closing_tag_html_block] = ACTIONS(1913), + [sym__closing_tag_html_block_newline] = ACTIONS(1913), + [sym_backslash_escape] = ACTIONS(1913), + [sym_uri_autolink] = ACTIONS(1913), + [sym_email_autolink] = ACTIONS(1913), + [sym_entity_reference] = ACTIONS(1913), + [sym_numeric_character_reference] = ACTIONS(1913), + [sym__whitespace_ge_2] = ACTIONS(1913), + [aux_sym__whitespace_token1] = ACTIONS(1915), + [sym__word_no_digit] = ACTIONS(1913), + [sym__digits] = ACTIONS(1913), + [aux_sym__newline_token1] = ACTIONS(1913), + [sym__block_quote_start] = ACTIONS(1913), + [sym__indented_chunk_start] = ACTIONS(1913), + [sym_atx_h1_marker] = ACTIONS(1913), + [sym_atx_h2_marker] = ACTIONS(1913), + [sym_atx_h3_marker] = ACTIONS(1913), + [sym_atx_h4_marker] = ACTIONS(1913), + [sym_atx_h5_marker] = ACTIONS(1913), + [sym_atx_h6_marker] = ACTIONS(1913), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1913), + [sym__thematic_break] = ACTIONS(1913), + [sym__list_marker_minus] = ACTIONS(1913), + [sym__list_marker_plus] = ACTIONS(1913), + [sym__list_marker_star] = ACTIONS(1913), + [sym__list_marker_parenthesis] = ACTIONS(1913), + [sym__list_marker_dot] = ACTIONS(1913), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1913), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1913), + [sym__fenced_code_block_start_backtick] = ACTIONS(1913), + [sym__fenced_code_block_start_tilde] = ACTIONS(1913), + [sym__blank_line_start] = ACTIONS(1913), + [sym__code_span_start] = ACTIONS(1913), + [sym__emphasis_open_star] = ACTIONS(1913), + [sym__emphasis_open_underscore] = ACTIONS(1913), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [aux_sym__html_block_1_token1] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_SLASH] = ACTIONS(1842), - [anon_sym_COLON] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1842), - [anon_sym_QMARK] = ACTIONS(1842), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH] = ACTIONS(1844), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_CARET] = ACTIONS(1842), - [anon_sym__] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1844), - [anon_sym_LT_QMARK] = ACTIONS(1844), - [aux_sym__html_block_4_token1] = ACTIONS(1844), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1842), - [aux_sym__html_block_6_token1] = ACTIONS(1844), - [aux_sym__html_block_6_token2] = ACTIONS(1842), - [sym__open_tag_html_block] = ACTIONS(1842), - [sym__open_tag_html_block_newline] = ACTIONS(1842), - [sym__closing_tag_html_block] = ACTIONS(1842), - [sym__closing_tag_html_block_newline] = ACTIONS(1842), - [sym_backslash_escape] = ACTIONS(1842), - [sym_uri_autolink] = ACTIONS(1842), - [sym_email_autolink] = ACTIONS(1842), - [sym_entity_reference] = ACTIONS(1842), - [sym_numeric_character_reference] = ACTIONS(1842), - [sym__whitespace_ge_2] = ACTIONS(1842), - [aux_sym__whitespace_token1] = ACTIONS(1844), - [sym__word_no_digit] = ACTIONS(1842), - [sym__digits] = ACTIONS(1842), - [aux_sym__newline_token1] = ACTIONS(1842), - [sym__block_quote_start] = ACTIONS(1842), - [sym__indented_chunk_start] = ACTIONS(1842), - [sym_atx_h1_marker] = ACTIONS(1842), - [sym_atx_h2_marker] = ACTIONS(1842), - [sym_atx_h3_marker] = ACTIONS(1842), - [sym_atx_h4_marker] = ACTIONS(1842), - [sym_atx_h5_marker] = ACTIONS(1842), - [sym_atx_h6_marker] = ACTIONS(1842), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1842), - [sym__thematic_break] = ACTIONS(1842), - [sym__list_marker_minus] = ACTIONS(1842), - [sym__list_marker_plus] = ACTIONS(1842), - [sym__list_marker_star] = ACTIONS(1842), - [sym__list_marker_parenthesis] = ACTIONS(1842), - [sym__list_marker_dot] = ACTIONS(1842), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1842), - [sym__fenced_code_block_start_backtick] = ACTIONS(1842), - [sym__fenced_code_block_start_tilde] = ACTIONS(1842), - [sym__blank_line_start] = ACTIONS(1842), - [sym__code_span_start] = ACTIONS(1842), - [sym__emphasis_open_star] = ACTIONS(1842), - [sym__emphasis_open_underscore] = ACTIONS(1842), + [sym__block_interrupt_paragraph] = STATE(1581), + [sym__blank_line] = STATE(1581), + [sym_block_quote] = STATE(1581), + [sym_atx_heading] = STATE(1581), + [sym_setext_h1_underline] = STATE(1581), + [sym_setext_h2_underline] = STATE(1581), + [sym_thematic_break] = STATE(1581), + [sym_fenced_code_block] = STATE(1581), + [sym__html_block_1] = STATE(1581), + [sym__html_block_2] = STATE(1581), + [sym__html_block_3] = STATE(1581), + [sym__html_block_4] = STATE(1581), + [sym__html_block_5] = STATE(1581), + [sym__html_block_6] = STATE(1581), + [aux_sym__html_block_1_token1] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1476), + [anon_sym_LT_QMARK] = ACTIONS(1478), + [aux_sym__html_block_4_token1] = ACTIONS(1480), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1482), + [aux_sym__html_block_6_token1] = ACTIONS(1484), + [aux_sym__html_block_6_token2] = ACTIONS(1486), + [sym_backslash_escape] = ACTIONS(381), + [sym_entity_reference] = ACTIONS(381), + [sym_numeric_character_reference] = ACTIONS(381), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__setext_h1_underline] = ACTIONS(1492), + [sym__setext_h2_underline] = ACTIONS(1494), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2035), + [sym__thematic_break] = ACTIONS(1498), + [sym__list_marker_minus] = ACTIONS(1685), + [sym__list_marker_plus] = ACTIONS(1685), + [sym__list_marker_star] = ACTIONS(1685), + [sym__list_marker_parenthesis] = ACTIONS(1685), + [sym__list_marker_dot] = ACTIONS(1685), + [sym__fenced_code_block_start_backtick] = ACTIONS(1502), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1506), }, [406] = { - [aux_sym__html_block_1_token1] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_DOLLAR] = ACTIONS(1966), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_DOT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1966), - [anon_sym_COLON] = ACTIONS(1966), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1966), - [anon_sym_QMARK] = ACTIONS(1966), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_BSLASH] = ACTIONS(1968), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_CARET] = ACTIONS(1966), - [anon_sym__] = ACTIONS(1966), - [anon_sym_BQUOTE] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1968), - [anon_sym_LT_QMARK] = ACTIONS(1968), - [aux_sym__html_block_4_token1] = ACTIONS(1968), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1966), - [aux_sym__html_block_6_token1] = ACTIONS(1968), - [aux_sym__html_block_6_token2] = ACTIONS(1966), - [sym__open_tag_html_block] = ACTIONS(1966), - [sym__open_tag_html_block_newline] = ACTIONS(1966), - [sym__closing_tag_html_block] = ACTIONS(1966), - [sym__closing_tag_html_block_newline] = ACTIONS(1966), - [sym_backslash_escape] = ACTIONS(1966), - [sym_uri_autolink] = ACTIONS(1966), - [sym_email_autolink] = ACTIONS(1966), - [sym_entity_reference] = ACTIONS(1966), - [sym_numeric_character_reference] = ACTIONS(1966), - [sym__whitespace_ge_2] = ACTIONS(1966), - [aux_sym__whitespace_token1] = ACTIONS(1968), - [sym__word_no_digit] = ACTIONS(1966), - [sym__digits] = ACTIONS(1966), - [aux_sym__newline_token1] = ACTIONS(1966), - [sym__block_close] = ACTIONS(1966), - [sym__block_quote_start] = ACTIONS(1966), - [sym__indented_chunk_start] = ACTIONS(1966), - [sym_atx_h1_marker] = ACTIONS(1966), - [sym_atx_h2_marker] = ACTIONS(1966), - [sym_atx_h3_marker] = ACTIONS(1966), - [sym_atx_h4_marker] = ACTIONS(1966), - [sym_atx_h5_marker] = ACTIONS(1966), - [sym_atx_h6_marker] = ACTIONS(1966), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1966), - [sym__thematic_break] = ACTIONS(1966), - [sym__list_marker_minus] = ACTIONS(1966), - [sym__list_marker_plus] = ACTIONS(1966), - [sym__list_marker_star] = ACTIONS(1966), - [sym__list_marker_parenthesis] = ACTIONS(1966), - [sym__list_marker_dot] = ACTIONS(1966), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1966), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1966), - [sym__fenced_code_block_start_backtick] = ACTIONS(1966), - [sym__fenced_code_block_start_tilde] = ACTIONS(1966), - [sym__blank_line_start] = ACTIONS(1966), - [sym__code_span_start] = ACTIONS(1966), - [sym__emphasis_open_star] = ACTIONS(1966), - [sym__emphasis_open_underscore] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(2143), + [aux_sym__html_block_1_token1] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_DOLLAR] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_COMMA] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_DOT] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_COLON] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_EQ] = ACTIONS(2143), + [anon_sym_GT] = ACTIONS(2143), + [anon_sym_QMARK] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_BSLASH] = ACTIONS(2145), + [anon_sym_RBRACK] = ACTIONS(2143), + [anon_sym_CARET] = ACTIONS(2143), + [anon_sym__] = ACTIONS(2143), + [anon_sym_BQUOTE] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2145), + [anon_sym_LT_QMARK] = ACTIONS(2145), + [aux_sym__html_block_4_token1] = ACTIONS(2145), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2143), + [aux_sym__html_block_6_token1] = ACTIONS(2145), + [aux_sym__html_block_6_token2] = ACTIONS(2143), + [sym__open_tag_html_block] = ACTIONS(2143), + [sym__open_tag_html_block_newline] = ACTIONS(2143), + [sym__closing_tag_html_block] = ACTIONS(2143), + [sym__closing_tag_html_block_newline] = ACTIONS(2143), + [sym_backslash_escape] = ACTIONS(2143), + [sym_uri_autolink] = ACTIONS(2143), + [sym_email_autolink] = ACTIONS(2143), + [sym_entity_reference] = ACTIONS(2143), + [sym_numeric_character_reference] = ACTIONS(2143), + [sym__whitespace_ge_2] = ACTIONS(2143), + [aux_sym__whitespace_token1] = ACTIONS(2145), + [sym__word_no_digit] = ACTIONS(2143), + [sym__digits] = ACTIONS(2143), + [aux_sym__newline_token1] = ACTIONS(2143), + [sym__block_quote_start] = ACTIONS(2143), + [sym__indented_chunk_start] = ACTIONS(2143), + [sym_atx_h1_marker] = ACTIONS(2143), + [sym_atx_h2_marker] = ACTIONS(2143), + [sym_atx_h3_marker] = ACTIONS(2143), + [sym_atx_h4_marker] = ACTIONS(2143), + [sym_atx_h5_marker] = ACTIONS(2143), + [sym_atx_h6_marker] = ACTIONS(2143), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2143), + [sym__thematic_break] = ACTIONS(2143), + [sym__list_marker_minus] = ACTIONS(2143), + [sym__list_marker_plus] = ACTIONS(2143), + [sym__list_marker_star] = ACTIONS(2143), + [sym__list_marker_parenthesis] = ACTIONS(2143), + [sym__list_marker_dot] = ACTIONS(2143), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2143), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2143), + [sym__fenced_code_block_start_backtick] = ACTIONS(2143), + [sym__fenced_code_block_start_tilde] = ACTIONS(2143), + [sym__blank_line_start] = ACTIONS(2143), + [sym__code_span_start] = ACTIONS(2143), + [sym__emphasis_open_star] = ACTIONS(2143), + [sym__emphasis_open_underscore] = ACTIONS(2143), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(2010), - [aux_sym__html_block_1_token1] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2010), - [anon_sym_PERCENT] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_RPAREN] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_COMMA] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_DOT] = ACTIONS(2010), - [anon_sym_SLASH] = ACTIONS(2010), - [anon_sym_COLON] = ACTIONS(2010), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(2010), - [anon_sym_GT] = ACTIONS(2010), - [anon_sym_QMARK] = ACTIONS(2010), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_BSLASH] = ACTIONS(2012), - [anon_sym_RBRACK] = ACTIONS(2010), - [anon_sym_CARET] = ACTIONS(2010), - [anon_sym__] = ACTIONS(2010), - [anon_sym_BQUOTE] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2012), - [anon_sym_LT_QMARK] = ACTIONS(2012), - [aux_sym__html_block_4_token1] = ACTIONS(2012), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2010), - [aux_sym__html_block_6_token1] = ACTIONS(2012), - [aux_sym__html_block_6_token2] = ACTIONS(2010), - [sym__open_tag_html_block] = ACTIONS(2010), - [sym__open_tag_html_block_newline] = ACTIONS(2010), - [sym__closing_tag_html_block] = ACTIONS(2010), - [sym__closing_tag_html_block_newline] = ACTIONS(2010), - [sym_backslash_escape] = ACTIONS(2010), - [sym_uri_autolink] = ACTIONS(2010), - [sym_email_autolink] = ACTIONS(2010), - [sym_entity_reference] = ACTIONS(2010), - [sym_numeric_character_reference] = ACTIONS(2010), - [sym__whitespace_ge_2] = ACTIONS(2010), - [aux_sym__whitespace_token1] = ACTIONS(2012), - [sym__word_no_digit] = ACTIONS(2010), - [sym__digits] = ACTIONS(2010), - [aux_sym__newline_token1] = ACTIONS(2010), - [sym__block_quote_start] = ACTIONS(2010), - [sym__indented_chunk_start] = ACTIONS(2010), - [sym_atx_h1_marker] = ACTIONS(2010), - [sym_atx_h2_marker] = ACTIONS(2010), - [sym_atx_h3_marker] = ACTIONS(2010), - [sym_atx_h4_marker] = ACTIONS(2010), - [sym_atx_h5_marker] = ACTIONS(2010), - [sym_atx_h6_marker] = ACTIONS(2010), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2010), - [sym__thematic_break] = ACTIONS(2010), - [sym__list_marker_minus] = ACTIONS(2010), - [sym__list_marker_plus] = ACTIONS(2010), - [sym__list_marker_star] = ACTIONS(2010), - [sym__list_marker_parenthesis] = ACTIONS(2010), - [sym__list_marker_dot] = ACTIONS(2010), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2010), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2010), - [sym__fenced_code_block_start_backtick] = ACTIONS(2010), - [sym__fenced_code_block_start_tilde] = ACTIONS(2010), - [sym__blank_line_start] = ACTIONS(2010), - [sym__code_span_start] = ACTIONS(2010), - [sym__emphasis_open_star] = ACTIONS(2010), - [sym__emphasis_open_underscore] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(2147), + [aux_sym__html_block_1_token1] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_BSLASH] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym__] = ACTIONS(2147), + [anon_sym_BQUOTE] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2149), + [anon_sym_LT_QMARK] = ACTIONS(2149), + [aux_sym__html_block_4_token1] = ACTIONS(2149), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2147), + [aux_sym__html_block_6_token1] = ACTIONS(2149), + [aux_sym__html_block_6_token2] = ACTIONS(2147), + [sym__open_tag_html_block] = ACTIONS(2147), + [sym__open_tag_html_block_newline] = ACTIONS(2147), + [sym__closing_tag_html_block] = ACTIONS(2147), + [sym__closing_tag_html_block_newline] = ACTIONS(2147), + [sym_backslash_escape] = ACTIONS(2147), + [sym_uri_autolink] = ACTIONS(2147), + [sym_email_autolink] = ACTIONS(2147), + [sym_entity_reference] = ACTIONS(2147), + [sym_numeric_character_reference] = ACTIONS(2147), + [sym__whitespace_ge_2] = ACTIONS(2147), + [aux_sym__whitespace_token1] = ACTIONS(2149), + [sym__word_no_digit] = ACTIONS(2147), + [sym__digits] = ACTIONS(2147), + [aux_sym__newline_token1] = ACTIONS(2147), + [sym__block_quote_start] = ACTIONS(2147), + [sym__indented_chunk_start] = ACTIONS(2147), + [sym_atx_h1_marker] = ACTIONS(2147), + [sym_atx_h2_marker] = ACTIONS(2147), + [sym_atx_h3_marker] = ACTIONS(2147), + [sym_atx_h4_marker] = ACTIONS(2147), + [sym_atx_h5_marker] = ACTIONS(2147), + [sym_atx_h6_marker] = ACTIONS(2147), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2147), + [sym__thematic_break] = ACTIONS(2147), + [sym__list_marker_minus] = ACTIONS(2147), + [sym__list_marker_plus] = ACTIONS(2147), + [sym__list_marker_star] = ACTIONS(2147), + [sym__list_marker_parenthesis] = ACTIONS(2147), + [sym__list_marker_dot] = ACTIONS(2147), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2147), + [sym__fenced_code_block_start_backtick] = ACTIONS(2147), + [sym__fenced_code_block_start_tilde] = ACTIONS(2147), + [sym__blank_line_start] = ACTIONS(2147), + [sym__code_span_start] = ACTIONS(2147), + [sym__emphasis_open_star] = ACTIONS(2147), + [sym__emphasis_open_underscore] = ACTIONS(2147), }, [408] = { - [aux_sym__html_block_1_token1] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2064), - [anon_sym_DOT] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2064), - [anon_sym_AT] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_BSLASH] = ACTIONS(2066), - [anon_sym_RBRACK] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2064), - [anon_sym__] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2066), - [anon_sym_LT_QMARK] = ACTIONS(2066), - [aux_sym__html_block_4_token1] = ACTIONS(2066), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2064), - [aux_sym__html_block_6_token1] = ACTIONS(2066), - [aux_sym__html_block_6_token2] = ACTIONS(2064), - [sym__open_tag_html_block] = ACTIONS(2064), - [sym__open_tag_html_block_newline] = ACTIONS(2064), - [sym__closing_tag_html_block] = ACTIONS(2064), - [sym__closing_tag_html_block_newline] = ACTIONS(2064), - [sym_backslash_escape] = ACTIONS(2064), - [sym_uri_autolink] = ACTIONS(2064), - [sym_email_autolink] = ACTIONS(2064), - [sym_entity_reference] = ACTIONS(2064), - [sym_numeric_character_reference] = ACTIONS(2064), - [sym__whitespace_ge_2] = ACTIONS(2064), - [aux_sym__whitespace_token1] = ACTIONS(2066), - [sym__word_no_digit] = ACTIONS(2064), - [sym__digits] = ACTIONS(2064), - [aux_sym__newline_token1] = ACTIONS(2064), - [sym__block_close] = ACTIONS(2064), - [sym__block_quote_start] = ACTIONS(2064), - [sym__indented_chunk_start] = ACTIONS(2064), - [sym_atx_h1_marker] = ACTIONS(2064), - [sym_atx_h2_marker] = ACTIONS(2064), - [sym_atx_h3_marker] = ACTIONS(2064), - [sym_atx_h4_marker] = ACTIONS(2064), - [sym_atx_h5_marker] = ACTIONS(2064), - [sym_atx_h6_marker] = ACTIONS(2064), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2064), - [sym__thematic_break] = ACTIONS(2064), - [sym__list_marker_minus] = ACTIONS(2064), - [sym__list_marker_plus] = ACTIONS(2064), - [sym__list_marker_star] = ACTIONS(2064), - [sym__list_marker_parenthesis] = ACTIONS(2064), - [sym__list_marker_dot] = ACTIONS(2064), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2064), - [sym__fenced_code_block_start_backtick] = ACTIONS(2064), - [sym__fenced_code_block_start_tilde] = ACTIONS(2064), - [sym__blank_line_start] = ACTIONS(2064), - [sym__code_span_start] = ACTIONS(2064), - [sym__emphasis_open_star] = ACTIONS(2064), - [sym__emphasis_open_underscore] = ACTIONS(2064), + [ts_builtin_sym_end] = ACTIONS(2151), + [aux_sym__html_block_1_token1] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_RPAREN] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_COLON] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2151), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_BSLASH] = ACTIONS(2153), + [anon_sym_RBRACK] = ACTIONS(2151), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym__] = ACTIONS(2151), + [anon_sym_BQUOTE] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2153), + [anon_sym_LT_QMARK] = ACTIONS(2153), + [aux_sym__html_block_4_token1] = ACTIONS(2153), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), + [aux_sym__html_block_6_token1] = ACTIONS(2153), + [aux_sym__html_block_6_token2] = ACTIONS(2151), + [sym__open_tag_html_block] = ACTIONS(2151), + [sym__open_tag_html_block_newline] = ACTIONS(2151), + [sym__closing_tag_html_block] = ACTIONS(2151), + [sym__closing_tag_html_block_newline] = ACTIONS(2151), + [sym_backslash_escape] = ACTIONS(2151), + [sym_uri_autolink] = ACTIONS(2151), + [sym_email_autolink] = ACTIONS(2151), + [sym_entity_reference] = ACTIONS(2151), + [sym_numeric_character_reference] = ACTIONS(2151), + [sym__whitespace_ge_2] = ACTIONS(2151), + [aux_sym__whitespace_token1] = ACTIONS(2153), + [sym__word_no_digit] = ACTIONS(2151), + [sym__digits] = ACTIONS(2151), + [aux_sym__newline_token1] = ACTIONS(2151), + [sym__block_quote_start] = ACTIONS(2151), + [sym__indented_chunk_start] = ACTIONS(2151), + [sym_atx_h1_marker] = ACTIONS(2151), + [sym_atx_h2_marker] = ACTIONS(2151), + [sym_atx_h3_marker] = ACTIONS(2151), + [sym_atx_h4_marker] = ACTIONS(2151), + [sym_atx_h5_marker] = ACTIONS(2151), + [sym_atx_h6_marker] = ACTIONS(2151), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2151), + [sym__thematic_break] = ACTIONS(2151), + [sym__list_marker_minus] = ACTIONS(2151), + [sym__list_marker_plus] = ACTIONS(2151), + [sym__list_marker_star] = ACTIONS(2151), + [sym__list_marker_parenthesis] = ACTIONS(2151), + [sym__list_marker_dot] = ACTIONS(2151), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2151), + [sym__fenced_code_block_start_backtick] = ACTIONS(2151), + [sym__fenced_code_block_start_tilde] = ACTIONS(2151), + [sym__blank_line_start] = ACTIONS(2151), + [sym__code_span_start] = ACTIONS(2151), + [sym__emphasis_open_star] = ACTIONS(2151), + [sym__emphasis_open_underscore] = ACTIONS(2151), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [aux_sym__html_block_1_token1] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_COMMA] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_SLASH] = ACTIONS(1850), - [anon_sym_COLON] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_GT] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_BSLASH] = ACTIONS(1852), - [anon_sym_RBRACK] = ACTIONS(1850), - [anon_sym_CARET] = ACTIONS(1850), - [anon_sym__] = ACTIONS(1850), - [anon_sym_BQUOTE] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1852), - [anon_sym_LT_QMARK] = ACTIONS(1852), - [aux_sym__html_block_4_token1] = ACTIONS(1852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1850), - [aux_sym__html_block_6_token1] = ACTIONS(1852), - [aux_sym__html_block_6_token2] = ACTIONS(1850), - [sym__open_tag_html_block] = ACTIONS(1850), - [sym__open_tag_html_block_newline] = ACTIONS(1850), - [sym__closing_tag_html_block] = ACTIONS(1850), - [sym__closing_tag_html_block_newline] = ACTIONS(1850), - [sym_backslash_escape] = ACTIONS(1850), - [sym_uri_autolink] = ACTIONS(1850), - [sym_email_autolink] = ACTIONS(1850), - [sym_entity_reference] = ACTIONS(1850), - [sym_numeric_character_reference] = ACTIONS(1850), - [sym__whitespace_ge_2] = ACTIONS(1850), - [aux_sym__whitespace_token1] = ACTIONS(1852), - [sym__word_no_digit] = ACTIONS(1850), - [sym__digits] = ACTIONS(1850), - [aux_sym__newline_token1] = ACTIONS(1850), - [sym__block_quote_start] = ACTIONS(1850), - [sym__indented_chunk_start] = ACTIONS(1850), - [sym_atx_h1_marker] = ACTIONS(1850), - [sym_atx_h2_marker] = ACTIONS(1850), - [sym_atx_h3_marker] = ACTIONS(1850), - [sym_atx_h4_marker] = ACTIONS(1850), - [sym_atx_h5_marker] = ACTIONS(1850), - [sym_atx_h6_marker] = ACTIONS(1850), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1850), - [sym__thematic_break] = ACTIONS(1850), - [sym__list_marker_minus] = ACTIONS(1850), - [sym__list_marker_plus] = ACTIONS(1850), - [sym__list_marker_star] = ACTIONS(1850), - [sym__list_marker_parenthesis] = ACTIONS(1850), - [sym__list_marker_dot] = ACTIONS(1850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1850), - [sym__fenced_code_block_start_backtick] = ACTIONS(1850), - [sym__fenced_code_block_start_tilde] = ACTIONS(1850), - [sym__blank_line_start] = ACTIONS(1850), - [sym__code_span_start] = ACTIONS(1850), - [sym__emphasis_open_star] = ACTIONS(1850), - [sym__emphasis_open_underscore] = ACTIONS(1850), + [sym__block_interrupt_paragraph] = STATE(1697), + [sym__blank_line] = STATE(1697), + [sym_block_quote] = STATE(1697), + [sym_atx_heading] = STATE(1697), + [sym_setext_h1_underline] = STATE(1697), + [sym_setext_h2_underline] = STATE(1697), + [sym_thematic_break] = STATE(1697), + [sym_fenced_code_block] = STATE(1697), + [sym__html_block_1] = STATE(1697), + [sym__html_block_2] = STATE(1697), + [sym__html_block_3] = STATE(1697), + [sym__html_block_4] = STATE(1697), + [sym__html_block_5] = STATE(1697), + [sym__html_block_6] = STATE(1697), + [aux_sym__html_block_1_token1] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1877), + [anon_sym_LT_QMARK] = ACTIONS(1879), + [aux_sym__html_block_4_token1] = ACTIONS(1881), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1883), + [aux_sym__html_block_6_token1] = ACTIONS(1885), + [aux_sym__html_block_6_token2] = ACTIONS(1887), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [aux_sym__newline_token1] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(1889), + [sym_atx_h1_marker] = ACTIONS(1891), + [sym_atx_h2_marker] = ACTIONS(1891), + [sym_atx_h3_marker] = ACTIONS(1891), + [sym_atx_h4_marker] = ACTIONS(1891), + [sym_atx_h5_marker] = ACTIONS(1891), + [sym_atx_h6_marker] = ACTIONS(1891), + [sym__setext_h1_underline] = ACTIONS(1893), + [sym__setext_h2_underline] = ACTIONS(1895), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1897), + [sym__thematic_break] = ACTIONS(1899), + [sym__list_marker_minus] = ACTIONS(2155), + [sym__list_marker_plus] = ACTIONS(2155), + [sym__list_marker_star] = ACTIONS(2155), + [sym__list_marker_parenthesis] = ACTIONS(2155), + [sym__list_marker_dot] = ACTIONS(2155), + [sym__fenced_code_block_start_backtick] = ACTIONS(1903), + [sym__fenced_code_block_start_tilde] = ACTIONS(1905), + [sym__blank_line_start] = ACTIONS(1907), + [sym__code_span_close] = ACTIONS(381), }, [410] = { - [aux_sym__html_block_1_token1] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_DOLLAR] = ACTIONS(2006), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_RPAREN] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_COMMA] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_DOT] = ACTIONS(2006), - [anon_sym_SLASH] = ACTIONS(2006), - [anon_sym_COLON] = ACTIONS(2006), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2006), - [anon_sym_GT] = ACTIONS(2006), - [anon_sym_QMARK] = ACTIONS(2006), - [anon_sym_AT] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_BSLASH] = ACTIONS(2008), - [anon_sym_RBRACK] = ACTIONS(2006), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym__] = ACTIONS(2006), - [anon_sym_BQUOTE] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2008), - [anon_sym_LT_QMARK] = ACTIONS(2008), - [aux_sym__html_block_4_token1] = ACTIONS(2008), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2006), - [aux_sym__html_block_6_token1] = ACTIONS(2008), - [aux_sym__html_block_6_token2] = ACTIONS(2006), - [sym__open_tag_html_block] = ACTIONS(2006), - [sym__open_tag_html_block_newline] = ACTIONS(2006), - [sym__closing_tag_html_block] = ACTIONS(2006), - [sym__closing_tag_html_block_newline] = ACTIONS(2006), - [sym_backslash_escape] = ACTIONS(2006), - [sym_uri_autolink] = ACTIONS(2006), - [sym_email_autolink] = ACTIONS(2006), - [sym_entity_reference] = ACTIONS(2006), - [sym_numeric_character_reference] = ACTIONS(2006), - [sym__whitespace_ge_2] = ACTIONS(2006), - [aux_sym__whitespace_token1] = ACTIONS(2008), - [sym__word_no_digit] = ACTIONS(2006), - [sym__digits] = ACTIONS(2006), - [aux_sym__newline_token1] = ACTIONS(2006), - [sym__block_close] = ACTIONS(2006), - [sym__block_quote_start] = ACTIONS(2006), - [sym__indented_chunk_start] = ACTIONS(2006), - [sym_atx_h1_marker] = ACTIONS(2006), - [sym_atx_h2_marker] = ACTIONS(2006), - [sym_atx_h3_marker] = ACTIONS(2006), - [sym_atx_h4_marker] = ACTIONS(2006), - [sym_atx_h5_marker] = ACTIONS(2006), - [sym_atx_h6_marker] = ACTIONS(2006), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2006), - [sym__thematic_break] = ACTIONS(2006), - [sym__list_marker_minus] = ACTIONS(2006), - [sym__list_marker_plus] = ACTIONS(2006), - [sym__list_marker_star] = ACTIONS(2006), - [sym__list_marker_parenthesis] = ACTIONS(2006), - [sym__list_marker_dot] = ACTIONS(2006), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2006), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2006), - [sym__fenced_code_block_start_backtick] = ACTIONS(2006), - [sym__fenced_code_block_start_tilde] = ACTIONS(2006), - [sym__blank_line_start] = ACTIONS(2006), - [sym__code_span_start] = ACTIONS(2006), - [sym__emphasis_open_star] = ACTIONS(2006), - [sym__emphasis_open_underscore] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(2157), + [aux_sym__html_block_1_token1] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_PERCENT] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_COMMA] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2157), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_GT] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_AT] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_BSLASH] = ACTIONS(2159), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_CARET] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_BQUOTE] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_TILDE] = ACTIONS(2157), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2159), + [anon_sym_LT_QMARK] = ACTIONS(2159), + [aux_sym__html_block_4_token1] = ACTIONS(2159), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2157), + [aux_sym__html_block_6_token1] = ACTIONS(2159), + [aux_sym__html_block_6_token2] = ACTIONS(2157), + [sym__open_tag_html_block] = ACTIONS(2157), + [sym__open_tag_html_block_newline] = ACTIONS(2157), + [sym__closing_tag_html_block] = ACTIONS(2157), + [sym__closing_tag_html_block_newline] = ACTIONS(2157), + [sym_backslash_escape] = ACTIONS(2157), + [sym_uri_autolink] = ACTIONS(2157), + [sym_email_autolink] = ACTIONS(2157), + [sym_entity_reference] = ACTIONS(2157), + [sym_numeric_character_reference] = ACTIONS(2157), + [sym__whitespace_ge_2] = ACTIONS(2157), + [aux_sym__whitespace_token1] = ACTIONS(2159), + [sym__word_no_digit] = ACTIONS(2157), + [sym__digits] = ACTIONS(2157), + [aux_sym__newline_token1] = ACTIONS(2157), + [sym__block_quote_start] = ACTIONS(2157), + [sym__indented_chunk_start] = ACTIONS(2157), + [sym_atx_h1_marker] = ACTIONS(2157), + [sym_atx_h2_marker] = ACTIONS(2157), + [sym_atx_h3_marker] = ACTIONS(2157), + [sym_atx_h4_marker] = ACTIONS(2157), + [sym_atx_h5_marker] = ACTIONS(2157), + [sym_atx_h6_marker] = ACTIONS(2157), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2157), + [sym__thematic_break] = ACTIONS(2157), + [sym__list_marker_minus] = ACTIONS(2157), + [sym__list_marker_plus] = ACTIONS(2157), + [sym__list_marker_star] = ACTIONS(2157), + [sym__list_marker_parenthesis] = ACTIONS(2157), + [sym__list_marker_dot] = ACTIONS(2157), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2157), + [sym__fenced_code_block_start_backtick] = ACTIONS(2157), + [sym__fenced_code_block_start_tilde] = ACTIONS(2157), + [sym__blank_line_start] = ACTIONS(2157), + [sym__code_span_start] = ACTIONS(2157), + [sym__emphasis_open_star] = ACTIONS(2157), + [sym__emphasis_open_underscore] = ACTIONS(2157), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(2068), - [aux_sym__html_block_1_token1] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_COMMA] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_QMARK] = ACTIONS(2068), - [anon_sym_AT] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_BSLASH] = ACTIONS(2070), - [anon_sym_RBRACK] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2068), - [anon_sym__] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2070), - [anon_sym_LT_QMARK] = ACTIONS(2070), - [aux_sym__html_block_4_token1] = ACTIONS(2070), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2068), - [aux_sym__html_block_6_token1] = ACTIONS(2070), - [aux_sym__html_block_6_token2] = ACTIONS(2068), - [sym__open_tag_html_block] = ACTIONS(2068), - [sym__open_tag_html_block_newline] = ACTIONS(2068), - [sym__closing_tag_html_block] = ACTIONS(2068), - [sym__closing_tag_html_block_newline] = ACTIONS(2068), - [sym_backslash_escape] = ACTIONS(2068), - [sym_uri_autolink] = ACTIONS(2068), - [sym_email_autolink] = ACTIONS(2068), - [sym_entity_reference] = ACTIONS(2068), - [sym_numeric_character_reference] = ACTIONS(2068), - [sym__whitespace_ge_2] = ACTIONS(2068), - [aux_sym__whitespace_token1] = ACTIONS(2070), - [sym__word_no_digit] = ACTIONS(2068), - [sym__digits] = ACTIONS(2068), - [aux_sym__newline_token1] = ACTIONS(2068), - [sym__block_quote_start] = ACTIONS(2068), - [sym__indented_chunk_start] = ACTIONS(2068), - [sym_atx_h1_marker] = ACTIONS(2068), - [sym_atx_h2_marker] = ACTIONS(2068), - [sym_atx_h3_marker] = ACTIONS(2068), - [sym_atx_h4_marker] = ACTIONS(2068), - [sym_atx_h5_marker] = ACTIONS(2068), - [sym_atx_h6_marker] = ACTIONS(2068), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2068), - [sym__thematic_break] = ACTIONS(2068), - [sym__list_marker_minus] = ACTIONS(2068), - [sym__list_marker_plus] = ACTIONS(2068), - [sym__list_marker_star] = ACTIONS(2068), - [sym__list_marker_parenthesis] = ACTIONS(2068), - [sym__list_marker_dot] = ACTIONS(2068), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2068), - [sym__fenced_code_block_start_backtick] = ACTIONS(2068), - [sym__fenced_code_block_start_tilde] = ACTIONS(2068), - [sym__blank_line_start] = ACTIONS(2068), - [sym__code_span_start] = ACTIONS(2068), - [sym__emphasis_open_star] = ACTIONS(2068), - [sym__emphasis_open_underscore] = ACTIONS(2068), + [sym_shortcut_link] = STATE(381), + [sym_full_reference_link] = STATE(381), + [sym_collapsed_reference_link] = STATE(381), + [sym_inline_link] = STATE(381), + [sym_image] = STATE(381), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym_hard_line_break] = STATE(381), + [sym_html_tag] = STATE(381), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(381), + [sym__word] = STATE(381), + [sym__text_inline_no_star] = STATE(381), + [sym__inline_element_no_newline_no_star] = STATE(381), + [aux_sym__inline_no_newline_no_star] = STATE(381), + [sym__emphasis_star_no_newline] = STATE(853), + [sym__strong_emphasis_star_no_newline] = STATE(381), + [sym__emphasis_underscore_no_newline] = STATE(853), + [sym__strong_emphasis_underscore_no_newline] = STATE(381), + [sym__code_span_no_newline] = STATE(381), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_BSLASH] = ACTIONS(1787), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1789), + [anon_sym_LT_QMARK] = ACTIONS(1791), + [aux_sym__html_block_4_token1] = ACTIONS(1793), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1795), + [sym_backslash_escape] = ACTIONS(1797), + [sym_uri_autolink] = ACTIONS(1797), + [sym_email_autolink] = ACTIONS(1797), + [sym_entity_reference] = ACTIONS(1797), + [sym_numeric_character_reference] = ACTIONS(1797), + [sym__whitespace_ge_2] = ACTIONS(1799), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(1797), + [sym__digits] = ACTIONS(1797), + [sym__code_span_start] = ACTIONS(1801), + [sym__emphasis_open_star] = ACTIONS(1803), + [sym__emphasis_open_underscore] = ACTIONS(1805), + [sym__emphasis_close_star] = ACTIONS(2161), }, [412] = { - [sym__block_interrupt_paragraph] = STATE(1559), - [sym__blank_line] = STATE(1559), - [sym_block_quote] = STATE(1559), - [sym_atx_heading] = STATE(1559), - [sym_setext_h1_underline] = STATE(1559), - [sym_setext_h2_underline] = STATE(1559), - [sym_thematic_break] = STATE(1559), - [sym_fenced_code_block] = STATE(1559), - [sym__html_block_1] = STATE(1559), - [sym__html_block_2] = STATE(1559), - [sym__html_block_3] = STATE(1559), - [sym__html_block_4] = STATE(1559), - [sym__html_block_5] = STATE(1559), - [sym__html_block_6] = STATE(1559), - [aux_sym__html_block_1_token1] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(396), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1605), - [anon_sym_LT_QMARK] = ACTIONS(1607), - [aux_sym__html_block_4_token1] = ACTIONS(1609), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1611), - [aux_sym__html_block_6_token1] = ACTIONS(1613), - [aux_sym__html_block_6_token2] = ACTIONS(1615), - [sym_backslash_escape] = ACTIONS(394), - [sym_entity_reference] = ACTIONS(394), - [sym_numeric_character_reference] = ACTIONS(394), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(1617), - [sym_atx_h1_marker] = ACTIONS(1619), - [sym_atx_h2_marker] = ACTIONS(1619), - [sym_atx_h3_marker] = ACTIONS(1619), - [sym_atx_h4_marker] = ACTIONS(1619), - [sym_atx_h5_marker] = ACTIONS(1619), - [sym_atx_h6_marker] = ACTIONS(1619), - [sym__setext_h1_underline] = ACTIONS(1621), - [sym__setext_h2_underline] = ACTIONS(1623), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1798), - [sym__thematic_break] = ACTIONS(1627), - [sym__list_marker_minus] = ACTIONS(1629), - [sym__list_marker_plus] = ACTIONS(1629), - [sym__list_marker_star] = ACTIONS(1629), - [sym__list_marker_parenthesis] = ACTIONS(1629), - [sym__list_marker_dot] = ACTIONS(1629), - [sym__fenced_code_block_start_backtick] = ACTIONS(1631), - [sym__fenced_code_block_start_tilde] = ACTIONS(1633), - [sym__blank_line_start] = ACTIONS(1635), + [ts_builtin_sym_end] = ACTIONS(2163), + [aux_sym__html_block_1_token1] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_COLON] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_QMARK] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_BSLASH] = ACTIONS(2165), + [anon_sym_RBRACK] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym__] = ACTIONS(2163), + [anon_sym_BQUOTE] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2165), + [anon_sym_LT_QMARK] = ACTIONS(2165), + [aux_sym__html_block_4_token1] = ACTIONS(2165), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2163), + [aux_sym__html_block_6_token1] = ACTIONS(2165), + [aux_sym__html_block_6_token2] = ACTIONS(2163), + [sym__open_tag_html_block] = ACTIONS(2163), + [sym__open_tag_html_block_newline] = ACTIONS(2163), + [sym__closing_tag_html_block] = ACTIONS(2163), + [sym__closing_tag_html_block_newline] = ACTIONS(2163), + [sym_backslash_escape] = ACTIONS(2163), + [sym_uri_autolink] = ACTIONS(2163), + [sym_email_autolink] = ACTIONS(2163), + [sym_entity_reference] = ACTIONS(2163), + [sym_numeric_character_reference] = ACTIONS(2163), + [sym__whitespace_ge_2] = ACTIONS(2163), + [aux_sym__whitespace_token1] = ACTIONS(2165), + [sym__word_no_digit] = ACTIONS(2163), + [sym__digits] = ACTIONS(2163), + [aux_sym__newline_token1] = ACTIONS(2163), + [sym__block_quote_start] = ACTIONS(2163), + [sym__indented_chunk_start] = ACTIONS(2163), + [sym_atx_h1_marker] = ACTIONS(2163), + [sym_atx_h2_marker] = ACTIONS(2163), + [sym_atx_h3_marker] = ACTIONS(2163), + [sym_atx_h4_marker] = ACTIONS(2163), + [sym_atx_h5_marker] = ACTIONS(2163), + [sym_atx_h6_marker] = ACTIONS(2163), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2163), + [sym__thematic_break] = ACTIONS(2163), + [sym__list_marker_minus] = ACTIONS(2163), + [sym__list_marker_plus] = ACTIONS(2163), + [sym__list_marker_star] = ACTIONS(2163), + [sym__list_marker_parenthesis] = ACTIONS(2163), + [sym__list_marker_dot] = ACTIONS(2163), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2163), + [sym__fenced_code_block_start_backtick] = ACTIONS(2163), + [sym__fenced_code_block_start_tilde] = ACTIONS(2163), + [sym__blank_line_start] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2163), + [sym__emphasis_open_underscore] = ACTIONS(2163), }, [413] = { - [aux_sym__html_block_1_token1] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_DQUOTE] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_DOLLAR] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_COMMA] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_DOT] = ACTIONS(1962), - [anon_sym_SLASH] = ACTIONS(1962), - [anon_sym_COLON] = ACTIONS(1962), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_EQ] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1962), - [anon_sym_QMARK] = ACTIONS(1962), - [anon_sym_AT] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_BSLASH] = ACTIONS(1964), - [anon_sym_RBRACK] = ACTIONS(1962), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym__] = ACTIONS(1962), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1964), - [anon_sym_LT_QMARK] = ACTIONS(1964), - [aux_sym__html_block_4_token1] = ACTIONS(1964), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1962), - [aux_sym__html_block_6_token1] = ACTIONS(1964), - [aux_sym__html_block_6_token2] = ACTIONS(1962), - [sym__open_tag_html_block] = ACTIONS(1962), - [sym__open_tag_html_block_newline] = ACTIONS(1962), - [sym__closing_tag_html_block] = ACTIONS(1962), - [sym__closing_tag_html_block_newline] = ACTIONS(1962), - [sym_backslash_escape] = ACTIONS(1962), - [sym_uri_autolink] = ACTIONS(1962), - [sym_email_autolink] = ACTIONS(1962), - [sym_entity_reference] = ACTIONS(1962), - [sym_numeric_character_reference] = ACTIONS(1962), - [sym__whitespace_ge_2] = ACTIONS(1962), - [aux_sym__whitespace_token1] = ACTIONS(1964), - [sym__word_no_digit] = ACTIONS(1962), - [sym__digits] = ACTIONS(1962), - [aux_sym__newline_token1] = ACTIONS(1962), - [sym__block_close] = ACTIONS(1962), - [sym__block_quote_start] = ACTIONS(1962), - [sym__indented_chunk_start] = ACTIONS(1962), - [sym_atx_h1_marker] = ACTIONS(1962), - [sym_atx_h2_marker] = ACTIONS(1962), - [sym_atx_h3_marker] = ACTIONS(1962), - [sym_atx_h4_marker] = ACTIONS(1962), - [sym_atx_h5_marker] = ACTIONS(1962), - [sym_atx_h6_marker] = ACTIONS(1962), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1962), - [sym__thematic_break] = ACTIONS(1962), - [sym__list_marker_minus] = ACTIONS(1962), - [sym__list_marker_plus] = ACTIONS(1962), - [sym__list_marker_star] = ACTIONS(1962), - [sym__list_marker_parenthesis] = ACTIONS(1962), - [sym__list_marker_dot] = ACTIONS(1962), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1962), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1962), - [sym__fenced_code_block_start_backtick] = ACTIONS(1962), - [sym__fenced_code_block_start_tilde] = ACTIONS(1962), - [sym__blank_line_start] = ACTIONS(1962), - [sym__code_span_start] = ACTIONS(1962), - [sym__emphasis_open_star] = ACTIONS(1962), - [sym__emphasis_open_underscore] = ACTIONS(1962), + [aux_sym__html_block_1_token1] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_RPAREN] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_BSLASH] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym__] = ACTIONS(2167), + [anon_sym_BQUOTE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2169), + [anon_sym_LT_QMARK] = ACTIONS(2169), + [aux_sym__html_block_4_token1] = ACTIONS(2169), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2167), + [aux_sym__html_block_6_token1] = ACTIONS(2169), + [aux_sym__html_block_6_token2] = ACTIONS(2167), + [sym__open_tag_html_block] = ACTIONS(2167), + [sym__open_tag_html_block_newline] = ACTIONS(2167), + [sym__closing_tag_html_block] = ACTIONS(2167), + [sym__closing_tag_html_block_newline] = ACTIONS(2167), + [sym_backslash_escape] = ACTIONS(2167), + [sym_uri_autolink] = ACTIONS(2167), + [sym_email_autolink] = ACTIONS(2167), + [sym_entity_reference] = ACTIONS(2167), + [sym_numeric_character_reference] = ACTIONS(2167), + [sym__whitespace_ge_2] = ACTIONS(2167), + [aux_sym__whitespace_token1] = ACTIONS(2169), + [sym__word_no_digit] = ACTIONS(2167), + [sym__digits] = ACTIONS(2167), + [aux_sym__newline_token1] = ACTIONS(2167), + [sym__block_close] = ACTIONS(2167), + [sym__block_quote_start] = ACTIONS(2167), + [sym__indented_chunk_start] = ACTIONS(2167), + [sym_atx_h1_marker] = ACTIONS(2167), + [sym_atx_h2_marker] = ACTIONS(2167), + [sym_atx_h3_marker] = ACTIONS(2167), + [sym_atx_h4_marker] = ACTIONS(2167), + [sym_atx_h5_marker] = ACTIONS(2167), + [sym_atx_h6_marker] = ACTIONS(2167), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2167), + [sym__thematic_break] = ACTIONS(2167), + [sym__list_marker_minus] = ACTIONS(2167), + [sym__list_marker_plus] = ACTIONS(2167), + [sym__list_marker_star] = ACTIONS(2167), + [sym__list_marker_parenthesis] = ACTIONS(2167), + [sym__list_marker_dot] = ACTIONS(2167), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2167), + [sym__fenced_code_block_start_backtick] = ACTIONS(2167), + [sym__fenced_code_block_start_tilde] = ACTIONS(2167), + [sym__blank_line_start] = ACTIONS(2167), + [sym__code_span_start] = ACTIONS(2167), + [sym__emphasis_open_star] = ACTIONS(2167), + [sym__emphasis_open_underscore] = ACTIONS(2167), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [aux_sym__html_block_1_token1] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2064), - [anon_sym_PERCENT] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2064), - [anon_sym_DOT] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2064), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_QMARK] = ACTIONS(2064), - [anon_sym_AT] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_BSLASH] = ACTIONS(2066), - [anon_sym_RBRACK] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2064), - [anon_sym__] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2066), - [anon_sym_LT_QMARK] = ACTIONS(2066), - [aux_sym__html_block_4_token1] = ACTIONS(2066), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2064), - [aux_sym__html_block_6_token1] = ACTIONS(2066), - [aux_sym__html_block_6_token2] = ACTIONS(2064), - [sym__open_tag_html_block] = ACTIONS(2064), - [sym__open_tag_html_block_newline] = ACTIONS(2064), - [sym__closing_tag_html_block] = ACTIONS(2064), - [sym__closing_tag_html_block_newline] = ACTIONS(2064), - [sym_backslash_escape] = ACTIONS(2064), - [sym_uri_autolink] = ACTIONS(2064), - [sym_email_autolink] = ACTIONS(2064), - [sym_entity_reference] = ACTIONS(2064), - [sym_numeric_character_reference] = ACTIONS(2064), - [sym__whitespace_ge_2] = ACTIONS(2064), - [aux_sym__whitespace_token1] = ACTIONS(2066), - [sym__word_no_digit] = ACTIONS(2064), - [sym__digits] = ACTIONS(2064), - [aux_sym__newline_token1] = ACTIONS(2064), - [sym__block_quote_start] = ACTIONS(2064), - [sym__indented_chunk_start] = ACTIONS(2064), - [sym_atx_h1_marker] = ACTIONS(2064), - [sym_atx_h2_marker] = ACTIONS(2064), - [sym_atx_h3_marker] = ACTIONS(2064), - [sym_atx_h4_marker] = ACTIONS(2064), - [sym_atx_h5_marker] = ACTIONS(2064), - [sym_atx_h6_marker] = ACTIONS(2064), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2064), - [sym__thematic_break] = ACTIONS(2064), - [sym__list_marker_minus] = ACTIONS(2064), - [sym__list_marker_plus] = ACTIONS(2064), - [sym__list_marker_star] = ACTIONS(2064), - [sym__list_marker_parenthesis] = ACTIONS(2064), - [sym__list_marker_dot] = ACTIONS(2064), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2064), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2064), - [sym__fenced_code_block_start_backtick] = ACTIONS(2064), - [sym__fenced_code_block_start_tilde] = ACTIONS(2064), - [sym__blank_line_start] = ACTIONS(2064), - [sym__code_span_start] = ACTIONS(2064), - [sym__emphasis_open_star] = ACTIONS(2064), - [sym__emphasis_open_underscore] = ACTIONS(2064), + [aux_sym__html_block_1_token1] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_BSLASH] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym__] = ACTIONS(2171), + [anon_sym_BQUOTE] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2173), + [anon_sym_LT_QMARK] = ACTIONS(2173), + [aux_sym__html_block_4_token1] = ACTIONS(2173), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2171), + [aux_sym__html_block_6_token1] = ACTIONS(2173), + [aux_sym__html_block_6_token2] = ACTIONS(2171), + [sym__open_tag_html_block] = ACTIONS(2171), + [sym__open_tag_html_block_newline] = ACTIONS(2171), + [sym__closing_tag_html_block] = ACTIONS(2171), + [sym__closing_tag_html_block_newline] = ACTIONS(2171), + [sym_backslash_escape] = ACTIONS(2171), + [sym_uri_autolink] = ACTIONS(2171), + [sym_email_autolink] = ACTIONS(2171), + [sym_entity_reference] = ACTIONS(2171), + [sym_numeric_character_reference] = ACTIONS(2171), + [sym__whitespace_ge_2] = ACTIONS(2171), + [aux_sym__whitespace_token1] = ACTIONS(2173), + [sym__word_no_digit] = ACTIONS(2171), + [sym__digits] = ACTIONS(2171), + [aux_sym__newline_token1] = ACTIONS(2171), + [sym__block_close] = ACTIONS(2171), + [sym__block_quote_start] = ACTIONS(2171), + [sym__indented_chunk_start] = ACTIONS(2171), + [sym_atx_h1_marker] = ACTIONS(2171), + [sym_atx_h2_marker] = ACTIONS(2171), + [sym_atx_h3_marker] = ACTIONS(2171), + [sym_atx_h4_marker] = ACTIONS(2171), + [sym_atx_h5_marker] = ACTIONS(2171), + [sym_atx_h6_marker] = ACTIONS(2171), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2171), + [sym__thematic_break] = ACTIONS(2171), + [sym__list_marker_minus] = ACTIONS(2171), + [sym__list_marker_plus] = ACTIONS(2171), + [sym__list_marker_star] = ACTIONS(2171), + [sym__list_marker_parenthesis] = ACTIONS(2171), + [sym__list_marker_dot] = ACTIONS(2171), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2171), + [sym__fenced_code_block_start_backtick] = ACTIONS(2171), + [sym__fenced_code_block_start_tilde] = ACTIONS(2171), + [sym__blank_line_start] = ACTIONS(2171), + [sym__code_span_start] = ACTIONS(2171), + [sym__emphasis_open_star] = ACTIONS(2171), + [sym__emphasis_open_underscore] = ACTIONS(2171), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [aux_sym__html_block_1_token1] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_PERCENT] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_COMMA] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_DOT] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1794), - [anon_sym_COLON] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1794), - [anon_sym_AT] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_BSLASH] = ACTIONS(1796), - [anon_sym_RBRACK] = ACTIONS(1794), - [anon_sym_CARET] = ACTIONS(1794), - [anon_sym__] = ACTIONS(1794), - [anon_sym_BQUOTE] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1796), - [anon_sym_LT_QMARK] = ACTIONS(1796), - [aux_sym__html_block_4_token1] = ACTIONS(1796), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1794), - [aux_sym__html_block_6_token1] = ACTIONS(1796), - [aux_sym__html_block_6_token2] = ACTIONS(1794), - [sym__open_tag_html_block] = ACTIONS(1794), - [sym__open_tag_html_block_newline] = ACTIONS(1794), - [sym__closing_tag_html_block] = ACTIONS(1794), - [sym__closing_tag_html_block_newline] = ACTIONS(1794), - [sym_backslash_escape] = ACTIONS(1794), - [sym_uri_autolink] = ACTIONS(1794), - [sym_email_autolink] = ACTIONS(1794), - [sym_entity_reference] = ACTIONS(1794), - [sym_numeric_character_reference] = ACTIONS(1794), - [sym__whitespace_ge_2] = ACTIONS(1794), - [aux_sym__whitespace_token1] = ACTIONS(1796), - [sym__word_no_digit] = ACTIONS(1794), - [sym__digits] = ACTIONS(1794), - [aux_sym__newline_token1] = ACTIONS(1794), - [sym__block_quote_start] = ACTIONS(1794), - [sym__indented_chunk_start] = ACTIONS(1794), - [sym_atx_h1_marker] = ACTIONS(1794), - [sym_atx_h2_marker] = ACTIONS(1794), - [sym_atx_h3_marker] = ACTIONS(1794), - [sym_atx_h4_marker] = ACTIONS(1794), - [sym_atx_h5_marker] = ACTIONS(1794), - [sym_atx_h6_marker] = ACTIONS(1794), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1794), - [sym__thematic_break] = ACTIONS(1794), - [sym__list_marker_minus] = ACTIONS(1794), - [sym__list_marker_plus] = ACTIONS(1794), - [sym__list_marker_star] = ACTIONS(1794), - [sym__list_marker_parenthesis] = ACTIONS(1794), - [sym__list_marker_dot] = ACTIONS(1794), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1794), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1794), - [sym__fenced_code_block_start_backtick] = ACTIONS(1794), - [sym__fenced_code_block_start_tilde] = ACTIONS(1794), - [sym__blank_line_start] = ACTIONS(1794), - [sym__code_span_start] = ACTIONS(1794), - [sym__emphasis_open_star] = ACTIONS(1794), - [sym__emphasis_open_underscore] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(2175), + [aux_sym__html_block_1_token1] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_BSLASH] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym__] = ACTIONS(2175), + [anon_sym_BQUOTE] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2177), + [anon_sym_LT_QMARK] = ACTIONS(2177), + [aux_sym__html_block_4_token1] = ACTIONS(2177), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2175), + [aux_sym__html_block_6_token1] = ACTIONS(2177), + [aux_sym__html_block_6_token2] = ACTIONS(2175), + [sym__open_tag_html_block] = ACTIONS(2175), + [sym__open_tag_html_block_newline] = ACTIONS(2175), + [sym__closing_tag_html_block] = ACTIONS(2175), + [sym__closing_tag_html_block_newline] = ACTIONS(2175), + [sym_backslash_escape] = ACTIONS(2175), + [sym_uri_autolink] = ACTIONS(2175), + [sym_email_autolink] = ACTIONS(2175), + [sym_entity_reference] = ACTIONS(2175), + [sym_numeric_character_reference] = ACTIONS(2175), + [sym__whitespace_ge_2] = ACTIONS(2175), + [aux_sym__whitespace_token1] = ACTIONS(2177), + [sym__word_no_digit] = ACTIONS(2175), + [sym__digits] = ACTIONS(2175), + [aux_sym__newline_token1] = ACTIONS(2175), + [sym__block_quote_start] = ACTIONS(2175), + [sym__indented_chunk_start] = ACTIONS(2175), + [sym_atx_h1_marker] = ACTIONS(2175), + [sym_atx_h2_marker] = ACTIONS(2175), + [sym_atx_h3_marker] = ACTIONS(2175), + [sym_atx_h4_marker] = ACTIONS(2175), + [sym_atx_h5_marker] = ACTIONS(2175), + [sym_atx_h6_marker] = ACTIONS(2175), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2175), + [sym__thematic_break] = ACTIONS(2175), + [sym__list_marker_minus] = ACTIONS(2175), + [sym__list_marker_plus] = ACTIONS(2175), + [sym__list_marker_star] = ACTIONS(2175), + [sym__list_marker_parenthesis] = ACTIONS(2175), + [sym__list_marker_dot] = ACTIONS(2175), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2175), + [sym__fenced_code_block_start_backtick] = ACTIONS(2175), + [sym__fenced_code_block_start_tilde] = ACTIONS(2175), + [sym__blank_line_start] = ACTIONS(2175), + [sym__code_span_start] = ACTIONS(2175), + [sym__emphasis_open_star] = ACTIONS(2175), + [sym__emphasis_open_underscore] = ACTIONS(2175), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(2014), - [aux_sym__html_block_1_token1] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(2014), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_DOLLAR] = ACTIONS(2014), - [anon_sym_PERCENT] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_RPAREN] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_COMMA] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_DOT] = ACTIONS(2014), - [anon_sym_SLASH] = ACTIONS(2014), - [anon_sym_COLON] = ACTIONS(2014), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2016), - [anon_sym_EQ] = ACTIONS(2014), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_QMARK] = ACTIONS(2014), - [anon_sym_AT] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_BSLASH] = ACTIONS(2016), - [anon_sym_RBRACK] = ACTIONS(2014), - [anon_sym_CARET] = ACTIONS(2014), - [anon_sym__] = ACTIONS(2014), - [anon_sym_BQUOTE] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2014), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2016), - [anon_sym_LT_QMARK] = ACTIONS(2016), - [aux_sym__html_block_4_token1] = ACTIONS(2016), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2014), - [aux_sym__html_block_6_token1] = ACTIONS(2016), - [aux_sym__html_block_6_token2] = ACTIONS(2014), - [sym__open_tag_html_block] = ACTIONS(2014), - [sym__open_tag_html_block_newline] = ACTIONS(2014), - [sym__closing_tag_html_block] = ACTIONS(2014), - [sym__closing_tag_html_block_newline] = ACTIONS(2014), - [sym_backslash_escape] = ACTIONS(2014), - [sym_uri_autolink] = ACTIONS(2014), - [sym_email_autolink] = ACTIONS(2014), - [sym_entity_reference] = ACTIONS(2014), - [sym_numeric_character_reference] = ACTIONS(2014), - [sym__whitespace_ge_2] = ACTIONS(2014), - [aux_sym__whitespace_token1] = ACTIONS(2016), - [sym__word_no_digit] = ACTIONS(2014), - [sym__digits] = ACTIONS(2014), - [aux_sym__newline_token1] = ACTIONS(2014), - [sym__block_quote_start] = ACTIONS(2014), - [sym__indented_chunk_start] = ACTIONS(2014), - [sym_atx_h1_marker] = ACTIONS(2014), - [sym_atx_h2_marker] = ACTIONS(2014), - [sym_atx_h3_marker] = ACTIONS(2014), - [sym_atx_h4_marker] = ACTIONS(2014), - [sym_atx_h5_marker] = ACTIONS(2014), - [sym_atx_h6_marker] = ACTIONS(2014), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2014), - [sym__thematic_break] = ACTIONS(2014), - [sym__list_marker_minus] = ACTIONS(2014), - [sym__list_marker_plus] = ACTIONS(2014), - [sym__list_marker_star] = ACTIONS(2014), - [sym__list_marker_parenthesis] = ACTIONS(2014), - [sym__list_marker_dot] = ACTIONS(2014), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2014), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2014), - [sym__fenced_code_block_start_backtick] = ACTIONS(2014), - [sym__fenced_code_block_start_tilde] = ACTIONS(2014), - [sym__blank_line_start] = ACTIONS(2014), - [sym__code_span_start] = ACTIONS(2014), - [sym__emphasis_open_star] = ACTIONS(2014), - [sym__emphasis_open_underscore] = ACTIONS(2014), + [ts_builtin_sym_end] = ACTIONS(2179), + [aux_sym__html_block_1_token1] = ACTIONS(2179), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_POUND] = ACTIONS(2179), + [anon_sym_DOLLAR] = ACTIONS(2179), + [anon_sym_PERCENT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_PLUS] = ACTIONS(2179), + [anon_sym_COMMA] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(2179), + [anon_sym_SLASH] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_EQ] = ACTIONS(2179), + [anon_sym_GT] = ACTIONS(2179), + [anon_sym_QMARK] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_BSLASH] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_CARET] = ACTIONS(2179), + [anon_sym__] = ACTIONS(2179), + [anon_sym_BQUOTE] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2181), + [anon_sym_LT_QMARK] = ACTIONS(2181), + [aux_sym__html_block_4_token1] = ACTIONS(2181), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2179), + [aux_sym__html_block_6_token1] = ACTIONS(2181), + [aux_sym__html_block_6_token2] = ACTIONS(2179), + [sym__open_tag_html_block] = ACTIONS(2179), + [sym__open_tag_html_block_newline] = ACTIONS(2179), + [sym__closing_tag_html_block] = ACTIONS(2179), + [sym__closing_tag_html_block_newline] = ACTIONS(2179), + [sym_backslash_escape] = ACTIONS(2179), + [sym_uri_autolink] = ACTIONS(2179), + [sym_email_autolink] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2179), + [sym_numeric_character_reference] = ACTIONS(2179), + [sym__whitespace_ge_2] = ACTIONS(2179), + [aux_sym__whitespace_token1] = ACTIONS(2181), + [sym__word_no_digit] = ACTIONS(2179), + [sym__digits] = ACTIONS(2179), + [aux_sym__newline_token1] = ACTIONS(2179), + [sym__block_quote_start] = ACTIONS(2179), + [sym__indented_chunk_start] = ACTIONS(2179), + [sym_atx_h1_marker] = ACTIONS(2179), + [sym_atx_h2_marker] = ACTIONS(2179), + [sym_atx_h3_marker] = ACTIONS(2179), + [sym_atx_h4_marker] = ACTIONS(2179), + [sym_atx_h5_marker] = ACTIONS(2179), + [sym_atx_h6_marker] = ACTIONS(2179), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2179), + [sym__thematic_break] = ACTIONS(2179), + [sym__list_marker_minus] = ACTIONS(2179), + [sym__list_marker_plus] = ACTIONS(2179), + [sym__list_marker_star] = ACTIONS(2179), + [sym__list_marker_parenthesis] = ACTIONS(2179), + [sym__list_marker_dot] = ACTIONS(2179), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2179), + [sym__fenced_code_block_start_backtick] = ACTIONS(2179), + [sym__fenced_code_block_start_tilde] = ACTIONS(2179), + [sym__blank_line_start] = ACTIONS(2179), + [sym__code_span_start] = ACTIONS(2179), + [sym__emphasis_open_star] = ACTIONS(2179), + [sym__emphasis_open_underscore] = ACTIONS(2179), }, [417] = { - [aux_sym__html_block_1_token1] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_COMMA] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_DOT] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_QMARK] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_BSLASH] = ACTIONS(2074), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym__] = ACTIONS(2072), - [anon_sym_BQUOTE] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2074), - [anon_sym_LT_QMARK] = ACTIONS(2074), - [aux_sym__html_block_4_token1] = ACTIONS(2074), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2072), - [aux_sym__html_block_6_token1] = ACTIONS(2074), - [aux_sym__html_block_6_token2] = ACTIONS(2072), - [sym__open_tag_html_block] = ACTIONS(2072), - [sym__open_tag_html_block_newline] = ACTIONS(2072), - [sym__closing_tag_html_block] = ACTIONS(2072), - [sym__closing_tag_html_block_newline] = ACTIONS(2072), - [sym_backslash_escape] = ACTIONS(2072), - [sym_uri_autolink] = ACTIONS(2072), - [sym_email_autolink] = ACTIONS(2072), - [sym_entity_reference] = ACTIONS(2072), - [sym_numeric_character_reference] = ACTIONS(2072), - [sym__whitespace_ge_2] = ACTIONS(2072), - [aux_sym__whitespace_token1] = ACTIONS(2074), - [sym__word_no_digit] = ACTIONS(2072), - [sym__digits] = ACTIONS(2072), - [aux_sym__newline_token1] = ACTIONS(2072), - [sym__block_close] = ACTIONS(2072), - [sym__block_quote_start] = ACTIONS(2072), - [sym__indented_chunk_start] = ACTIONS(2072), - [sym_atx_h1_marker] = ACTIONS(2072), - [sym_atx_h2_marker] = ACTIONS(2072), - [sym_atx_h3_marker] = ACTIONS(2072), - [sym_atx_h4_marker] = ACTIONS(2072), - [sym_atx_h5_marker] = ACTIONS(2072), - [sym_atx_h6_marker] = ACTIONS(2072), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2072), - [sym__thematic_break] = ACTIONS(2072), - [sym__list_marker_minus] = ACTIONS(2072), - [sym__list_marker_plus] = ACTIONS(2072), - [sym__list_marker_star] = ACTIONS(2072), - [sym__list_marker_parenthesis] = ACTIONS(2072), - [sym__list_marker_dot] = ACTIONS(2072), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2072), - [sym__fenced_code_block_start_backtick] = ACTIONS(2072), - [sym__fenced_code_block_start_tilde] = ACTIONS(2072), - [sym__blank_line_start] = ACTIONS(2072), - [sym__code_span_start] = ACTIONS(2072), - [sym__emphasis_open_star] = ACTIONS(2072), - [sym__emphasis_open_underscore] = ACTIONS(2072), + [ts_builtin_sym_end] = ACTIONS(2171), + [aux_sym__html_block_1_token1] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_COMMA] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_DOT] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_COLON] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_EQ] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(2171), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_BSLASH] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2171), + [anon_sym_CARET] = ACTIONS(2171), + [anon_sym__] = ACTIONS(2171), + [anon_sym_BQUOTE] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2173), + [anon_sym_LT_QMARK] = ACTIONS(2173), + [aux_sym__html_block_4_token1] = ACTIONS(2173), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2171), + [aux_sym__html_block_6_token1] = ACTIONS(2173), + [aux_sym__html_block_6_token2] = ACTIONS(2171), + [sym__open_tag_html_block] = ACTIONS(2171), + [sym__open_tag_html_block_newline] = ACTIONS(2171), + [sym__closing_tag_html_block] = ACTIONS(2171), + [sym__closing_tag_html_block_newline] = ACTIONS(2171), + [sym_backslash_escape] = ACTIONS(2171), + [sym_uri_autolink] = ACTIONS(2171), + [sym_email_autolink] = ACTIONS(2171), + [sym_entity_reference] = ACTIONS(2171), + [sym_numeric_character_reference] = ACTIONS(2171), + [sym__whitespace_ge_2] = ACTIONS(2171), + [aux_sym__whitespace_token1] = ACTIONS(2173), + [sym__word_no_digit] = ACTIONS(2171), + [sym__digits] = ACTIONS(2171), + [aux_sym__newline_token1] = ACTIONS(2171), + [sym__block_quote_start] = ACTIONS(2171), + [sym__indented_chunk_start] = ACTIONS(2171), + [sym_atx_h1_marker] = ACTIONS(2171), + [sym_atx_h2_marker] = ACTIONS(2171), + [sym_atx_h3_marker] = ACTIONS(2171), + [sym_atx_h4_marker] = ACTIONS(2171), + [sym_atx_h5_marker] = ACTIONS(2171), + [sym_atx_h6_marker] = ACTIONS(2171), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2171), + [sym__thematic_break] = ACTIONS(2171), + [sym__list_marker_minus] = ACTIONS(2171), + [sym__list_marker_plus] = ACTIONS(2171), + [sym__list_marker_star] = ACTIONS(2171), + [sym__list_marker_parenthesis] = ACTIONS(2171), + [sym__list_marker_dot] = ACTIONS(2171), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2171), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2171), + [sym__fenced_code_block_start_backtick] = ACTIONS(2171), + [sym__fenced_code_block_start_tilde] = ACTIONS(2171), + [sym__blank_line_start] = ACTIONS(2171), + [sym__code_span_start] = ACTIONS(2171), + [sym__emphasis_open_star] = ACTIONS(2171), + [sym__emphasis_open_underscore] = ACTIONS(2171), }, [418] = { - [sym_shortcut_link] = STATE(899), - [sym_full_reference_link] = STATE(899), - [sym_collapsed_reference_link] = STATE(899), - [sym_inline_link] = STATE(899), - [sym_image] = STATE(899), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_link_text] = STATE(2117), - [sym__link_text_non_empty] = STATE(877), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(880), - [sym_hard_line_break] = STATE(899), - [sym_html_tag] = STATE(899), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(899), - [sym__word] = STATE(899), - [sym__text_inline] = STATE(899), - [sym__inline_element_no_newline] = STATE(899), - [aux_sym__inline_no_newline] = STATE(418), - [sym__emphasis_star_no_newline] = STATE(900), - [sym__strong_emphasis_star_no_newline] = STATE(899), - [sym__emphasis_underscore_no_newline] = STATE(900), - [sym__strong_emphasis_underscore_no_newline] = STATE(899), - [sym__code_span_no_newline] = STATE(899), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_DOLLAR] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_PLUS] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_DOT] = ACTIONS(2079), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_COLON] = ACTIONS(2079), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_EQ] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_QMARK] = ACTIONS(2079), - [anon_sym_AT] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_BSLASH] = ACTIONS(2091), - [anon_sym_RBRACK] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(2079), - [anon_sym__] = ACTIONS(2079), - [anon_sym_BQUOTE] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_TILDE] = ACTIONS(2079), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2094), - [anon_sym_LT_QMARK] = ACTIONS(2097), - [aux_sym__html_block_4_token1] = ACTIONS(2100), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2103), - [sym_backslash_escape] = ACTIONS(2106), - [sym_uri_autolink] = ACTIONS(2106), - [sym_email_autolink] = ACTIONS(2106), - [sym_entity_reference] = ACTIONS(2106), - [sym_numeric_character_reference] = ACTIONS(2106), - [sym__whitespace_ge_2] = ACTIONS(2109), - [aux_sym__whitespace_token1] = ACTIONS(2112), - [sym__word_no_digit] = ACTIONS(2106), - [sym__digits] = ACTIONS(2106), - [aux_sym__newline_token1] = ACTIONS(2115), - [sym__code_span_start] = ACTIONS(2117), - [sym__emphasis_open_star] = ACTIONS(2120), - [sym__emphasis_open_underscore] = ACTIONS(2123), + [sym_shortcut_link] = STATE(383), + [sym_full_reference_link] = STATE(383), + [sym_collapsed_reference_link] = STATE(383), + [sym_inline_link] = STATE(383), + [sym_image] = STATE(383), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym_hard_line_break] = STATE(383), + [sym_html_tag] = STATE(383), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(383), + [sym__word] = STATE(383), + [sym__text_inline_no_underscore] = STATE(383), + [sym__inline_element_no_newline_no_underscore] = STATE(383), + [aux_sym__inline_no_newline_no_underscore] = STATE(383), + [sym__emphasis_star_no_newline] = STATE(863), + [sym__strong_emphasis_star_no_newline] = STATE(383), + [sym__emphasis_underscore_no_newline] = STATE(863), + [sym__strong_emphasis_underscore_no_newline] = STATE(383), + [sym__code_span_no_newline] = STATE(383), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_BSLASH] = ACTIONS(1813), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1815), + [anon_sym_LT_QMARK] = ACTIONS(1817), + [aux_sym__html_block_4_token1] = ACTIONS(1819), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1821), + [sym_backslash_escape] = ACTIONS(1823), + [sym_uri_autolink] = ACTIONS(1823), + [sym_email_autolink] = ACTIONS(1823), + [sym_entity_reference] = ACTIONS(1823), + [sym_numeric_character_reference] = ACTIONS(1823), + [sym__whitespace_ge_2] = ACTIONS(1825), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(1823), + [sym__digits] = ACTIONS(1823), + [sym__code_span_start] = ACTIONS(1827), + [sym__emphasis_open_star] = ACTIONS(1829), + [sym__emphasis_open_underscore] = ACTIONS(1831), + [sym__emphasis_close_underscore] = ACTIONS(2183), }, [419] = { - [sym_shortcut_link] = STATE(385), - [sym_full_reference_link] = STATE(385), - [sym_collapsed_reference_link] = STATE(385), - [sym_inline_link] = STATE(385), - [sym_image] = STATE(385), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym_hard_line_break] = STATE(385), - [sym_html_tag] = STATE(385), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(385), - [sym__word] = STATE(385), - [sym__text_inline_no_star] = STATE(385), - [sym__inline_element_no_newline_no_star] = STATE(385), - [aux_sym__inline_no_newline_no_star] = STATE(385), - [sym__emphasis_star_no_newline] = STATE(876), - [sym__strong_emphasis_star_no_newline] = STATE(385), - [sym__emphasis_underscore_no_newline] = STATE(876), - [sym__strong_emphasis_underscore_no_newline] = STATE(385), - [sym__code_span_no_newline] = STATE(385), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_BSLASH] = ACTIONS(1808), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1810), - [anon_sym_LT_QMARK] = ACTIONS(1812), - [aux_sym__html_block_4_token1] = ACTIONS(1814), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1816), - [sym_backslash_escape] = ACTIONS(1818), - [sym_uri_autolink] = ACTIONS(1818), - [sym_email_autolink] = ACTIONS(1818), - [sym_entity_reference] = ACTIONS(1818), - [sym_numeric_character_reference] = ACTIONS(1818), - [sym__whitespace_ge_2] = ACTIONS(1820), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(1818), - [sym__digits] = ACTIONS(1818), - [sym__code_span_start] = ACTIONS(1822), - [sym__emphasis_open_star] = ACTIONS(1824), - [sym__emphasis_open_underscore] = ACTIONS(1826), - [sym__emphasis_close_star] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2167), + [aux_sym__html_block_1_token1] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_RPAREN] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_COLON] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_EQ] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_BSLASH] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym__] = ACTIONS(2167), + [anon_sym_BQUOTE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2169), + [anon_sym_LT_QMARK] = ACTIONS(2169), + [aux_sym__html_block_4_token1] = ACTIONS(2169), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2167), + [aux_sym__html_block_6_token1] = ACTIONS(2169), + [aux_sym__html_block_6_token2] = ACTIONS(2167), + [sym__open_tag_html_block] = ACTIONS(2167), + [sym__open_tag_html_block_newline] = ACTIONS(2167), + [sym__closing_tag_html_block] = ACTIONS(2167), + [sym__closing_tag_html_block_newline] = ACTIONS(2167), + [sym_backslash_escape] = ACTIONS(2167), + [sym_uri_autolink] = ACTIONS(2167), + [sym_email_autolink] = ACTIONS(2167), + [sym_entity_reference] = ACTIONS(2167), + [sym_numeric_character_reference] = ACTIONS(2167), + [sym__whitespace_ge_2] = ACTIONS(2167), + [aux_sym__whitespace_token1] = ACTIONS(2169), + [sym__word_no_digit] = ACTIONS(2167), + [sym__digits] = ACTIONS(2167), + [aux_sym__newline_token1] = ACTIONS(2167), + [sym__block_quote_start] = ACTIONS(2167), + [sym__indented_chunk_start] = ACTIONS(2167), + [sym_atx_h1_marker] = ACTIONS(2167), + [sym_atx_h2_marker] = ACTIONS(2167), + [sym_atx_h3_marker] = ACTIONS(2167), + [sym_atx_h4_marker] = ACTIONS(2167), + [sym_atx_h5_marker] = ACTIONS(2167), + [sym_atx_h6_marker] = ACTIONS(2167), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2167), + [sym__thematic_break] = ACTIONS(2167), + [sym__list_marker_minus] = ACTIONS(2167), + [sym__list_marker_plus] = ACTIONS(2167), + [sym__list_marker_star] = ACTIONS(2167), + [sym__list_marker_parenthesis] = ACTIONS(2167), + [sym__list_marker_dot] = ACTIONS(2167), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2167), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2167), + [sym__fenced_code_block_start_backtick] = ACTIONS(2167), + [sym__fenced_code_block_start_tilde] = ACTIONS(2167), + [sym__blank_line_start] = ACTIONS(2167), + [sym__code_span_start] = ACTIONS(2167), + [sym__emphasis_open_star] = ACTIONS(2167), + [sym__emphasis_open_underscore] = ACTIONS(2167), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [aux_sym__html_block_1_token1] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [anon_sym_POUND] = ACTIONS(2060), - [anon_sym_DOLLAR] = ACTIONS(2060), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_LPAREN] = ACTIONS(2060), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2060), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2060), - [anon_sym_COLON] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2062), - [anon_sym_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_QMARK] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_BSLASH] = ACTIONS(2062), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym__] = ACTIONS(2060), - [anon_sym_BQUOTE] = ACTIONS(2060), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2062), - [anon_sym_LT_QMARK] = ACTIONS(2062), - [aux_sym__html_block_4_token1] = ACTIONS(2062), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2060), - [aux_sym__html_block_6_token1] = ACTIONS(2062), - [aux_sym__html_block_6_token2] = ACTIONS(2060), - [sym__open_tag_html_block] = ACTIONS(2060), - [sym__open_tag_html_block_newline] = ACTIONS(2060), - [sym__closing_tag_html_block] = ACTIONS(2060), - [sym__closing_tag_html_block_newline] = ACTIONS(2060), - [sym_backslash_escape] = ACTIONS(2060), - [sym_uri_autolink] = ACTIONS(2060), - [sym_email_autolink] = ACTIONS(2060), - [sym_entity_reference] = ACTIONS(2060), - [sym_numeric_character_reference] = ACTIONS(2060), - [sym__whitespace_ge_2] = ACTIONS(2060), - [aux_sym__whitespace_token1] = ACTIONS(2062), - [sym__word_no_digit] = ACTIONS(2060), - [sym__digits] = ACTIONS(2060), - [aux_sym__newline_token1] = ACTIONS(2060), - [sym__block_quote_start] = ACTIONS(2060), - [sym__indented_chunk_start] = ACTIONS(2060), - [sym_atx_h1_marker] = ACTIONS(2060), - [sym_atx_h2_marker] = ACTIONS(2060), - [sym_atx_h3_marker] = ACTIONS(2060), - [sym_atx_h4_marker] = ACTIONS(2060), - [sym_atx_h5_marker] = ACTIONS(2060), - [sym_atx_h6_marker] = ACTIONS(2060), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2060), - [sym__thematic_break] = ACTIONS(2060), - [sym__list_marker_minus] = ACTIONS(2060), - [sym__list_marker_plus] = ACTIONS(2060), - [sym__list_marker_star] = ACTIONS(2060), - [sym__list_marker_parenthesis] = ACTIONS(2060), - [sym__list_marker_dot] = ACTIONS(2060), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2060), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2060), - [sym__fenced_code_block_start_backtick] = ACTIONS(2060), - [sym__fenced_code_block_start_tilde] = ACTIONS(2060), - [sym__blank_line_start] = ACTIONS(2060), - [sym__code_span_start] = ACTIONS(2060), - [sym__emphasis_open_star] = ACTIONS(2060), - [sym__emphasis_open_underscore] = ACTIONS(2060), + [aux_sym__html_block_1_token1] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_DOLLAR] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_SQUOTE] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_COMMA] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_DOT] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_COLON] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_EQ] = ACTIONS(2027), + [anon_sym_GT] = ACTIONS(2027), + [anon_sym_QMARK] = ACTIONS(2027), + [anon_sym_AT] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_BSLASH] = ACTIONS(2029), + [anon_sym_RBRACK] = ACTIONS(2027), + [anon_sym_CARET] = ACTIONS(2027), + [anon_sym__] = ACTIONS(2027), + [anon_sym_BQUOTE] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2029), + [anon_sym_LT_QMARK] = ACTIONS(2029), + [aux_sym__html_block_4_token1] = ACTIONS(2029), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2027), + [aux_sym__html_block_6_token1] = ACTIONS(2029), + [aux_sym__html_block_6_token2] = ACTIONS(2027), + [sym__open_tag_html_block] = ACTIONS(2027), + [sym__open_tag_html_block_newline] = ACTIONS(2027), + [sym__closing_tag_html_block] = ACTIONS(2027), + [sym__closing_tag_html_block_newline] = ACTIONS(2027), + [sym_backslash_escape] = ACTIONS(2027), + [sym_uri_autolink] = ACTIONS(2027), + [sym_email_autolink] = ACTIONS(2027), + [sym_entity_reference] = ACTIONS(2027), + [sym_numeric_character_reference] = ACTIONS(2027), + [sym__whitespace_ge_2] = ACTIONS(2027), + [aux_sym__whitespace_token1] = ACTIONS(2029), + [sym__word_no_digit] = ACTIONS(2027), + [sym__digits] = ACTIONS(2027), + [aux_sym__newline_token1] = ACTIONS(2027), + [sym__block_close] = ACTIONS(2027), + [sym__block_quote_start] = ACTIONS(2027), + [sym__indented_chunk_start] = ACTIONS(2027), + [sym_atx_h1_marker] = ACTIONS(2027), + [sym_atx_h2_marker] = ACTIONS(2027), + [sym_atx_h3_marker] = ACTIONS(2027), + [sym_atx_h4_marker] = ACTIONS(2027), + [sym_atx_h5_marker] = ACTIONS(2027), + [sym_atx_h6_marker] = ACTIONS(2027), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2027), + [sym__thematic_break] = ACTIONS(2027), + [sym__list_marker_minus] = ACTIONS(2027), + [sym__list_marker_plus] = ACTIONS(2027), + [sym__list_marker_star] = ACTIONS(2027), + [sym__list_marker_parenthesis] = ACTIONS(2027), + [sym__list_marker_dot] = ACTIONS(2027), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2027), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2027), + [sym__fenced_code_block_start_backtick] = ACTIONS(2027), + [sym__fenced_code_block_start_tilde] = ACTIONS(2027), + [sym__blank_line_start] = ACTIONS(2027), + [sym__code_span_start] = ACTIONS(2027), + [sym__emphasis_open_star] = ACTIONS(2027), + [sym__emphasis_open_underscore] = ACTIONS(2027), }, [421] = { - [sym_shortcut_link] = STATE(387), - [sym_full_reference_link] = STATE(387), - [sym_collapsed_reference_link] = STATE(387), - [sym_inline_link] = STATE(387), - [sym_image] = STATE(387), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym_hard_line_break] = STATE(387), - [sym_html_tag] = STATE(387), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(387), - [sym__word] = STATE(387), - [sym__text_inline_no_underscore] = STATE(387), - [sym__inline_element_no_newline_no_underscore] = STATE(387), - [aux_sym__inline_no_newline_no_underscore] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(874), - [sym__strong_emphasis_star_no_newline] = STATE(387), - [sym__emphasis_underscore_no_newline] = STATE(874), - [sym__strong_emphasis_underscore_no_newline] = STATE(387), - [sym__code_span_no_newline] = STATE(387), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_BSLASH] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_QMARK] = ACTIONS(1982), - [aux_sym__html_block_4_token1] = ACTIONS(1984), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1986), - [sym_backslash_escape] = ACTIONS(1988), - [sym_uri_autolink] = ACTIONS(1988), - [sym_email_autolink] = ACTIONS(1988), - [sym_entity_reference] = ACTIONS(1988), - [sym_numeric_character_reference] = ACTIONS(1988), - [sym__whitespace_ge_2] = ACTIONS(1990), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(1988), - [sym__digits] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1992), - [sym__emphasis_open_star] = ACTIONS(1994), - [sym__emphasis_open_underscore] = ACTIONS(1996), - [sym__emphasis_close_underscore] = ACTIONS(2128), + [aux_sym__html_block_1_token1] = ACTIONS(2179), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_DQUOTE] = ACTIONS(2179), + [anon_sym_POUND] = ACTIONS(2179), + [anon_sym_DOLLAR] = ACTIONS(2179), + [anon_sym_PERCENT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_PLUS] = ACTIONS(2179), + [anon_sym_COMMA] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(2179), + [anon_sym_SLASH] = ACTIONS(2179), + [anon_sym_COLON] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_EQ] = ACTIONS(2179), + [anon_sym_GT] = ACTIONS(2179), + [anon_sym_QMARK] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_BSLASH] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_CARET] = ACTIONS(2179), + [anon_sym__] = ACTIONS(2179), + [anon_sym_BQUOTE] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2181), + [anon_sym_LT_QMARK] = ACTIONS(2181), + [aux_sym__html_block_4_token1] = ACTIONS(2181), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2179), + [aux_sym__html_block_6_token1] = ACTIONS(2181), + [aux_sym__html_block_6_token2] = ACTIONS(2179), + [sym__open_tag_html_block] = ACTIONS(2179), + [sym__open_tag_html_block_newline] = ACTIONS(2179), + [sym__closing_tag_html_block] = ACTIONS(2179), + [sym__closing_tag_html_block_newline] = ACTIONS(2179), + [sym_backslash_escape] = ACTIONS(2179), + [sym_uri_autolink] = ACTIONS(2179), + [sym_email_autolink] = ACTIONS(2179), + [sym_entity_reference] = ACTIONS(2179), + [sym_numeric_character_reference] = ACTIONS(2179), + [sym__whitespace_ge_2] = ACTIONS(2179), + [aux_sym__whitespace_token1] = ACTIONS(2181), + [sym__word_no_digit] = ACTIONS(2179), + [sym__digits] = ACTIONS(2179), + [aux_sym__newline_token1] = ACTIONS(2179), + [sym__block_close] = ACTIONS(2179), + [sym__block_quote_start] = ACTIONS(2179), + [sym__indented_chunk_start] = ACTIONS(2179), + [sym_atx_h1_marker] = ACTIONS(2179), + [sym_atx_h2_marker] = ACTIONS(2179), + [sym_atx_h3_marker] = ACTIONS(2179), + [sym_atx_h4_marker] = ACTIONS(2179), + [sym_atx_h5_marker] = ACTIONS(2179), + [sym_atx_h6_marker] = ACTIONS(2179), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2179), + [sym__thematic_break] = ACTIONS(2179), + [sym__list_marker_minus] = ACTIONS(2179), + [sym__list_marker_plus] = ACTIONS(2179), + [sym__list_marker_star] = ACTIONS(2179), + [sym__list_marker_parenthesis] = ACTIONS(2179), + [sym__list_marker_dot] = ACTIONS(2179), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2179), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2179), + [sym__fenced_code_block_start_backtick] = ACTIONS(2179), + [sym__fenced_code_block_start_tilde] = ACTIONS(2179), + [sym__blank_line_start] = ACTIONS(2179), + [sym__code_span_start] = ACTIONS(2179), + [sym__emphasis_open_star] = ACTIONS(2179), + [sym__emphasis_open_underscore] = ACTIONS(2179), }, [422] = { - [aux_sym__html_block_1_token1] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(2068), - [anon_sym_DOLLAR] = ACTIONS(2068), - [anon_sym_PERCENT] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2070), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2068), - [anon_sym_RPAREN] = ACTIONS(2068), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_COMMA] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_COLON] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_QMARK] = ACTIONS(2068), - [anon_sym_AT] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_BSLASH] = ACTIONS(2070), - [anon_sym_RBRACK] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2068), - [anon_sym__] = ACTIONS(2068), - [anon_sym_BQUOTE] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2070), - [anon_sym_LT_QMARK] = ACTIONS(2070), - [aux_sym__html_block_4_token1] = ACTIONS(2070), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2068), - [aux_sym__html_block_6_token1] = ACTIONS(2070), - [aux_sym__html_block_6_token2] = ACTIONS(2068), - [sym__open_tag_html_block] = ACTIONS(2068), - [sym__open_tag_html_block_newline] = ACTIONS(2068), - [sym__closing_tag_html_block] = ACTIONS(2068), - [sym__closing_tag_html_block_newline] = ACTIONS(2068), - [sym_backslash_escape] = ACTIONS(2068), - [sym_uri_autolink] = ACTIONS(2068), - [sym_email_autolink] = ACTIONS(2068), - [sym_entity_reference] = ACTIONS(2068), - [sym_numeric_character_reference] = ACTIONS(2068), - [sym__whitespace_ge_2] = ACTIONS(2068), - [aux_sym__whitespace_token1] = ACTIONS(2070), - [sym__word_no_digit] = ACTIONS(2068), - [sym__digits] = ACTIONS(2068), - [aux_sym__newline_token1] = ACTIONS(2068), - [sym__block_close] = ACTIONS(2068), - [sym__block_quote_start] = ACTIONS(2068), - [sym__indented_chunk_start] = ACTIONS(2068), - [sym_atx_h1_marker] = ACTIONS(2068), - [sym_atx_h2_marker] = ACTIONS(2068), - [sym_atx_h3_marker] = ACTIONS(2068), - [sym_atx_h4_marker] = ACTIONS(2068), - [sym_atx_h5_marker] = ACTIONS(2068), - [sym_atx_h6_marker] = ACTIONS(2068), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2068), - [sym__thematic_break] = ACTIONS(2068), - [sym__list_marker_minus] = ACTIONS(2068), - [sym__list_marker_plus] = ACTIONS(2068), - [sym__list_marker_star] = ACTIONS(2068), - [sym__list_marker_parenthesis] = ACTIONS(2068), - [sym__list_marker_dot] = ACTIONS(2068), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2068), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2068), - [sym__fenced_code_block_start_backtick] = ACTIONS(2068), - [sym__fenced_code_block_start_tilde] = ACTIONS(2068), - [sym__blank_line_start] = ACTIONS(2068), - [sym__code_span_start] = ACTIONS(2068), - [sym__emphasis_open_star] = ACTIONS(2068), - [sym__emphasis_open_underscore] = ACTIONS(2068), + [aux_sym__html_block_1_token1] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_PERCENT] = ACTIONS(2037), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2037), + [anon_sym_COMMA] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2037), + [anon_sym_DOT] = ACTIONS(2037), + [anon_sym_SLASH] = ACTIONS(2037), + [anon_sym_COLON] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_EQ] = ACTIONS(2037), + [anon_sym_GT] = ACTIONS(2037), + [anon_sym_QMARK] = ACTIONS(2037), + [anon_sym_AT] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_BSLASH] = ACTIONS(2039), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_CARET] = ACTIONS(2037), + [anon_sym__] = ACTIONS(2037), + [anon_sym_BQUOTE] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2039), + [anon_sym_LT_QMARK] = ACTIONS(2039), + [aux_sym__html_block_4_token1] = ACTIONS(2039), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2037), + [aux_sym__html_block_6_token1] = ACTIONS(2039), + [aux_sym__html_block_6_token2] = ACTIONS(2037), + [sym__open_tag_html_block] = ACTIONS(2037), + [sym__open_tag_html_block_newline] = ACTIONS(2037), + [sym__closing_tag_html_block] = ACTIONS(2037), + [sym__closing_tag_html_block_newline] = ACTIONS(2037), + [sym_backslash_escape] = ACTIONS(2037), + [sym_uri_autolink] = ACTIONS(2037), + [sym_email_autolink] = ACTIONS(2037), + [sym_entity_reference] = ACTIONS(2037), + [sym_numeric_character_reference] = ACTIONS(2037), + [sym__whitespace_ge_2] = ACTIONS(2037), + [aux_sym__whitespace_token1] = ACTIONS(2039), + [sym__word_no_digit] = ACTIONS(2037), + [sym__digits] = ACTIONS(2037), + [aux_sym__newline_token1] = ACTIONS(2037), + [sym__block_close] = ACTIONS(2037), + [sym__block_quote_start] = ACTIONS(2037), + [sym__indented_chunk_start] = ACTIONS(2037), + [sym_atx_h1_marker] = ACTIONS(2037), + [sym_atx_h2_marker] = ACTIONS(2037), + [sym_atx_h3_marker] = ACTIONS(2037), + [sym_atx_h4_marker] = ACTIONS(2037), + [sym_atx_h5_marker] = ACTIONS(2037), + [sym_atx_h6_marker] = ACTIONS(2037), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2037), + [sym__thematic_break] = ACTIONS(2037), + [sym__list_marker_minus] = ACTIONS(2037), + [sym__list_marker_plus] = ACTIONS(2037), + [sym__list_marker_star] = ACTIONS(2037), + [sym__list_marker_parenthesis] = ACTIONS(2037), + [sym__list_marker_dot] = ACTIONS(2037), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2037), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2037), + [sym__fenced_code_block_start_backtick] = ACTIONS(2037), + [sym__fenced_code_block_start_tilde] = ACTIONS(2037), + [sym__blank_line_start] = ACTIONS(2037), + [sym__code_span_start] = ACTIONS(2037), + [sym__emphasis_open_star] = ACTIONS(2037), + [sym__emphasis_open_underscore] = ACTIONS(2037), }, [423] = { - [sym_shortcut_link] = STATE(429), - [sym_full_reference_link] = STATE(429), - [sym_collapsed_reference_link] = STATE(429), - [sym_inline_link] = STATE(429), - [sym_image] = STATE(429), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym_hard_line_break] = STATE(429), - [sym_html_tag] = STATE(429), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(429), - [sym__word] = STATE(429), - [sym__text_inline_no_star] = STATE(429), - [sym__inline_element_no_newline_no_star] = STATE(429), - [aux_sym__inline_no_newline_no_star] = STATE(429), - [sym__emphasis_star_no_newline] = STATE(882), - [sym__strong_emphasis_star_no_newline] = STATE(429), - [sym__emphasis_underscore_no_newline] = STATE(876), - [sym__strong_emphasis_underscore_no_newline] = STATE(429), - [sym__code_span_no_newline] = STATE(429), - [anon_sym_BANG] = ACTIONS(2130), - [anon_sym_DQUOTE] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_COLON] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_QMARK] = ACTIONS(1556), - [anon_sym_AT] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_BSLASH] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym__] = ACTIONS(1556), - [anon_sym_BQUOTE] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2139), - [anon_sym_LT_QMARK] = ACTIONS(2142), - [aux_sym__html_block_4_token1] = ACTIONS(2145), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2148), - [sym_backslash_escape] = ACTIONS(2151), - [sym_uri_autolink] = ACTIONS(2151), - [sym_email_autolink] = ACTIONS(2151), - [sym_entity_reference] = ACTIONS(2151), - [sym_numeric_character_reference] = ACTIONS(2151), - [sym__whitespace_ge_2] = ACTIONS(2154), - [aux_sym__whitespace_token1] = ACTIONS(1589), - [sym__word_no_digit] = ACTIONS(2151), - [sym__digits] = ACTIONS(2151), - [aux_sym__newline_token1] = ACTIONS(2045), - [sym__code_span_start] = ACTIONS(2157), - [sym__emphasis_open_star] = ACTIONS(2160), - [sym__emphasis_open_underscore] = ACTIONS(2163), + [aux_sym__html_block_1_token1] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_COLON] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_BSLASH] = ACTIONS(2177), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym__] = ACTIONS(2175), + [anon_sym_BQUOTE] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2177), + [anon_sym_LT_QMARK] = ACTIONS(2177), + [aux_sym__html_block_4_token1] = ACTIONS(2177), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2175), + [aux_sym__html_block_6_token1] = ACTIONS(2177), + [aux_sym__html_block_6_token2] = ACTIONS(2175), + [sym__open_tag_html_block] = ACTIONS(2175), + [sym__open_tag_html_block_newline] = ACTIONS(2175), + [sym__closing_tag_html_block] = ACTIONS(2175), + [sym__closing_tag_html_block_newline] = ACTIONS(2175), + [sym_backslash_escape] = ACTIONS(2175), + [sym_uri_autolink] = ACTIONS(2175), + [sym_email_autolink] = ACTIONS(2175), + [sym_entity_reference] = ACTIONS(2175), + [sym_numeric_character_reference] = ACTIONS(2175), + [sym__whitespace_ge_2] = ACTIONS(2175), + [aux_sym__whitespace_token1] = ACTIONS(2177), + [sym__word_no_digit] = ACTIONS(2175), + [sym__digits] = ACTIONS(2175), + [aux_sym__newline_token1] = ACTIONS(2175), + [sym__block_close] = ACTIONS(2175), + [sym__block_quote_start] = ACTIONS(2175), + [sym__indented_chunk_start] = ACTIONS(2175), + [sym_atx_h1_marker] = ACTIONS(2175), + [sym_atx_h2_marker] = ACTIONS(2175), + [sym_atx_h3_marker] = ACTIONS(2175), + [sym_atx_h4_marker] = ACTIONS(2175), + [sym_atx_h5_marker] = ACTIONS(2175), + [sym_atx_h6_marker] = ACTIONS(2175), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2175), + [sym__thematic_break] = ACTIONS(2175), + [sym__list_marker_minus] = ACTIONS(2175), + [sym__list_marker_plus] = ACTIONS(2175), + [sym__list_marker_star] = ACTIONS(2175), + [sym__list_marker_parenthesis] = ACTIONS(2175), + [sym__list_marker_dot] = ACTIONS(2175), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2175), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2175), + [sym__fenced_code_block_start_backtick] = ACTIONS(2175), + [sym__fenced_code_block_start_tilde] = ACTIONS(2175), + [sym__blank_line_start] = ACTIONS(2175), + [sym__code_span_start] = ACTIONS(2175), + [sym__emphasis_open_star] = ACTIONS(2175), + [sym__emphasis_open_underscore] = ACTIONS(2175), }, [424] = { - [aux_sym__html_block_1_token1] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_POUND] = ACTIONS(2056), - [anon_sym_DOLLAR] = ACTIONS(2056), - [anon_sym_PERCENT] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(2056), - [anon_sym_COMMA] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2056), - [anon_sym_DOT] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2056), - [anon_sym_COLON] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_EQ] = ACTIONS(2056), - [anon_sym_GT] = ACTIONS(2056), - [anon_sym_QMARK] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_BSLASH] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym__] = ACTIONS(2056), - [anon_sym_BQUOTE] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2058), - [anon_sym_LT_QMARK] = ACTIONS(2058), - [aux_sym__html_block_4_token1] = ACTIONS(2058), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2056), - [aux_sym__html_block_6_token1] = ACTIONS(2058), - [aux_sym__html_block_6_token2] = ACTIONS(2056), - [sym__open_tag_html_block] = ACTIONS(2056), - [sym__open_tag_html_block_newline] = ACTIONS(2056), - [sym__closing_tag_html_block] = ACTIONS(2056), - [sym__closing_tag_html_block_newline] = ACTIONS(2056), - [sym_backslash_escape] = ACTIONS(2056), - [sym_uri_autolink] = ACTIONS(2056), - [sym_email_autolink] = ACTIONS(2056), - [sym_entity_reference] = ACTIONS(2056), - [sym_numeric_character_reference] = ACTIONS(2056), - [sym__whitespace_ge_2] = ACTIONS(2056), - [aux_sym__whitespace_token1] = ACTIONS(2058), - [sym__word_no_digit] = ACTIONS(2056), - [sym__digits] = ACTIONS(2056), - [aux_sym__newline_token1] = ACTIONS(2056), - [sym__block_close] = ACTIONS(2056), - [sym__block_quote_start] = ACTIONS(2056), - [sym__indented_chunk_start] = ACTIONS(2056), - [sym_atx_h1_marker] = ACTIONS(2056), - [sym_atx_h2_marker] = ACTIONS(2056), - [sym_atx_h3_marker] = ACTIONS(2056), - [sym_atx_h4_marker] = ACTIONS(2056), - [sym_atx_h5_marker] = ACTIONS(2056), - [sym_atx_h6_marker] = ACTIONS(2056), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2056), - [sym__thematic_break] = ACTIONS(2056), - [sym__list_marker_minus] = ACTIONS(2056), - [sym__list_marker_plus] = ACTIONS(2056), - [sym__list_marker_star] = ACTIONS(2056), - [sym__list_marker_parenthesis] = ACTIONS(2056), - [sym__list_marker_dot] = ACTIONS(2056), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2056), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2056), - [sym__fenced_code_block_start_backtick] = ACTIONS(2056), - [sym__fenced_code_block_start_tilde] = ACTIONS(2056), - [sym__blank_line_start] = ACTIONS(2056), - [sym__code_span_start] = ACTIONS(2056), - [sym__emphasis_open_star] = ACTIONS(2056), - [sym__emphasis_open_underscore] = ACTIONS(2056), + [ts_builtin_sym_end] = ACTIONS(1969), + [aux_sym__html_block_1_token1] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_PERCENT] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_COLON] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_BSLASH] = ACTIONS(1971), + [anon_sym_RBRACK] = ACTIONS(1969), + [anon_sym_CARET] = ACTIONS(1969), + [anon_sym__] = ACTIONS(1969), + [anon_sym_BQUOTE] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1971), + [anon_sym_LT_QMARK] = ACTIONS(1971), + [aux_sym__html_block_4_token1] = ACTIONS(1971), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1969), + [aux_sym__html_block_6_token1] = ACTIONS(1971), + [aux_sym__html_block_6_token2] = ACTIONS(1969), + [sym__open_tag_html_block] = ACTIONS(1969), + [sym__open_tag_html_block_newline] = ACTIONS(1969), + [sym__closing_tag_html_block] = ACTIONS(1969), + [sym__closing_tag_html_block_newline] = ACTIONS(1969), + [sym_backslash_escape] = ACTIONS(1969), + [sym_uri_autolink] = ACTIONS(1969), + [sym_email_autolink] = ACTIONS(1969), + [sym_entity_reference] = ACTIONS(1969), + [sym_numeric_character_reference] = ACTIONS(1969), + [sym__whitespace_ge_2] = ACTIONS(1969), + [aux_sym__whitespace_token1] = ACTIONS(1971), + [sym__word_no_digit] = ACTIONS(1969), + [sym__digits] = ACTIONS(1969), + [aux_sym__newline_token1] = ACTIONS(1969), + [sym__block_quote_start] = ACTIONS(1969), + [sym__indented_chunk_start] = ACTIONS(1969), + [sym_atx_h1_marker] = ACTIONS(1969), + [sym_atx_h2_marker] = ACTIONS(1969), + [sym_atx_h3_marker] = ACTIONS(1969), + [sym_atx_h4_marker] = ACTIONS(1969), + [sym_atx_h5_marker] = ACTIONS(1969), + [sym_atx_h6_marker] = ACTIONS(1969), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1969), + [sym__thematic_break] = ACTIONS(1969), + [sym__list_marker_minus] = ACTIONS(1969), + [sym__list_marker_plus] = ACTIONS(1969), + [sym__list_marker_star] = ACTIONS(1969), + [sym__list_marker_parenthesis] = ACTIONS(1969), + [sym__list_marker_dot] = ACTIONS(1969), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1969), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1969), + [sym__fenced_code_block_start_backtick] = ACTIONS(1969), + [sym__fenced_code_block_start_tilde] = ACTIONS(1969), + [sym__blank_line_start] = ACTIONS(1969), + [sym__code_span_start] = ACTIONS(1969), + [sym__emphasis_open_star] = ACTIONS(1969), + [sym__emphasis_open_underscore] = ACTIONS(1969), }, [425] = { - [sym_shortcut_link] = STATE(419), - [sym_full_reference_link] = STATE(419), - [sym_collapsed_reference_link] = STATE(419), - [sym_inline_link] = STATE(419), - [sym_image] = STATE(419), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym_hard_line_break] = STATE(419), - [sym_html_tag] = STATE(419), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(419), - [sym__word] = STATE(419), - [sym__text_inline_no_star] = STATE(419), - [sym__inline_element_no_newline_no_star] = STATE(419), - [aux_sym__inline_no_newline_no_star] = STATE(419), - [sym__emphasis_star_no_newline] = STATE(888), - [sym__strong_emphasis_star_no_newline] = STATE(419), - [sym__emphasis_underscore_no_newline] = STATE(876), - [sym__strong_emphasis_underscore_no_newline] = STATE(419), - [sym__code_span_no_newline] = STATE(419), - [anon_sym_BANG] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(890), - [anon_sym_DOLLAR] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(890), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym_COLON] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(890), - [anon_sym_AT] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_BSLASH] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym__] = ACTIONS(890), - [anon_sym_BQUOTE] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_TILDE] = ACTIONS(890), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2175), - [anon_sym_LT_QMARK] = ACTIONS(2178), - [aux_sym__html_block_4_token1] = ACTIONS(2181), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2184), - [sym_backslash_escape] = ACTIONS(2187), - [sym_uri_autolink] = ACTIONS(2187), - [sym_email_autolink] = ACTIONS(2187), - [sym_entity_reference] = ACTIONS(2187), - [sym_numeric_character_reference] = ACTIONS(2187), - [sym__whitespace_ge_2] = ACTIONS(2190), - [aux_sym__whitespace_token1] = ACTIONS(923), - [sym__word_no_digit] = ACTIONS(2187), - [sym__digits] = ACTIONS(2187), - [sym__code_span_start] = ACTIONS(2193), - [sym__emphasis_open_star] = ACTIONS(2196), - [sym__emphasis_open_underscore] = ACTIONS(2199), - [sym__emphasis_close_underscore] = ACTIONS(938), + [aux_sym__html_block_1_token1] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_COLON] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_EQ] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_QMARK] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_BSLASH] = ACTIONS(2165), + [anon_sym_RBRACK] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym__] = ACTIONS(2163), + [anon_sym_BQUOTE] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2165), + [anon_sym_LT_QMARK] = ACTIONS(2165), + [aux_sym__html_block_4_token1] = ACTIONS(2165), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2163), + [aux_sym__html_block_6_token1] = ACTIONS(2165), + [aux_sym__html_block_6_token2] = ACTIONS(2163), + [sym__open_tag_html_block] = ACTIONS(2163), + [sym__open_tag_html_block_newline] = ACTIONS(2163), + [sym__closing_tag_html_block] = ACTIONS(2163), + [sym__closing_tag_html_block_newline] = ACTIONS(2163), + [sym_backslash_escape] = ACTIONS(2163), + [sym_uri_autolink] = ACTIONS(2163), + [sym_email_autolink] = ACTIONS(2163), + [sym_entity_reference] = ACTIONS(2163), + [sym_numeric_character_reference] = ACTIONS(2163), + [sym__whitespace_ge_2] = ACTIONS(2163), + [aux_sym__whitespace_token1] = ACTIONS(2165), + [sym__word_no_digit] = ACTIONS(2163), + [sym__digits] = ACTIONS(2163), + [aux_sym__newline_token1] = ACTIONS(2163), + [sym__block_close] = ACTIONS(2163), + [sym__block_quote_start] = ACTIONS(2163), + [sym__indented_chunk_start] = ACTIONS(2163), + [sym_atx_h1_marker] = ACTIONS(2163), + [sym_atx_h2_marker] = ACTIONS(2163), + [sym_atx_h3_marker] = ACTIONS(2163), + [sym_atx_h4_marker] = ACTIONS(2163), + [sym_atx_h5_marker] = ACTIONS(2163), + [sym_atx_h6_marker] = ACTIONS(2163), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2163), + [sym__thematic_break] = ACTIONS(2163), + [sym__list_marker_minus] = ACTIONS(2163), + [sym__list_marker_plus] = ACTIONS(2163), + [sym__list_marker_star] = ACTIONS(2163), + [sym__list_marker_parenthesis] = ACTIONS(2163), + [sym__list_marker_dot] = ACTIONS(2163), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2163), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2163), + [sym__fenced_code_block_start_backtick] = ACTIONS(2163), + [sym__fenced_code_block_start_tilde] = ACTIONS(2163), + [sym__blank_line_start] = ACTIONS(2163), + [sym__code_span_start] = ACTIONS(2163), + [sym__emphasis_open_star] = ACTIONS(2163), + [sym__emphasis_open_underscore] = ACTIONS(2163), }, [426] = { - [sym_shortcut_link] = STATE(387), - [sym_full_reference_link] = STATE(387), - [sym_collapsed_reference_link] = STATE(387), - [sym_inline_link] = STATE(387), - [sym_image] = STATE(387), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym_hard_line_break] = STATE(387), - [sym_html_tag] = STATE(387), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(387), - [sym__word] = STATE(387), - [sym__text_inline_no_underscore] = STATE(387), - [sym__inline_element_no_newline_no_underscore] = STATE(387), - [aux_sym__inline_no_newline_no_underscore] = STATE(387), - [sym__emphasis_star_no_newline] = STATE(874), - [sym__strong_emphasis_star_no_newline] = STATE(387), - [sym__emphasis_underscore_no_newline] = STATE(874), - [sym__strong_emphasis_underscore_no_newline] = STATE(387), - [sym__code_span_no_newline] = STATE(387), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_BSLASH] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_QMARK] = ACTIONS(1982), - [aux_sym__html_block_4_token1] = ACTIONS(1984), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1986), - [sym_backslash_escape] = ACTIONS(1988), - [sym_uri_autolink] = ACTIONS(1988), - [sym_email_autolink] = ACTIONS(1988), - [sym_entity_reference] = ACTIONS(1988), - [sym_numeric_character_reference] = ACTIONS(1988), - [sym__whitespace_ge_2] = ACTIONS(1990), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(1988), - [sym__digits] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1992), - [sym__emphasis_open_star] = ACTIONS(1994), - [sym__emphasis_open_underscore] = ACTIONS(1996), - [sym__emphasis_close_underscore] = ACTIONS(2202), + [sym_shortcut_link] = STATE(394), + [sym_full_reference_link] = STATE(394), + [sym_collapsed_reference_link] = STATE(394), + [sym_inline_link] = STATE(394), + [sym_image] = STATE(394), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), + [sym_hard_line_break] = STATE(394), + [sym_html_tag] = STATE(394), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(394), + [sym__word] = STATE(394), + [sym__text_inline_no_underscore] = STATE(394), + [sym__inline_element_no_newline_no_underscore] = STATE(394), + [aux_sym__inline_no_newline_no_underscore] = STATE(394), + [sym__emphasis_star_no_newline] = STATE(863), + [sym__strong_emphasis_star_no_newline] = STATE(394), + [sym__emphasis_underscore_no_newline] = STATE(864), + [sym__strong_emphasis_underscore_no_newline] = STATE(394), + [sym__code_span_no_newline] = STATE(394), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1523), + [anon_sym_DOLLAR] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1523), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_AT] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_BSLASH] = ACTIONS(2191), + [anon_sym_RBRACK] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym__] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2194), + [anon_sym_LT_QMARK] = ACTIONS(2197), + [aux_sym__html_block_4_token1] = ACTIONS(2200), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2203), + [sym_backslash_escape] = ACTIONS(2206), + [sym_uri_autolink] = ACTIONS(2206), + [sym_email_autolink] = ACTIONS(2206), + [sym_entity_reference] = ACTIONS(2206), + [sym_numeric_character_reference] = ACTIONS(2206), + [sym__whitespace_ge_2] = ACTIONS(2209), + [aux_sym__whitespace_token1] = ACTIONS(1556), + [sym__word_no_digit] = ACTIONS(2206), + [sym__digits] = ACTIONS(2206), + [aux_sym__newline_token1] = ACTIONS(2068), + [sym__code_span_start] = ACTIONS(2212), + [sym__emphasis_open_star] = ACTIONS(2215), + [sym__emphasis_open_underscore] = ACTIONS(2218), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [aux_sym__html_block_1_token1] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2072), - [anon_sym_PERCENT] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_COMMA] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_DOT] = ACTIONS(2072), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LT] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(2072), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_QMARK] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_BSLASH] = ACTIONS(2074), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym__] = ACTIONS(2072), - [anon_sym_BQUOTE] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2074), - [anon_sym_LT_QMARK] = ACTIONS(2074), - [aux_sym__html_block_4_token1] = ACTIONS(2074), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2072), - [aux_sym__html_block_6_token1] = ACTIONS(2074), - [aux_sym__html_block_6_token2] = ACTIONS(2072), - [sym__open_tag_html_block] = ACTIONS(2072), - [sym__open_tag_html_block_newline] = ACTIONS(2072), - [sym__closing_tag_html_block] = ACTIONS(2072), - [sym__closing_tag_html_block_newline] = ACTIONS(2072), - [sym_backslash_escape] = ACTIONS(2072), - [sym_uri_autolink] = ACTIONS(2072), - [sym_email_autolink] = ACTIONS(2072), - [sym_entity_reference] = ACTIONS(2072), - [sym_numeric_character_reference] = ACTIONS(2072), - [sym__whitespace_ge_2] = ACTIONS(2072), - [aux_sym__whitespace_token1] = ACTIONS(2074), - [sym__word_no_digit] = ACTIONS(2072), - [sym__digits] = ACTIONS(2072), - [aux_sym__newline_token1] = ACTIONS(2072), - [sym__block_quote_start] = ACTIONS(2072), - [sym__indented_chunk_start] = ACTIONS(2072), - [sym_atx_h1_marker] = ACTIONS(2072), - [sym_atx_h2_marker] = ACTIONS(2072), - [sym_atx_h3_marker] = ACTIONS(2072), - [sym_atx_h4_marker] = ACTIONS(2072), - [sym_atx_h5_marker] = ACTIONS(2072), - [sym_atx_h6_marker] = ACTIONS(2072), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2072), - [sym__thematic_break] = ACTIONS(2072), - [sym__list_marker_minus] = ACTIONS(2072), - [sym__list_marker_plus] = ACTIONS(2072), - [sym__list_marker_star] = ACTIONS(2072), - [sym__list_marker_parenthesis] = ACTIONS(2072), - [sym__list_marker_dot] = ACTIONS(2072), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2072), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2072), - [sym__fenced_code_block_start_backtick] = ACTIONS(2072), - [sym__fenced_code_block_start_tilde] = ACTIONS(2072), - [sym__blank_line_start] = ACTIONS(2072), - [sym__code_span_start] = ACTIONS(2072), - [sym__emphasis_open_star] = ACTIONS(2072), - [sym__emphasis_open_underscore] = ACTIONS(2072), + [ts_builtin_sym_end] = ACTIONS(2139), + [aux_sym__html_block_1_token1] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_DOLLAR] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_RPAREN] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_COLON] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_EQ] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_QMARK] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_BSLASH] = ACTIONS(2141), + [anon_sym_RBRACK] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym__] = ACTIONS(2139), + [anon_sym_BQUOTE] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2141), + [anon_sym_LT_QMARK] = ACTIONS(2141), + [aux_sym__html_block_4_token1] = ACTIONS(2141), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2139), + [aux_sym__html_block_6_token1] = ACTIONS(2141), + [aux_sym__html_block_6_token2] = ACTIONS(2139), + [sym__open_tag_html_block] = ACTIONS(2139), + [sym__open_tag_html_block_newline] = ACTIONS(2139), + [sym__closing_tag_html_block] = ACTIONS(2139), + [sym__closing_tag_html_block_newline] = ACTIONS(2139), + [sym_backslash_escape] = ACTIONS(2139), + [sym_uri_autolink] = ACTIONS(2139), + [sym_email_autolink] = ACTIONS(2139), + [sym_entity_reference] = ACTIONS(2139), + [sym_numeric_character_reference] = ACTIONS(2139), + [sym__whitespace_ge_2] = ACTIONS(2139), + [aux_sym__whitespace_token1] = ACTIONS(2141), + [sym__word_no_digit] = ACTIONS(2139), + [sym__digits] = ACTIONS(2139), + [aux_sym__newline_token1] = ACTIONS(2139), + [sym__block_quote_start] = ACTIONS(2139), + [sym__indented_chunk_start] = ACTIONS(2139), + [sym_atx_h1_marker] = ACTIONS(2139), + [sym_atx_h2_marker] = ACTIONS(2139), + [sym_atx_h3_marker] = ACTIONS(2139), + [sym_atx_h4_marker] = ACTIONS(2139), + [sym_atx_h5_marker] = ACTIONS(2139), + [sym_atx_h6_marker] = ACTIONS(2139), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2139), + [sym__thematic_break] = ACTIONS(2139), + [sym__list_marker_minus] = ACTIONS(2139), + [sym__list_marker_plus] = ACTIONS(2139), + [sym__list_marker_star] = ACTIONS(2139), + [sym__list_marker_parenthesis] = ACTIONS(2139), + [sym__list_marker_dot] = ACTIONS(2139), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2139), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2139), + [sym__fenced_code_block_start_backtick] = ACTIONS(2139), + [sym__fenced_code_block_start_tilde] = ACTIONS(2139), + [sym__blank_line_start] = ACTIONS(2139), + [sym__code_span_start] = ACTIONS(2139), + [sym__emphasis_open_star] = ACTIONS(2139), + [sym__emphasis_open_underscore] = ACTIONS(2139), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [aux_sym__html_block_1_token1] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_COLON] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_BSLASH] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym__] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1840), - [anon_sym_LT_QMARK] = ACTIONS(1840), - [aux_sym__html_block_4_token1] = ACTIONS(1840), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1838), - [aux_sym__html_block_6_token1] = ACTIONS(1840), - [aux_sym__html_block_6_token2] = ACTIONS(1838), - [sym__open_tag_html_block] = ACTIONS(1838), - [sym__open_tag_html_block_newline] = ACTIONS(1838), - [sym__closing_tag_html_block] = ACTIONS(1838), - [sym__closing_tag_html_block_newline] = ACTIONS(1838), - [sym_backslash_escape] = ACTIONS(1838), - [sym_uri_autolink] = ACTIONS(1838), - [sym_email_autolink] = ACTIONS(1838), - [sym_entity_reference] = ACTIONS(1838), - [sym_numeric_character_reference] = ACTIONS(1838), - [sym__whitespace_ge_2] = ACTIONS(1838), - [aux_sym__whitespace_token1] = ACTIONS(1840), - [sym__word_no_digit] = ACTIONS(1838), - [sym__digits] = ACTIONS(1838), - [aux_sym__newline_token1] = ACTIONS(1838), - [sym__block_quote_start] = ACTIONS(1838), - [sym__indented_chunk_start] = ACTIONS(1838), - [sym_atx_h1_marker] = ACTIONS(1838), - [sym_atx_h2_marker] = ACTIONS(1838), - [sym_atx_h3_marker] = ACTIONS(1838), - [sym_atx_h4_marker] = ACTIONS(1838), - [sym_atx_h5_marker] = ACTIONS(1838), - [sym_atx_h6_marker] = ACTIONS(1838), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(1838), - [sym__thematic_break] = ACTIONS(1838), - [sym__list_marker_minus] = ACTIONS(1838), - [sym__list_marker_plus] = ACTIONS(1838), - [sym__list_marker_star] = ACTIONS(1838), - [sym__list_marker_parenthesis] = ACTIONS(1838), - [sym__list_marker_dot] = ACTIONS(1838), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1838), - [sym__fenced_code_block_start_backtick] = ACTIONS(1838), - [sym__fenced_code_block_start_tilde] = ACTIONS(1838), - [sym__blank_line_start] = ACTIONS(1838), - [sym__code_span_start] = ACTIONS(1838), - [sym__emphasis_open_star] = ACTIONS(1838), - [sym__emphasis_open_underscore] = ACTIONS(1838), + [aux_sym__html_block_1_token1] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_PERCENT] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_COMMA] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2157), + [anon_sym_COLON] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_EQ] = ACTIONS(2157), + [anon_sym_GT] = ACTIONS(2157), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_AT] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_BSLASH] = ACTIONS(2159), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_CARET] = ACTIONS(2157), + [anon_sym__] = ACTIONS(2157), + [anon_sym_BQUOTE] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_TILDE] = ACTIONS(2157), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2159), + [anon_sym_LT_QMARK] = ACTIONS(2159), + [aux_sym__html_block_4_token1] = ACTIONS(2159), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2157), + [aux_sym__html_block_6_token1] = ACTIONS(2159), + [aux_sym__html_block_6_token2] = ACTIONS(2157), + [sym__open_tag_html_block] = ACTIONS(2157), + [sym__open_tag_html_block_newline] = ACTIONS(2157), + [sym__closing_tag_html_block] = ACTIONS(2157), + [sym__closing_tag_html_block_newline] = ACTIONS(2157), + [sym_backslash_escape] = ACTIONS(2157), + [sym_uri_autolink] = ACTIONS(2157), + [sym_email_autolink] = ACTIONS(2157), + [sym_entity_reference] = ACTIONS(2157), + [sym_numeric_character_reference] = ACTIONS(2157), + [sym__whitespace_ge_2] = ACTIONS(2157), + [aux_sym__whitespace_token1] = ACTIONS(2159), + [sym__word_no_digit] = ACTIONS(2157), + [sym__digits] = ACTIONS(2157), + [aux_sym__newline_token1] = ACTIONS(2157), + [sym__block_close] = ACTIONS(2157), + [sym__block_quote_start] = ACTIONS(2157), + [sym__indented_chunk_start] = ACTIONS(2157), + [sym_atx_h1_marker] = ACTIONS(2157), + [sym_atx_h2_marker] = ACTIONS(2157), + [sym_atx_h3_marker] = ACTIONS(2157), + [sym_atx_h4_marker] = ACTIONS(2157), + [sym_atx_h5_marker] = ACTIONS(2157), + [sym_atx_h6_marker] = ACTIONS(2157), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2157), + [sym__thematic_break] = ACTIONS(2157), + [sym__list_marker_minus] = ACTIONS(2157), + [sym__list_marker_plus] = ACTIONS(2157), + [sym__list_marker_star] = ACTIONS(2157), + [sym__list_marker_parenthesis] = ACTIONS(2157), + [sym__list_marker_dot] = ACTIONS(2157), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2157), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2157), + [sym__fenced_code_block_start_backtick] = ACTIONS(2157), + [sym__fenced_code_block_start_tilde] = ACTIONS(2157), + [sym__blank_line_start] = ACTIONS(2157), + [sym__code_span_start] = ACTIONS(2157), + [sym__emphasis_open_star] = ACTIONS(2157), + [sym__emphasis_open_underscore] = ACTIONS(2157), }, [429] = { - [sym_shortcut_link] = STATE(385), - [sym_full_reference_link] = STATE(385), - [sym_collapsed_reference_link] = STATE(385), - [sym_inline_link] = STATE(385), - [sym_image] = STATE(385), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), - [sym_hard_line_break] = STATE(385), - [sym_html_tag] = STATE(385), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(385), - [sym__word] = STATE(385), - [sym__text_inline_no_star] = STATE(385), - [sym__inline_element_no_newline_no_star] = STATE(385), - [aux_sym__inline_no_newline_no_star] = STATE(385), - [sym__emphasis_star_no_newline] = STATE(876), - [sym__strong_emphasis_star_no_newline] = STATE(385), - [sym__emphasis_underscore_no_newline] = STATE(876), - [sym__strong_emphasis_underscore_no_newline] = STATE(385), - [sym__code_span_no_newline] = STATE(385), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_BSLASH] = ACTIONS(1808), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1810), - [anon_sym_LT_QMARK] = ACTIONS(1812), - [aux_sym__html_block_4_token1] = ACTIONS(1814), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1816), - [sym_backslash_escape] = ACTIONS(1818), - [sym_uri_autolink] = ACTIONS(1818), - [sym_email_autolink] = ACTIONS(1818), - [sym_entity_reference] = ACTIONS(1818), - [sym_numeric_character_reference] = ACTIONS(1818), - [sym__whitespace_ge_2] = ACTIONS(1820), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(1818), - [sym__digits] = ACTIONS(1818), - [sym__code_span_start] = ACTIONS(1822), - [sym__emphasis_open_star] = ACTIONS(1824), - [sym__emphasis_open_underscore] = ACTIONS(1826), - [sym__emphasis_close_star] = ACTIONS(2204), + [aux_sym__html_block_1_token1] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_RPAREN] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_COMMA] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_COLON] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_EQ] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2151), + [anon_sym_QMARK] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_BSLASH] = ACTIONS(2153), + [anon_sym_RBRACK] = ACTIONS(2151), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym__] = ACTIONS(2151), + [anon_sym_BQUOTE] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2153), + [anon_sym_LT_QMARK] = ACTIONS(2153), + [aux_sym__html_block_4_token1] = ACTIONS(2153), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2151), + [aux_sym__html_block_6_token1] = ACTIONS(2153), + [aux_sym__html_block_6_token2] = ACTIONS(2151), + [sym__open_tag_html_block] = ACTIONS(2151), + [sym__open_tag_html_block_newline] = ACTIONS(2151), + [sym__closing_tag_html_block] = ACTIONS(2151), + [sym__closing_tag_html_block_newline] = ACTIONS(2151), + [sym_backslash_escape] = ACTIONS(2151), + [sym_uri_autolink] = ACTIONS(2151), + [sym_email_autolink] = ACTIONS(2151), + [sym_entity_reference] = ACTIONS(2151), + [sym_numeric_character_reference] = ACTIONS(2151), + [sym__whitespace_ge_2] = ACTIONS(2151), + [aux_sym__whitespace_token1] = ACTIONS(2153), + [sym__word_no_digit] = ACTIONS(2151), + [sym__digits] = ACTIONS(2151), + [aux_sym__newline_token1] = ACTIONS(2151), + [sym__block_close] = ACTIONS(2151), + [sym__block_quote_start] = ACTIONS(2151), + [sym__indented_chunk_start] = ACTIONS(2151), + [sym_atx_h1_marker] = ACTIONS(2151), + [sym_atx_h2_marker] = ACTIONS(2151), + [sym_atx_h3_marker] = ACTIONS(2151), + [sym_atx_h4_marker] = ACTIONS(2151), + [sym_atx_h5_marker] = ACTIONS(2151), + [sym_atx_h6_marker] = ACTIONS(2151), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2151), + [sym__thematic_break] = ACTIONS(2151), + [sym__list_marker_minus] = ACTIONS(2151), + [sym__list_marker_plus] = ACTIONS(2151), + [sym__list_marker_star] = ACTIONS(2151), + [sym__list_marker_parenthesis] = ACTIONS(2151), + [sym__list_marker_dot] = ACTIONS(2151), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2151), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2151), + [sym__fenced_code_block_start_backtick] = ACTIONS(2151), + [sym__fenced_code_block_start_tilde] = ACTIONS(2151), + [sym__blank_line_start] = ACTIONS(2151), + [sym__code_span_start] = ACTIONS(2151), + [sym__emphasis_open_star] = ACTIONS(2151), + [sym__emphasis_open_underscore] = ACTIONS(2151), }, [430] = { - [sym_shortcut_link] = STATE(391), - [sym_full_reference_link] = STATE(391), - [sym_collapsed_reference_link] = STATE(391), - [sym_inline_link] = STATE(391), - [sym_image] = STATE(391), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym_hard_line_break] = STATE(391), - [sym_html_tag] = STATE(391), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(391), - [sym__word] = STATE(391), - [sym__text_inline_no_underscore] = STATE(391), - [sym__inline_element_no_newline_no_underscore] = STATE(391), - [aux_sym__inline_no_newline_no_underscore] = STATE(391), - [sym__emphasis_star_no_newline] = STATE(874), - [sym__strong_emphasis_star_no_newline] = STATE(391), - [sym__emphasis_underscore_no_newline] = STATE(854), - [sym__strong_emphasis_underscore_no_newline] = STATE(391), - [sym__code_span_no_newline] = STATE(391), - [anon_sym_BANG] = ACTIONS(2206), - [anon_sym_DQUOTE] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_DOT] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_COLON] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_BSLASH] = ACTIONS(2212), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym__] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2215), - [anon_sym_LT_QMARK] = ACTIONS(2218), - [aux_sym__html_block_4_token1] = ACTIONS(2221), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2224), - [sym_backslash_escape] = ACTIONS(2227), - [sym_uri_autolink] = ACTIONS(2227), - [sym_email_autolink] = ACTIONS(2227), - [sym_entity_reference] = ACTIONS(2227), - [sym_numeric_character_reference] = ACTIONS(2227), - [sym__whitespace_ge_2] = ACTIONS(2230), - [aux_sym__whitespace_token1] = ACTIONS(1337), - [sym__word_no_digit] = ACTIONS(2227), - [sym__digits] = ACTIONS(2227), - [sym__code_span_start] = ACTIONS(2233), - [sym__emphasis_open_star] = ACTIONS(2236), - [sym__emphasis_open_underscore] = ACTIONS(2239), - [sym__emphasis_close_star] = ACTIONS(1352), + [aux_sym__html_block_1_token1] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_DOLLAR] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_RPAREN] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_DOT] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_COLON] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_EQ] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [anon_sym_QMARK] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_BSLASH] = ACTIONS(2149), + [anon_sym_RBRACK] = ACTIONS(2147), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym__] = ACTIONS(2147), + [anon_sym_BQUOTE] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2149), + [anon_sym_LT_QMARK] = ACTIONS(2149), + [aux_sym__html_block_4_token1] = ACTIONS(2149), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2147), + [aux_sym__html_block_6_token1] = ACTIONS(2149), + [aux_sym__html_block_6_token2] = ACTIONS(2147), + [sym__open_tag_html_block] = ACTIONS(2147), + [sym__open_tag_html_block_newline] = ACTIONS(2147), + [sym__closing_tag_html_block] = ACTIONS(2147), + [sym__closing_tag_html_block_newline] = ACTIONS(2147), + [sym_backslash_escape] = ACTIONS(2147), + [sym_uri_autolink] = ACTIONS(2147), + [sym_email_autolink] = ACTIONS(2147), + [sym_entity_reference] = ACTIONS(2147), + [sym_numeric_character_reference] = ACTIONS(2147), + [sym__whitespace_ge_2] = ACTIONS(2147), + [aux_sym__whitespace_token1] = ACTIONS(2149), + [sym__word_no_digit] = ACTIONS(2147), + [sym__digits] = ACTIONS(2147), + [aux_sym__newline_token1] = ACTIONS(2147), + [sym__block_close] = ACTIONS(2147), + [sym__block_quote_start] = ACTIONS(2147), + [sym__indented_chunk_start] = ACTIONS(2147), + [sym_atx_h1_marker] = ACTIONS(2147), + [sym_atx_h2_marker] = ACTIONS(2147), + [sym_atx_h3_marker] = ACTIONS(2147), + [sym_atx_h4_marker] = ACTIONS(2147), + [sym_atx_h5_marker] = ACTIONS(2147), + [sym_atx_h6_marker] = ACTIONS(2147), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2147), + [sym__thematic_break] = ACTIONS(2147), + [sym__list_marker_minus] = ACTIONS(2147), + [sym__list_marker_plus] = ACTIONS(2147), + [sym__list_marker_star] = ACTIONS(2147), + [sym__list_marker_parenthesis] = ACTIONS(2147), + [sym__list_marker_dot] = ACTIONS(2147), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_star_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2147), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(2147), + [sym__fenced_code_block_start_backtick] = ACTIONS(2147), + [sym__fenced_code_block_start_tilde] = ACTIONS(2147), + [sym__blank_line_start] = ACTIONS(2147), + [sym__code_span_start] = ACTIONS(2147), + [sym__emphasis_open_star] = ACTIONS(2147), + [sym__emphasis_open_underscore] = ACTIONS(2147), }, [431] = { - [sym__block_interrupt_paragraph] = STATE(1734), - [sym__blank_line] = STATE(1734), - [sym_block_quote] = STATE(1734), - [sym_atx_heading] = STATE(1734), - [sym_setext_h1_underline] = STATE(1734), - [sym_setext_h2_underline] = STATE(1734), - [sym_thematic_break] = STATE(1734), - [sym_fenced_code_block] = STATE(1734), - [sym__html_block_1] = STATE(1734), - [sym__html_block_2] = STATE(1734), - [sym__html_block_3] = STATE(1734), - [sym__html_block_4] = STATE(1734), - [sym__html_block_5] = STATE(1734), - [sym__html_block_6] = STATE(1734), - [aux_sym__html_block_1_token1] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_COLON] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_AT] = ACTIONS(394), - [anon_sym_LBRACK] = ACTIONS(394), - [anon_sym_BSLASH] = ACTIONS(394), - [anon_sym_RBRACK] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym__] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(394), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2244), - [anon_sym_LT_QMARK] = ACTIONS(2246), - [aux_sym__html_block_4_token1] = ACTIONS(2248), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2250), - [aux_sym__html_block_6_token1] = ACTIONS(2252), - [aux_sym__html_block_6_token2] = ACTIONS(2254), - [sym__whitespace_ge_2] = ACTIONS(394), - [aux_sym__whitespace_token1] = ACTIONS(396), - [sym__word_no_digit] = ACTIONS(394), - [sym__digits] = ACTIONS(394), - [aux_sym__newline_token1] = ACTIONS(394), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(2256), - [sym_atx_h1_marker] = ACTIONS(2258), - [sym_atx_h2_marker] = ACTIONS(2258), - [sym_atx_h3_marker] = ACTIONS(2258), - [sym_atx_h4_marker] = ACTIONS(2258), - [sym_atx_h5_marker] = ACTIONS(2258), - [sym_atx_h6_marker] = ACTIONS(2258), - [sym__setext_h1_underline] = ACTIONS(2260), - [sym__setext_h2_underline] = ACTIONS(2262), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2264), - [sym__thematic_break] = ACTIONS(2266), - [sym__list_marker_minus] = ACTIONS(2268), - [sym__list_marker_plus] = ACTIONS(2268), - [sym__list_marker_star] = ACTIONS(2268), - [sym__list_marker_parenthesis] = ACTIONS(2268), - [sym__list_marker_dot] = ACTIONS(2268), - [sym__fenced_code_block_start_backtick] = ACTIONS(2270), - [sym__fenced_code_block_start_tilde] = ACTIONS(2272), - [sym__blank_line_start] = ACTIONS(2274), + [sym_shortcut_link] = STATE(411), + [sym_full_reference_link] = STATE(411), + [sym_collapsed_reference_link] = STATE(411), + [sym_inline_link] = STATE(411), + [sym_image] = STATE(411), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__link_text] = STATE(2096), + [sym__link_text_non_empty] = STATE(695), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(696), + [sym_hard_line_break] = STATE(411), + [sym_html_tag] = STATE(411), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(411), + [sym__word] = STATE(411), + [sym__text_inline_no_star] = STATE(411), + [sym__inline_element_no_newline_no_star] = STATE(411), + [aux_sym__inline_no_newline_no_star] = STATE(411), + [sym__emphasis_star_no_newline] = STATE(839), + [sym__strong_emphasis_star_no_newline] = STATE(411), + [sym__emphasis_underscore_no_newline] = STATE(853), + [sym__strong_emphasis_underscore_no_newline] = STATE(411), + [sym__code_span_no_newline] = STATE(411), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(875), + [anon_sym_POUND] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(875), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_COMMA] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_BSLASH] = ACTIONS(1787), + [anon_sym_RBRACK] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(875), + [anon_sym__] = ACTIONS(875), + [anon_sym_BQUOTE] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1789), + [anon_sym_LT_QMARK] = ACTIONS(1791), + [aux_sym__html_block_4_token1] = ACTIONS(1793), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1795), + [sym_backslash_escape] = ACTIONS(2221), + [sym_uri_autolink] = ACTIONS(2221), + [sym_email_autolink] = ACTIONS(2221), + [sym_entity_reference] = ACTIONS(2221), + [sym_numeric_character_reference] = ACTIONS(2221), + [sym__whitespace_ge_2] = ACTIONS(1799), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(2221), + [sym__digits] = ACTIONS(2221), + [sym__code_span_start] = ACTIONS(1801), + [sym__emphasis_open_star] = ACTIONS(1803), + [sym__emphasis_open_underscore] = ACTIONS(1805), }, [432] = { - [sym_shortcut_link] = STATE(426), - [sym_full_reference_link] = STATE(426), - [sym_collapsed_reference_link] = STATE(426), - [sym_inline_link] = STATE(426), - [sym_image] = STATE(426), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_link_text] = STATE(2094), - [sym__link_text_non_empty] = STATE(727), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(729), - [sym_hard_line_break] = STATE(426), - [sym_html_tag] = STATE(426), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(426), - [sym__word] = STATE(426), - [sym__text_inline_no_underscore] = STATE(426), - [sym__inline_element_no_newline_no_underscore] = STATE(426), - [aux_sym__inline_no_newline_no_underscore] = STATE(426), - [sym__emphasis_star_no_newline] = STATE(874), - [sym__strong_emphasis_star_no_newline] = STATE(426), - [sym__emphasis_underscore_no_newline] = STATE(890), - [sym__strong_emphasis_underscore_no_newline] = STATE(426), - [sym__code_span_no_newline] = STATE(426), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_DQUOTE] = ACTIONS(631), - [anon_sym_POUND] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_BSLASH] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym__] = ACTIONS(631), - [anon_sym_BQUOTE] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(631), - [anon_sym_PIPE] = ACTIONS(631), - [anon_sym_RBRACE] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1980), - [anon_sym_LT_QMARK] = ACTIONS(1982), - [aux_sym__html_block_4_token1] = ACTIONS(1984), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1986), - [sym_backslash_escape] = ACTIONS(2276), - [sym_uri_autolink] = ACTIONS(2276), - [sym_email_autolink] = ACTIONS(2276), - [sym_entity_reference] = ACTIONS(2276), - [sym_numeric_character_reference] = ACTIONS(2276), - [sym__whitespace_ge_2] = ACTIONS(1990), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(2276), - [sym__digits] = ACTIONS(2276), - [sym__code_span_start] = ACTIONS(1992), - [sym__emphasis_open_star] = ACTIONS(1994), - [sym__emphasis_open_underscore] = ACTIONS(1996), + [sym__block_interrupt_paragraph] = STATE(1739), + [sym__blank_line] = STATE(1739), + [sym_block_quote] = STATE(1739), + [sym_atx_heading] = STATE(1739), + [sym_setext_h1_underline] = STATE(1739), + [sym_setext_h2_underline] = STATE(1739), + [sym_thematic_break] = STATE(1739), + [sym_fenced_code_block] = STATE(1739), + [sym__html_block_1] = STATE(1739), + [sym__html_block_2] = STATE(1739), + [sym__html_block_3] = STATE(1739), + [sym__html_block_4] = STATE(1739), + [sym__html_block_5] = STATE(1739), + [sym__html_block_6] = STATE(1739), + [aux_sym__html_block_1_token1] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_PERCENT] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_SLASH] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(419), + [anon_sym_CARET] = ACTIONS(419), + [anon_sym__] = ACTIONS(419), + [anon_sym_BQUOTE] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2225), + [anon_sym_LT_QMARK] = ACTIONS(2227), + [aux_sym__html_block_4_token1] = ACTIONS(2229), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2231), + [aux_sym__html_block_6_token1] = ACTIONS(2233), + [aux_sym__html_block_6_token2] = ACTIONS(2235), + [sym__whitespace_ge_2] = ACTIONS(419), + [aux_sym__whitespace_token1] = ACTIONS(421), + [sym__word_no_digit] = ACTIONS(419), + [sym__digits] = ACTIONS(419), + [aux_sym__newline_token1] = ACTIONS(419), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(2237), + [sym_atx_h1_marker] = ACTIONS(2239), + [sym_atx_h2_marker] = ACTIONS(2239), + [sym_atx_h3_marker] = ACTIONS(2239), + [sym_atx_h4_marker] = ACTIONS(2239), + [sym_atx_h5_marker] = ACTIONS(2239), + [sym_atx_h6_marker] = ACTIONS(2239), + [sym__setext_h1_underline] = ACTIONS(2241), + [sym__setext_h2_underline] = ACTIONS(2243), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2245), + [sym__thematic_break] = ACTIONS(2247), + [sym__list_marker_minus] = ACTIONS(2249), + [sym__list_marker_plus] = ACTIONS(2249), + [sym__list_marker_star] = ACTIONS(2249), + [sym__list_marker_parenthesis] = ACTIONS(2249), + [sym__list_marker_dot] = ACTIONS(2249), + [sym__fenced_code_block_start_backtick] = ACTIONS(2251), + [sym__fenced_code_block_start_tilde] = ACTIONS(2253), + [sym__blank_line_start] = ACTIONS(2255), }, [433] = { - [sym__block_interrupt_paragraph] = STATE(1737), - [sym__blank_line] = STATE(1737), - [sym_block_quote] = STATE(1737), - [sym_atx_heading] = STATE(1737), - [sym_setext_h1_underline] = STATE(1737), - [sym_setext_h2_underline] = STATE(1737), - [sym_thematic_break] = STATE(1737), - [sym_fenced_code_block] = STATE(1737), - [sym__html_block_1] = STATE(1737), - [sym__html_block_2] = STATE(1737), - [sym__html_block_3] = STATE(1737), - [sym__html_block_4] = STATE(1737), - [sym__html_block_5] = STATE(1737), - [sym__html_block_6] = STATE(1737), - [aux_sym__html_block_1_token1] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DQUOTE] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_DOLLAR] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_BSLASH] = ACTIONS(436), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym__] = ACTIONS(436), - [anon_sym_BQUOTE] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2244), - [anon_sym_LT_QMARK] = ACTIONS(2246), - [aux_sym__html_block_4_token1] = ACTIONS(2248), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2250), - [aux_sym__html_block_6_token1] = ACTIONS(2252), - [aux_sym__html_block_6_token2] = ACTIONS(2254), - [sym__whitespace_ge_2] = ACTIONS(436), - [aux_sym__whitespace_token1] = ACTIONS(438), - [sym__word_no_digit] = ACTIONS(436), - [sym__digits] = ACTIONS(436), - [aux_sym__newline_token1] = ACTIONS(436), - [sym__split_token] = ACTIONS(410), - [sym__soft_line_break_marker] = ACTIONS(410), - [sym__block_quote_start] = ACTIONS(2256), - [sym_atx_h1_marker] = ACTIONS(2258), - [sym_atx_h2_marker] = ACTIONS(2258), - [sym_atx_h3_marker] = ACTIONS(2258), - [sym_atx_h4_marker] = ACTIONS(2258), - [sym_atx_h5_marker] = ACTIONS(2258), - [sym_atx_h6_marker] = ACTIONS(2258), - [sym__setext_h1_underline] = ACTIONS(2260), - [sym__setext_h2_underline] = ACTIONS(2262), - [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2264), - [sym__thematic_break] = ACTIONS(2266), - [sym__list_marker_minus] = ACTIONS(2278), - [sym__list_marker_plus] = ACTIONS(2278), - [sym__list_marker_star] = ACTIONS(2278), - [sym__list_marker_parenthesis] = ACTIONS(2278), - [sym__list_marker_dot] = ACTIONS(2278), - [sym__fenced_code_block_start_backtick] = ACTIONS(2270), - [sym__fenced_code_block_start_tilde] = ACTIONS(2272), - [sym__blank_line_start] = ACTIONS(2274), - }, - [434] = { [sym_shortcut_link] = STATE(374), [sym_full_reference_link] = STATE(374), [sym_collapsed_reference_link] = STATE(374), [sym_inline_link] = STATE(374), [sym_image] = STATE(374), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_link_text] = STATE(2092), - [sym__link_text_non_empty] = STATE(693), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(694), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__link_text] = STATE(2117), + [sym__link_text_non_empty] = STATE(689), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(717), [sym_hard_line_break] = STATE(374), [sym_html_tag] = STATE(374), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), [sym__whitespace] = STATE(374), [sym__word] = STATE(374), - [sym__text_inline_no_star] = STATE(374), - [sym__inline_element_no_newline_no_star] = STATE(374), - [aux_sym__inline_no_newline_no_star] = STATE(374), - [sym__emphasis_star_no_newline] = STATE(853), + [sym__text_inline_no_underscore] = STATE(374), + [sym__inline_element_no_newline_no_underscore] = STATE(374), + [aux_sym__inline_no_newline_no_underscore] = STATE(374), + [sym__emphasis_star_no_newline] = STATE(863), [sym__strong_emphasis_star_no_newline] = STATE(374), - [sym__emphasis_underscore_no_newline] = STATE(876), + [sym__emphasis_underscore_no_newline] = STATE(921), [sym__strong_emphasis_underscore_no_newline] = STATE(374), [sym__code_span_no_newline] = STATE(374), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(828), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_AMP] = ACTIONS(830), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_STAR] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_COMMA] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_DOT] = ACTIONS(828), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(828), - [anon_sym_SEMI] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(828), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(828), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_BSLASH] = ACTIONS(1808), - [anon_sym_RBRACK] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(828), - [anon_sym__] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(828), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1810), - [anon_sym_LT_QMARK] = ACTIONS(1812), - [aux_sym__html_block_4_token1] = ACTIONS(1814), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1816), - [sym_backslash_escape] = ACTIONS(2280), - [sym_uri_autolink] = ACTIONS(2280), - [sym_email_autolink] = ACTIONS(2280), - [sym_entity_reference] = ACTIONS(2280), - [sym_numeric_character_reference] = ACTIONS(2280), - [sym__whitespace_ge_2] = ACTIONS(1820), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(2280), - [sym__digits] = ACTIONS(2280), - [sym__code_span_start] = ACTIONS(1822), - [sym__emphasis_open_star] = ACTIONS(1824), - [sym__emphasis_open_underscore] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(630), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_BSLASH] = ACTIONS(1813), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym__] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(1815), + [anon_sym_LT_QMARK] = ACTIONS(1817), + [aux_sym__html_block_4_token1] = ACTIONS(1819), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(1821), + [sym_backslash_escape] = ACTIONS(2257), + [sym_uri_autolink] = ACTIONS(2257), + [sym_email_autolink] = ACTIONS(2257), + [sym_entity_reference] = ACTIONS(2257), + [sym_numeric_character_reference] = ACTIONS(2257), + [sym__whitespace_ge_2] = ACTIONS(1825), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(2257), + [sym__digits] = ACTIONS(2257), + [sym__code_span_start] = ACTIONS(1827), + [sym__emphasis_open_star] = ACTIONS(1829), + [sym__emphasis_open_underscore] = ACTIONS(1831), + }, + [434] = { + [sym__block_interrupt_paragraph] = STATE(1721), + [sym__blank_line] = STATE(1721), + [sym_block_quote] = STATE(1721), + [sym_atx_heading] = STATE(1721), + [sym_setext_h1_underline] = STATE(1721), + [sym_setext_h2_underline] = STATE(1721), + [sym_thematic_break] = STATE(1721), + [sym_fenced_code_block] = STATE(1721), + [sym__html_block_1] = STATE(1721), + [sym__html_block_2] = STATE(1721), + [sym__html_block_3] = STATE(1721), + [sym__html_block_4] = STATE(1721), + [sym__html_block_5] = STATE(1721), + [sym__html_block_6] = STATE(1721), + [aux_sym__html_block_1_token1] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(381), + [anon_sym_POUND] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym__] = ACTIONS(381), + [anon_sym_BQUOTE] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2225), + [anon_sym_LT_QMARK] = ACTIONS(2227), + [aux_sym__html_block_4_token1] = ACTIONS(2229), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2231), + [aux_sym__html_block_6_token1] = ACTIONS(2233), + [aux_sym__html_block_6_token2] = ACTIONS(2235), + [sym__whitespace_ge_2] = ACTIONS(381), + [aux_sym__whitespace_token1] = ACTIONS(383), + [sym__word_no_digit] = ACTIONS(381), + [sym__digits] = ACTIONS(381), + [aux_sym__newline_token1] = ACTIONS(381), + [sym__split_token] = ACTIONS(397), + [sym__soft_line_break_marker] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(2237), + [sym_atx_h1_marker] = ACTIONS(2239), + [sym_atx_h2_marker] = ACTIONS(2239), + [sym_atx_h3_marker] = ACTIONS(2239), + [sym_atx_h4_marker] = ACTIONS(2239), + [sym_atx_h5_marker] = ACTIONS(2239), + [sym_atx_h6_marker] = ACTIONS(2239), + [sym__setext_h1_underline] = ACTIONS(2241), + [sym__setext_h2_underline] = ACTIONS(2243), + [sym__setext_h2_underline_or_thematic_break] = ACTIONS(2245), + [sym__thematic_break] = ACTIONS(2247), + [sym__list_marker_minus] = ACTIONS(2259), + [sym__list_marker_plus] = ACTIONS(2259), + [sym__list_marker_star] = ACTIONS(2259), + [sym__list_marker_parenthesis] = ACTIONS(2259), + [sym__list_marker_dot] = ACTIONS(2259), + [sym__fenced_code_block_start_backtick] = ACTIONS(2251), + [sym__fenced_code_block_start_tilde] = ACTIONS(2253), + [sym__blank_line_start] = ACTIONS(2255), }, [435] = { - [sym_image] = STATE(442), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(442), - [sym_hard_line_break] = STATE(442), - [sym_html_tag] = STATE(442), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(955), - [sym__word] = STATE(955), - [sym__newline] = STATE(1010), - [sym__inline_element_no_link] = STATE(442), - [aux_sym__inline_no_link] = STATE(442), - [sym__text_inline_no_link] = STATE(955), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(442), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(442), - [sym__code_span] = STATE(442), - [aux_sym_link_label_repeat1] = STATE(933), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_PERCENT] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_COLON] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2291), - [anon_sym_EQ] = ACTIONS(2285), - [anon_sym_GT] = ACTIONS(2285), - [anon_sym_QMARK] = ACTIONS(2285), - [anon_sym_AT] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2294), - [anon_sym_RBRACK] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2285), - [anon_sym__] = ACTIONS(2285), - [anon_sym_BQUOTE] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2300), - [anon_sym_LT_QMARK] = ACTIONS(2303), - [aux_sym__html_block_4_token1] = ACTIONS(2306), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2309), - [sym_backslash_escape] = ACTIONS(2312), - [sym_uri_autolink] = ACTIONS(2315), - [sym_email_autolink] = ACTIONS(2315), - [sym_entity_reference] = ACTIONS(2315), - [sym_numeric_character_reference] = ACTIONS(2315), - [sym__whitespace_ge_2] = ACTIONS(2318), - [aux_sym__whitespace_token1] = ACTIONS(2321), - [sym__word_no_digit] = ACTIONS(2312), - [sym__digits] = ACTIONS(2312), - [aux_sym__newline_token1] = ACTIONS(2324), - [sym__code_span_start] = ACTIONS(2327), - [sym__last_token_punctuation] = ACTIONS(2330), - [sym__emphasis_open_star] = ACTIONS(2332), - [sym__emphasis_open_underscore] = ACTIONS(2335), + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(455), + [sym__text_inline_no_link] = STATE(964), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_DOLLAR] = ACTIONS(2264), + [anon_sym_PERCENT] = ACTIONS(2264), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_RPAREN] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_DOT] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_COLON] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_EQ] = ACTIONS(2264), + [anon_sym_GT] = ACTIONS(2264), + [anon_sym_QMARK] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_BSLASH] = ACTIONS(2273), + [anon_sym_RBRACK] = ACTIONS(2276), + [anon_sym_CARET] = ACTIONS(2264), + [anon_sym__] = ACTIONS(2264), + [anon_sym_BQUOTE] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2279), + [anon_sym_LT_QMARK] = ACTIONS(2282), + [aux_sym__html_block_4_token1] = ACTIONS(2285), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2288), + [sym_backslash_escape] = ACTIONS(2291), + [sym_uri_autolink] = ACTIONS(2291), + [sym_email_autolink] = ACTIONS(2291), + [sym_entity_reference] = ACTIONS(2291), + [sym_numeric_character_reference] = ACTIONS(2291), + [sym__whitespace_ge_2] = ACTIONS(2294), + [aux_sym__whitespace_token1] = ACTIONS(2297), + [sym__word_no_digit] = ACTIONS(2291), + [sym__digits] = ACTIONS(2291), + [aux_sym__newline_token1] = ACTIONS(1276), + [sym__code_span_start] = ACTIONS(2300), + [sym__last_token_punctuation] = ACTIONS(2303), + [sym__emphasis_open_star] = ACTIONS(2305), + [sym__emphasis_open_underscore] = ACTIONS(2308), + [sym__emphasis_close_star] = ACTIONS(1288), }, [436] = { - [sym_image] = STATE(446), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(446), - [sym_hard_line_break] = STATE(446), - [sym_html_tag] = STATE(446), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(446), - [sym__word] = STATE(446), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(446), - [aux_sym__inline_no_link] = STATE(446), - [sym__text_inline_no_link] = STATE(446), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(446), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(446), - [sym__code_span] = STATE(446), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_PERCENT] = ACTIONS(2341), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_COMMA] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_DOT] = ACTIONS(2341), - [anon_sym_SLASH] = ACTIONS(2341), - [anon_sym_COLON] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_EQ] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2341), - [anon_sym_QMARK] = ACTIONS(2341), - [anon_sym_AT] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_RBRACK] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2341), - [anon_sym__] = ACTIONS(2341), - [anon_sym_BQUOTE] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_TILDE] = ACTIONS(2341), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2356), - [anon_sym_LT_QMARK] = ACTIONS(2359), - [aux_sym__html_block_4_token1] = ACTIONS(2362), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2365), - [sym_backslash_escape] = ACTIONS(2368), - [sym_uri_autolink] = ACTIONS(2368), - [sym_email_autolink] = ACTIONS(2368), - [sym_entity_reference] = ACTIONS(2368), - [sym_numeric_character_reference] = ACTIONS(2368), - [sym__whitespace_ge_2] = ACTIONS(2371), - [aux_sym__whitespace_token1] = ACTIONS(2374), - [sym__word_no_digit] = ACTIONS(2368), - [sym__digits] = ACTIONS(2368), - [aux_sym__newline_token1] = ACTIONS(1340), - [sym__code_span_start] = ACTIONS(2377), - [sym__last_token_punctuation] = ACTIONS(2380), - [sym__emphasis_open_star] = ACTIONS(2382), - [sym__emphasis_open_underscore] = ACTIONS(2385), - [sym__emphasis_close_star] = ACTIONS(1352), + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(454), + [sym__text_inline_no_link] = STATE(964), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [anon_sym_DOLLAR] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_COLON] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_BSLASH] = ACTIONS(2323), + [anon_sym_RBRACK] = ACTIONS(2326), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym__] = ACTIONS(2314), + [anon_sym_BQUOTE] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2329), + [anon_sym_LT_QMARK] = ACTIONS(2332), + [aux_sym__html_block_4_token1] = ACTIONS(2335), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2338), + [sym_backslash_escape] = ACTIONS(2341), + [sym_uri_autolink] = ACTIONS(2341), + [sym_email_autolink] = ACTIONS(2341), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [sym__whitespace_ge_2] = ACTIONS(2344), + [aux_sym__whitespace_token1] = ACTIONS(2347), + [sym__word_no_digit] = ACTIONS(2341), + [sym__digits] = ACTIONS(2341), + [aux_sym__newline_token1] = ACTIONS(1110), + [sym__code_span_start] = ACTIONS(2350), + [sym__last_token_punctuation] = ACTIONS(2353), + [sym__emphasis_open_star] = ACTIONS(2355), + [sym__emphasis_open_underscore] = ACTIONS(2358), + [sym__emphasis_close_underscore] = ACTIONS(1122), }, [437] = { - [sym_image] = STATE(448), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(448), - [sym_hard_line_break] = STATE(448), - [sym_html_tag] = STATE(448), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(448), - [sym__word] = STATE(448), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(448), - [aux_sym__inline_no_link] = STATE(448), - [sym__text_inline_no_link] = STATE(448), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(448), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(448), - [sym__code_span] = STATE(448), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2391), - [anon_sym_POUND] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_PERCENT] = ACTIONS(2391), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_STAR] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2391), - [anon_sym_COMMA] = ACTIONS(2391), - [anon_sym_DASH] = ACTIONS(2391), - [anon_sym_DOT] = ACTIONS(2391), - [anon_sym_SLASH] = ACTIONS(2391), - [anon_sym_COLON] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(2391), - [anon_sym_GT] = ACTIONS(2391), - [anon_sym_QMARK] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_BSLASH] = ACTIONS(2400), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2391), - [anon_sym__] = ACTIONS(2391), - [anon_sym_BQUOTE] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_PIPE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2406), - [anon_sym_LT_QMARK] = ACTIONS(2409), - [aux_sym__html_block_4_token1] = ACTIONS(2412), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2415), - [sym_backslash_escape] = ACTIONS(2418), - [sym_uri_autolink] = ACTIONS(2418), - [sym_email_autolink] = ACTIONS(2418), - [sym_entity_reference] = ACTIONS(2418), - [sym_numeric_character_reference] = ACTIONS(2418), - [sym__whitespace_ge_2] = ACTIONS(2421), - [aux_sym__whitespace_token1] = ACTIONS(2424), - [sym__word_no_digit] = ACTIONS(2418), - [sym__digits] = ACTIONS(2418), - [aux_sym__newline_token1] = ACTIONS(926), - [sym__code_span_start] = ACTIONS(2427), - [sym__last_token_punctuation] = ACTIONS(2430), - [sym__emphasis_open_star] = ACTIONS(2432), - [sym__emphasis_open_underscore] = ACTIONS(2435), - [sym__emphasis_close_underscore] = ACTIONS(938), + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(963), + [sym__word] = STATE(963), + [sym__newline] = STATE(994), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(444), + [sym__text_inline_no_link] = STATE(963), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [aux_sym_link_label_repeat1] = STATE(846), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_PERCENT] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_COMMA] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_DOT] = ACTIONS(2364), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_COLON] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_EQ] = ACTIONS(2364), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_QMARK] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_BSLASH] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2364), + [anon_sym__] = ACTIONS(2364), + [anon_sym_BQUOTE] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_TILDE] = ACTIONS(2364), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2379), + [anon_sym_LT_QMARK] = ACTIONS(2382), + [aux_sym__html_block_4_token1] = ACTIONS(2385), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2388), + [sym_backslash_escape] = ACTIONS(2391), + [sym_uri_autolink] = ACTIONS(2394), + [sym_email_autolink] = ACTIONS(2394), + [sym_entity_reference] = ACTIONS(2394), + [sym_numeric_character_reference] = ACTIONS(2394), + [sym__whitespace_ge_2] = ACTIONS(2397), + [aux_sym__whitespace_token1] = ACTIONS(2400), + [sym__word_no_digit] = ACTIONS(2391), + [sym__digits] = ACTIONS(2391), + [aux_sym__newline_token1] = ACTIONS(2403), + [sym__code_span_start] = ACTIONS(2406), + [sym__last_token_punctuation] = ACTIONS(2409), + [sym__emphasis_open_star] = ACTIONS(2411), + [sym__emphasis_open_underscore] = ACTIONS(2414), }, [438] = { - [sym_image] = STATE(448), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(448), - [sym_hard_line_break] = STATE(448), - [sym_html_tag] = STATE(448), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(448), - [sym__word] = STATE(448), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(448), - [aux_sym__inline_no_link] = STATE(448), - [sym__text_inline_no_link] = STATE(448), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(448), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(448), - [sym__code_span] = STATE(448), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2391), - [anon_sym_POUND] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_PERCENT] = ACTIONS(2391), - [anon_sym_AMP] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_STAR] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2391), - [anon_sym_COMMA] = ACTIONS(2391), - [anon_sym_DASH] = ACTIONS(2391), - [anon_sym_DOT] = ACTIONS(2391), - [anon_sym_SLASH] = ACTIONS(2391), - [anon_sym_COLON] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_EQ] = ACTIONS(2391), - [anon_sym_GT] = ACTIONS(2391), - [anon_sym_QMARK] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_BSLASH] = ACTIONS(2400), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_CARET] = ACTIONS(2391), - [anon_sym__] = ACTIONS(2391), - [anon_sym_BQUOTE] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_PIPE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2406), - [anon_sym_LT_QMARK] = ACTIONS(2409), - [aux_sym__html_block_4_token1] = ACTIONS(2412), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2415), - [sym_backslash_escape] = ACTIONS(2418), - [sym_uri_autolink] = ACTIONS(2418), - [sym_email_autolink] = ACTIONS(2418), - [sym_entity_reference] = ACTIONS(2418), - [sym_numeric_character_reference] = ACTIONS(2418), - [sym__whitespace_ge_2] = ACTIONS(2421), - [aux_sym__whitespace_token1] = ACTIONS(2424), - [sym__word_no_digit] = ACTIONS(2418), - [sym__digits] = ACTIONS(2418), + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(454), + [sym__text_inline_no_link] = STATE(964), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [anon_sym_DOLLAR] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_RPAREN] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_COLON] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2320), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_BSLASH] = ACTIONS(2323), + [anon_sym_RBRACK] = ACTIONS(2326), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym__] = ACTIONS(2314), + [anon_sym_BQUOTE] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2329), + [anon_sym_LT_QMARK] = ACTIONS(2332), + [aux_sym__html_block_4_token1] = ACTIONS(2335), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2338), + [sym_backslash_escape] = ACTIONS(2341), + [sym_uri_autolink] = ACTIONS(2341), + [sym_email_autolink] = ACTIONS(2341), + [sym_entity_reference] = ACTIONS(2341), + [sym_numeric_character_reference] = ACTIONS(2341), + [sym__whitespace_ge_2] = ACTIONS(2344), + [aux_sym__whitespace_token1] = ACTIONS(2347), + [sym__word_no_digit] = ACTIONS(2341), + [sym__digits] = ACTIONS(2341), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2427), - [sym__last_token_punctuation] = ACTIONS(2430), - [sym__emphasis_open_star] = ACTIONS(2432), - [sym__emphasis_open_underscore] = ACTIONS(2435), - [sym__emphasis_close_underscore] = ACTIONS(938), + [sym__code_span_start] = ACTIONS(2350), + [sym__last_token_punctuation] = ACTIONS(2353), + [sym__emphasis_open_star] = ACTIONS(2355), + [sym__emphasis_open_underscore] = ACTIONS(2358), + [sym__emphasis_close_underscore] = ACTIONS(1122), }, [439] = { + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(455), + [sym__text_inline_no_link] = STATE(964), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_DOLLAR] = ACTIONS(2264), + [anon_sym_PERCENT] = ACTIONS(2264), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_RPAREN] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_DOT] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_COLON] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_EQ] = ACTIONS(2264), + [anon_sym_GT] = ACTIONS(2264), + [anon_sym_QMARK] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_BSLASH] = ACTIONS(2273), + [anon_sym_RBRACK] = ACTIONS(2276), + [anon_sym_CARET] = ACTIONS(2264), + [anon_sym__] = ACTIONS(2264), + [anon_sym_BQUOTE] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2279), + [anon_sym_LT_QMARK] = ACTIONS(2282), + [aux_sym__html_block_4_token1] = ACTIONS(2285), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2288), + [sym_backslash_escape] = ACTIONS(2291), + [sym_uri_autolink] = ACTIONS(2291), + [sym_email_autolink] = ACTIONS(2291), + [sym_entity_reference] = ACTIONS(2291), + [sym_numeric_character_reference] = ACTIONS(2291), + [sym__whitespace_ge_2] = ACTIONS(2294), + [aux_sym__whitespace_token1] = ACTIONS(2297), + [sym__word_no_digit] = ACTIONS(2291), + [sym__digits] = ACTIONS(2291), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2300), + [sym__last_token_punctuation] = ACTIONS(2303), + [sym__emphasis_open_star] = ACTIONS(2305), + [sym__emphasis_open_underscore] = ACTIONS(2308), + [sym__emphasis_close_star] = ACTIONS(1288), + }, + [440] = { + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(444), + [sym__text_inline_no_link] = STATE(964), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_PERCENT] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_PLUS] = ACTIONS(2364), + [anon_sym_COMMA] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2364), + [anon_sym_DOT] = ACTIONS(2364), + [anon_sym_SLASH] = ACTIONS(2364), + [anon_sym_COLON] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_EQ] = ACTIONS(2364), + [anon_sym_GT] = ACTIONS(2364), + [anon_sym_QMARK] = ACTIONS(2364), + [anon_sym_AT] = ACTIONS(2364), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_BSLASH] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2364), + [anon_sym__] = ACTIONS(2364), + [anon_sym_BQUOTE] = ACTIONS(2364), + [anon_sym_LBRACE] = ACTIONS(2364), + [anon_sym_PIPE] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_TILDE] = ACTIONS(2364), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2379), + [anon_sym_LT_QMARK] = ACTIONS(2382), + [aux_sym__html_block_4_token1] = ACTIONS(2385), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2388), + [sym_backslash_escape] = ACTIONS(2394), + [sym_uri_autolink] = ACTIONS(2394), + [sym_email_autolink] = ACTIONS(2394), + [sym_entity_reference] = ACTIONS(2394), + [sym_numeric_character_reference] = ACTIONS(2394), + [sym__whitespace_ge_2] = ACTIONS(2397), + [aux_sym__whitespace_token1] = ACTIONS(2400), + [sym__word_no_digit] = ACTIONS(2394), + [sym__digits] = ACTIONS(2394), + [aux_sym__newline_token1] = ACTIONS(1559), + [sym__code_span_start] = ACTIONS(2406), + [sym__last_token_punctuation] = ACTIONS(2409), + [sym__emphasis_open_star] = ACTIONS(2411), + [sym__emphasis_open_underscore] = ACTIONS(2414), + }, + [441] = { [sym_image] = STATE(446), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(862), [sym__soft_line_break] = STATE(446), [sym_hard_line_break] = STATE(446), [sym_html_tag] = STATE(446), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), [sym__whitespace] = STATE(446), [sym__word] = STATE(446), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(446), - [aux_sym__inline_no_link] = STATE(446), - [sym__text_inline_no_link] = STATE(446), - [sym__emphasis_star_no_link] = STATE(940), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star_no_link] = STATE(446), + [aux_sym__inline_no_star_no_link] = STATE(446), + [sym__text_inline_no_star_no_link] = STATE(446), + [sym__emphasis_star_no_link] = STATE(958), [sym__strong_emphasis_star_no_link] = STATE(446), - [sym__emphasis_underscore_no_link] = STATE(940), + [sym__emphasis_underscore_no_link] = STATE(957), [sym__strong_emphasis_underscore_no_link] = STATE(446), [sym__code_span] = STATE(446), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_PERCENT] = ACTIONS(2341), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_COMMA] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_DOT] = ACTIONS(2341), - [anon_sym_SLASH] = ACTIONS(2341), - [anon_sym_COLON] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_EQ] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2341), - [anon_sym_QMARK] = ACTIONS(2341), - [anon_sym_AT] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(2350), - [anon_sym_RBRACK] = ACTIONS(2353), - [anon_sym_CARET] = ACTIONS(2341), - [anon_sym__] = ACTIONS(2341), - [anon_sym_BQUOTE] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_TILDE] = ACTIONS(2341), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2356), - [anon_sym_LT_QMARK] = ACTIONS(2359), - [aux_sym__html_block_4_token1] = ACTIONS(2362), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2365), - [sym_backslash_escape] = ACTIONS(2368), - [sym_uri_autolink] = ACTIONS(2368), - [sym_email_autolink] = ACTIONS(2368), - [sym_entity_reference] = ACTIONS(2368), - [sym_numeric_character_reference] = ACTIONS(2368), - [sym__whitespace_ge_2] = ACTIONS(2371), - [aux_sym__whitespace_token1] = ACTIONS(2374), - [sym__word_no_digit] = ACTIONS(2368), - [sym__digits] = ACTIONS(2368), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2377), - [sym__last_token_punctuation] = ACTIONS(2380), - [sym__emphasis_open_star] = ACTIONS(2382), - [sym__emphasis_open_underscore] = ACTIONS(2385), - [sym__emphasis_close_star] = ACTIONS(1352), - }, - [440] = { - [sym_image] = STATE(442), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(442), - [sym_hard_line_break] = STATE(442), - [sym_html_tag] = STATE(442), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(442), - [sym__word] = STATE(442), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(442), - [aux_sym__inline_no_link] = STATE(442), - [sym__text_inline_no_link] = STATE(442), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(442), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(442), - [sym__code_span] = STATE(442), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_PERCENT] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_COMMA] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_SLASH] = ACTIONS(2285), - [anon_sym_COLON] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2291), - [anon_sym_EQ] = ACTIONS(2285), - [anon_sym_GT] = ACTIONS(2285), - [anon_sym_QMARK] = ACTIONS(2285), - [anon_sym_AT] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_BSLASH] = ACTIONS(2294), - [anon_sym_RBRACK] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2285), - [anon_sym__] = ACTIONS(2285), - [anon_sym_BQUOTE] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2300), - [anon_sym_LT_QMARK] = ACTIONS(2303), - [aux_sym__html_block_4_token1] = ACTIONS(2306), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2309), - [sym_backslash_escape] = ACTIONS(2315), - [sym_uri_autolink] = ACTIONS(2315), - [sym_email_autolink] = ACTIONS(2315), - [sym_entity_reference] = ACTIONS(2315), - [sym_numeric_character_reference] = ACTIONS(2315), - [sym__whitespace_ge_2] = ACTIONS(2318), - [aux_sym__whitespace_token1] = ACTIONS(2321), - [sym__word_no_digit] = ACTIONS(2315), - [sym__digits] = ACTIONS(2315), - [aux_sym__newline_token1] = ACTIONS(1529), - [sym__code_span_start] = ACTIONS(2327), - [sym__last_token_punctuation] = ACTIONS(2330), - [sym__emphasis_open_star] = ACTIONS(2332), - [sym__emphasis_open_underscore] = ACTIONS(2335), - }, - [441] = { - [sym_image] = STATE(451), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(891), - [sym__soft_line_break] = STATE(451), - [sym_hard_line_break] = STATE(451), - [sym_html_tag] = STATE(451), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(451), - [sym__word] = STATE(451), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore_no_link] = STATE(451), - [aux_sym__inline_no_underscore_no_link] = STATE(451), - [sym__text_inline_no_underscore_no_link] = STATE(451), - [sym__emphasis_star_no_link] = STATE(965), - [sym__strong_emphasis_star_no_link] = STATE(451), - [sym__emphasis_underscore_no_link] = STATE(965), - [sym__strong_emphasis_underscore_no_link] = STATE(451), - [sym__code_span] = STATE(451), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_PERCENT] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_DOT] = ACTIONS(2440), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_COLON] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(2440), - [anon_sym_GT] = ACTIONS(2440), - [anon_sym_QMARK] = ACTIONS(2440), - [anon_sym_AT] = ACTIONS(2440), - [anon_sym_BSLASH] = ACTIONS(2446), - [anon_sym_CARET] = ACTIONS(2440), - [anon_sym__] = ACTIONS(2440), - [anon_sym_BQUOTE] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_TILDE] = ACTIONS(2440), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), - [anon_sym_LT_QMARK] = ACTIONS(2450), - [aux_sym__html_block_4_token1] = ACTIONS(2452), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2454), - [sym_backslash_escape] = ACTIONS(2456), - [sym_uri_autolink] = ACTIONS(2456), - [sym_email_autolink] = ACTIONS(2456), - [sym_entity_reference] = ACTIONS(2456), - [sym_numeric_character_reference] = ACTIONS(2456), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(2456), - [sym__digits] = ACTIONS(2456), - [aux_sym__newline_token1] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_COLON] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2420), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_QMARK] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2420), + [anon_sym_BSLASH] = ACTIONS(2429), + [anon_sym_RBRACK] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2420), + [anon_sym__] = ACTIONS(2420), + [anon_sym_BQUOTE] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2420), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2434), + [anon_sym_LT_QMARK] = ACTIONS(2437), + [aux_sym__html_block_4_token1] = ACTIONS(2440), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2443), + [sym_backslash_escape] = ACTIONS(2446), + [sym_uri_autolink] = ACTIONS(2446), + [sym_email_autolink] = ACTIONS(2446), + [sym_entity_reference] = ACTIONS(2446), + [sym_numeric_character_reference] = ACTIONS(2446), + [sym__whitespace_ge_2] = ACTIONS(2449), + [aux_sym__whitespace_token1] = ACTIONS(2452), + [sym__word_no_digit] = ACTIONS(2446), + [sym__digits] = ACTIONS(2446), + [aux_sym__newline_token1] = ACTIONS(2455), [sym__code_span_start] = ACTIONS(2458), - [sym__emphasis_open_star] = ACTIONS(2460), - [sym__emphasis_open_underscore] = ACTIONS(2462), - [sym__emphasis_close_underscore] = ACTIONS(2464), + [sym__emphasis_open_star] = ACTIONS(2461), + [sym__emphasis_open_underscore] = ACTIONS(2464), }, [442] = { [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(881), [sym__soft_line_break] = STATE(456), [sym_hard_line_break] = STATE(456), [sym_html_tag] = STATE(456), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), [sym__whitespace] = STATE(456), [sym__word] = STATE(456), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(456), - [aux_sym__inline_no_link] = STATE(456), - [sym__text_inline_no_link] = STATE(456), - [sym__emphasis_star_no_link] = STATE(940), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore_no_link] = STATE(456), + [aux_sym__inline_no_underscore_no_link] = STATE(456), + [sym__text_inline_no_underscore_no_link] = STATE(456), + [sym__emphasis_star_no_link] = STATE(956), [sym__strong_emphasis_star_no_link] = STATE(456), - [sym__emphasis_underscore_no_link] = STATE(940), + [sym__emphasis_underscore_no_link] = STATE(955), [sym__strong_emphasis_underscore_no_link] = STATE(456), [sym__code_span] = STATE(456), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_RPAREN] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_EQ] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_QMARK] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_BSLASH] = ACTIONS(2474), - [anon_sym_RBRACK] = ACTIONS(2476), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym__] = ACTIONS(2468), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2478), - [anon_sym_LT_QMARK] = ACTIONS(2480), - [aux_sym__html_block_4_token1] = ACTIONS(2482), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2484), - [sym_backslash_escape] = ACTIONS(2486), - [sym_uri_autolink] = ACTIONS(2486), - [sym_email_autolink] = ACTIONS(2486), - [sym_entity_reference] = ACTIONS(2486), - [sym_numeric_character_reference] = ACTIONS(2486), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(2486), - [sym__digits] = ACTIONS(2486), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2488), - [sym__emphasis_open_star] = ACTIONS(2490), - [sym__emphasis_open_underscore] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_DOLLAR] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_RPAREN] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_EQ] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_QMARK] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_BSLASH] = ACTIONS(2479), + [anon_sym_RBRACK] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym__] = ACTIONS(2470), + [anon_sym_BQUOTE] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2482), + [anon_sym_LT_QMARK] = ACTIONS(2485), + [aux_sym__html_block_4_token1] = ACTIONS(2488), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2491), + [sym_backslash_escape] = ACTIONS(2494), + [sym_uri_autolink] = ACTIONS(2494), + [sym_email_autolink] = ACTIONS(2494), + [sym_entity_reference] = ACTIONS(2494), + [sym_numeric_character_reference] = ACTIONS(2494), + [sym__whitespace_ge_2] = ACTIONS(2497), + [aux_sym__whitespace_token1] = ACTIONS(2500), + [sym__word_no_digit] = ACTIONS(2494), + [sym__digits] = ACTIONS(2494), + [aux_sym__newline_token1] = ACTIONS(2455), + [sym__code_span_start] = ACTIONS(2503), + [sym__emphasis_open_star] = ACTIONS(2506), + [sym__emphasis_open_underscore] = ACTIONS(2509), }, [443] = { - [sym_image] = STATE(441), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(891), - [sym__soft_line_break] = STATE(441), - [sym_hard_line_break] = STATE(441), - [sym_html_tag] = STATE(441), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(441), - [sym__word] = STATE(441), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore_no_link] = STATE(441), - [aux_sym__inline_no_underscore_no_link] = STATE(441), - [sym__text_inline_no_underscore_no_link] = STATE(441), - [sym__emphasis_star_no_link] = STATE(965), - [sym__strong_emphasis_star_no_link] = STATE(441), - [sym__emphasis_underscore_no_link] = STATE(961), - [sym__strong_emphasis_underscore_no_link] = STATE(441), - [sym__code_span] = STATE(441), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_PERCENT] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_COMMA] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_DOT] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_COLON] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2503), - [anon_sym_EQ] = ACTIONS(2497), - [anon_sym_GT] = ACTIONS(2497), - [anon_sym_QMARK] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2497), - [anon_sym_BSLASH] = ACTIONS(2506), - [anon_sym_RBRACK] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2497), - [anon_sym__] = ACTIONS(2497), - [anon_sym_BQUOTE] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2511), - [anon_sym_LT_QMARK] = ACTIONS(2514), - [aux_sym__html_block_4_token1] = ACTIONS(2517), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2520), - [sym_backslash_escape] = ACTIONS(2523), - [sym_uri_autolink] = ACTIONS(2523), - [sym_email_autolink] = ACTIONS(2523), - [sym_entity_reference] = ACTIONS(2523), - [sym_numeric_character_reference] = ACTIONS(2523), - [sym__whitespace_ge_2] = ACTIONS(2526), - [aux_sym__whitespace_token1] = ACTIONS(2529), - [sym__word_no_digit] = ACTIONS(2523), - [sym__digits] = ACTIONS(2523), - [aux_sym__newline_token1] = ACTIONS(2532), - [sym__code_span_start] = ACTIONS(2535), - [sym__emphasis_open_star] = ACTIONS(2538), - [sym__emphasis_open_underscore] = ACTIONS(2541), + [sym_image] = STATE(443), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(881), + [sym__soft_line_break] = STATE(443), + [sym_hard_line_break] = STATE(443), + [sym_html_tag] = STATE(443), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(443), + [sym__word] = STATE(443), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore_no_link] = STATE(443), + [aux_sym__inline_no_underscore_no_link] = STATE(443), + [sym__text_inline_no_underscore_no_link] = STATE(443), + [sym__emphasis_star_no_link] = STATE(956), + [sym__strong_emphasis_star_no_link] = STATE(443), + [sym__emphasis_underscore_no_link] = STATE(956), + [sym__strong_emphasis_underscore_no_link] = STATE(443), + [sym__code_span] = STATE(443), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2515), + [anon_sym_POUND] = ACTIONS(2515), + [anon_sym_DOLLAR] = ACTIONS(2515), + [anon_sym_PERCENT] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(2515), + [anon_sym_COMMA] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_DOT] = ACTIONS(2515), + [anon_sym_SLASH] = ACTIONS(2515), + [anon_sym_COLON] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_LT] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), + [anon_sym_QMARK] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_BSLASH] = ACTIONS(2524), + [anon_sym_CARET] = ACTIONS(2515), + [anon_sym__] = ACTIONS(2515), + [anon_sym_BQUOTE] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_PIPE] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2527), + [anon_sym_LT_QMARK] = ACTIONS(2530), + [aux_sym__html_block_4_token1] = ACTIONS(2533), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2536), + [sym_backslash_escape] = ACTIONS(2539), + [sym_uri_autolink] = ACTIONS(2539), + [sym_email_autolink] = ACTIONS(2539), + [sym_entity_reference] = ACTIONS(2539), + [sym_numeric_character_reference] = ACTIONS(2539), + [sym__whitespace_ge_2] = ACTIONS(2542), + [aux_sym__whitespace_token1] = ACTIONS(2545), + [sym__word_no_digit] = ACTIONS(2539), + [sym__digits] = ACTIONS(2539), + [aux_sym__newline_token1] = ACTIONS(2548), + [sym__code_span_start] = ACTIONS(2551), + [sym__emphasis_open_star] = ACTIONS(2554), + [sym__emphasis_open_underscore] = ACTIONS(2557), + [sym__emphasis_close_underscore] = ACTIONS(2560), }, [444] = { - [sym_image] = STATE(451), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(891), - [sym__soft_line_break] = STATE(451), - [sym_hard_line_break] = STATE(451), - [sym_html_tag] = STATE(451), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(451), - [sym__word] = STATE(451), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore_no_link] = STATE(451), - [aux_sym__inline_no_underscore_no_link] = STATE(451), - [sym__text_inline_no_underscore_no_link] = STATE(451), + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(450), + [sym__text_inline_no_link] = STATE(964), [sym__emphasis_star_no_link] = STATE(965), - [sym__strong_emphasis_star_no_link] = STATE(451), + [sym__strong_emphasis_star_no_link] = STATE(964), [sym__emphasis_underscore_no_link] = STATE(965), - [sym__strong_emphasis_underscore_no_link] = STATE(451), - [sym__code_span] = STATE(451), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_PERCENT] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_DOT] = ACTIONS(2440), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_COLON] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(2440), - [anon_sym_GT] = ACTIONS(2440), - [anon_sym_QMARK] = ACTIONS(2440), - [anon_sym_AT] = ACTIONS(2440), - [anon_sym_BSLASH] = ACTIONS(2446), - [anon_sym_CARET] = ACTIONS(2440), - [anon_sym__] = ACTIONS(2440), - [anon_sym_BQUOTE] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_TILDE] = ACTIONS(2440), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), - [anon_sym_LT_QMARK] = ACTIONS(2450), - [aux_sym__html_block_4_token1] = ACTIONS(2452), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2454), - [sym_backslash_escape] = ACTIONS(2456), - [sym_uri_autolink] = ACTIONS(2456), - [sym_email_autolink] = ACTIONS(2456), - [sym_entity_reference] = ACTIONS(2456), - [sym_numeric_character_reference] = ACTIONS(2456), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(2456), - [sym__digits] = ACTIONS(2456), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2564), + [anon_sym_PERCENT] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2564), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_COLON] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2564), + [anon_sym_GT] = ACTIONS(2564), + [anon_sym_QMARK] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_BSLASH] = ACTIONS(2570), + [anon_sym_RBRACK] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2564), + [anon_sym__] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2564), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2574), + [anon_sym_LT_QMARK] = ACTIONS(2576), + [aux_sym__html_block_4_token1] = ACTIONS(2578), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2580), + [sym_backslash_escape] = ACTIONS(2582), + [sym_uri_autolink] = ACTIONS(2582), + [sym_email_autolink] = ACTIONS(2582), + [sym_entity_reference] = ACTIONS(2582), + [sym_numeric_character_reference] = ACTIONS(2582), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(2582), + [sym__digits] = ACTIONS(2582), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2458), - [sym__emphasis_open_star] = ACTIONS(2460), - [sym__emphasis_open_underscore] = ACTIONS(2462), - [sym__emphasis_close_underscore] = ACTIONS(2544), + [sym__code_span_start] = ACTIONS(2584), + [sym__emphasis_open_star] = ACTIONS(2586), + [sym__emphasis_open_underscore] = ACTIONS(2588), }, [445] = { + [sym_image] = STATE(443), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(881), + [sym__soft_line_break] = STATE(443), + [sym_hard_line_break] = STATE(443), + [sym_html_tag] = STATE(443), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(443), + [sym__word] = STATE(443), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore_no_link] = STATE(443), + [aux_sym__inline_no_underscore_no_link] = STATE(443), + [sym__text_inline_no_underscore_no_link] = STATE(443), + [sym__emphasis_star_no_link] = STATE(956), + [sym__strong_emphasis_star_no_link] = STATE(443), + [sym__emphasis_underscore_no_link] = STATE(956), + [sym__strong_emphasis_underscore_no_link] = STATE(443), + [sym__code_span] = STATE(443), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2592), + [anon_sym_PERCENT] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_DOT] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_COLON] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2592), + [anon_sym_BSLASH] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym__] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2600), + [anon_sym_LT_QMARK] = ACTIONS(2602), + [aux_sym__html_block_4_token1] = ACTIONS(2604), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2606), + [sym_backslash_escape] = ACTIONS(2608), + [sym_uri_autolink] = ACTIONS(2608), + [sym_email_autolink] = ACTIONS(2608), + [sym_entity_reference] = ACTIONS(2608), + [sym_numeric_character_reference] = ACTIONS(2608), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(2608), + [sym__digits] = ACTIONS(2608), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2610), + [sym__emphasis_open_star] = ACTIONS(2612), + [sym__emphasis_open_underscore] = ACTIONS(2614), + [sym__emphasis_close_underscore] = ACTIONS(2616), + }, + [446] = { [sym_image] = STATE(453), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(836), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(862), [sym__soft_line_break] = STATE(453), [sym_hard_line_break] = STATE(453), [sym_html_tag] = STATE(453), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), [sym__whitespace] = STATE(453), [sym__word] = STATE(453), - [sym__newline] = STATE(2104), + [sym__newline] = STATE(2106), [sym__inline_element_no_star_no_link] = STATE(453), [aux_sym__inline_no_star_no_link] = STATE(453), [sym__text_inline_no_star_no_link] = STATE(453), - [sym__emphasis_star_no_link] = STATE(967), + [sym__emphasis_star_no_link] = STATE(957), [sym__strong_emphasis_star_no_link] = STATE(453), - [sym__emphasis_underscore_no_link] = STATE(968), + [sym__emphasis_underscore_no_link] = STATE(957), [sym__strong_emphasis_underscore_no_link] = STATE(453), [sym__code_span] = STATE(453), - [anon_sym_BANG] = ACTIONS(2546), - [anon_sym_DQUOTE] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2549), - [anon_sym_DOLLAR] = ACTIONS(2549), - [anon_sym_PERCENT] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_RPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_COMMA] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_DOT] = ACTIONS(2549), - [anon_sym_SLASH] = ACTIONS(2549), - [anon_sym_COLON] = ACTIONS(2549), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2555), - [anon_sym_EQ] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_QMARK] = ACTIONS(2549), - [anon_sym_AT] = ACTIONS(2549), - [anon_sym_BSLASH] = ACTIONS(2558), - [anon_sym_RBRACK] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2549), - [anon_sym__] = ACTIONS(2549), - [anon_sym_BQUOTE] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2549), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2561), - [anon_sym_LT_QMARK] = ACTIONS(2564), - [aux_sym__html_block_4_token1] = ACTIONS(2567), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2570), - [sym_backslash_escape] = ACTIONS(2573), - [sym_uri_autolink] = ACTIONS(2573), - [sym_email_autolink] = ACTIONS(2573), - [sym_entity_reference] = ACTIONS(2573), - [sym_numeric_character_reference] = ACTIONS(2573), - [sym__whitespace_ge_2] = ACTIONS(2576), - [aux_sym__whitespace_token1] = ACTIONS(2579), - [sym__word_no_digit] = ACTIONS(2573), - [sym__digits] = ACTIONS(2573), - [aux_sym__newline_token1] = ACTIONS(2532), - [sym__code_span_start] = ACTIONS(2582), - [sym__emphasis_open_star] = ACTIONS(2585), - [sym__emphasis_open_underscore] = ACTIONS(2588), - }, - [446] = { - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(456), - [sym_hard_line_break] = STATE(456), - [sym_html_tag] = STATE(456), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(456), - [sym__word] = STATE(456), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(456), - [aux_sym__inline_no_link] = STATE(456), - [sym__text_inline_no_link] = STATE(456), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(456), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(456), - [sym__code_span] = STATE(456), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_RPAREN] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_EQ] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_QMARK] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_BSLASH] = ACTIONS(2474), - [anon_sym_RBRACK] = ACTIONS(2591), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym__] = ACTIONS(2468), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2478), - [anon_sym_LT_QMARK] = ACTIONS(2480), - [aux_sym__html_block_4_token1] = ACTIONS(2482), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2484), - [sym_backslash_escape] = ACTIONS(2486), - [sym_uri_autolink] = ACTIONS(2486), - [sym_email_autolink] = ACTIONS(2486), - [sym_entity_reference] = ACTIONS(2486), - [sym_numeric_character_reference] = ACTIONS(2486), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(2486), - [sym__digits] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_DOLLAR] = ACTIONS(2620), + [anon_sym_PERCENT] = ACTIONS(2620), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_COMMA] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_COLON] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_EQ] = ACTIONS(2620), + [anon_sym_GT] = ACTIONS(2620), + [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_BSLASH] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2620), + [anon_sym__] = ACTIONS(2620), + [anon_sym_BQUOTE] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2628), + [anon_sym_LT_QMARK] = ACTIONS(2630), + [aux_sym__html_block_4_token1] = ACTIONS(2632), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2634), + [sym_backslash_escape] = ACTIONS(2636), + [sym_uri_autolink] = ACTIONS(2636), + [sym_email_autolink] = ACTIONS(2636), + [sym_entity_reference] = ACTIONS(2636), + [sym_numeric_character_reference] = ACTIONS(2636), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(2636), + [sym__digits] = ACTIONS(2636), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2488), - [sym__emphasis_open_star] = ACTIONS(2490), - [sym__emphasis_open_underscore] = ACTIONS(2492), + [sym__code_span_start] = ACTIONS(2638), + [sym__emphasis_open_star] = ACTIONS(2640), + [sym__emphasis_open_underscore] = ACTIONS(2642), + [sym__emphasis_close_star] = ACTIONS(2644), }, [447] = { - [sym_image] = STATE(452), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(891), - [sym__soft_line_break] = STATE(452), - [sym_hard_line_break] = STATE(452), - [sym_html_tag] = STATE(452), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(452), - [sym__word] = STATE(452), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore_no_link] = STATE(452), - [aux_sym__inline_no_underscore_no_link] = STATE(452), - [sym__text_inline_no_underscore_no_link] = STATE(452), - [sym__emphasis_star_no_link] = STATE(965), - [sym__strong_emphasis_star_no_link] = STATE(452), - [sym__emphasis_underscore_no_link] = STATE(958), - [sym__strong_emphasis_underscore_no_link] = STATE(452), - [sym__code_span] = STATE(452), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(2596), - [anon_sym_DOLLAR] = ACTIONS(2596), - [anon_sym_PERCENT] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_RPAREN] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_COMMA] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_DOT] = ACTIONS(2596), - [anon_sym_SLASH] = ACTIONS(2596), - [anon_sym_COLON] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2596), - [anon_sym_GT] = ACTIONS(2596), - [anon_sym_QMARK] = ACTIONS(2596), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_BSLASH] = ACTIONS(2605), - [anon_sym_CARET] = ACTIONS(2596), - [anon_sym__] = ACTIONS(2596), - [anon_sym_BQUOTE] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2608), - [anon_sym_LT_QMARK] = ACTIONS(2611), - [aux_sym__html_block_4_token1] = ACTIONS(2614), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2617), - [sym_backslash_escape] = ACTIONS(2620), - [sym_uri_autolink] = ACTIONS(2620), - [sym_email_autolink] = ACTIONS(2620), - [sym_entity_reference] = ACTIONS(2620), - [sym_numeric_character_reference] = ACTIONS(2620), - [sym__whitespace_ge_2] = ACTIONS(2623), - [aux_sym__whitespace_token1] = ACTIONS(2626), - [sym__word_no_digit] = ACTIONS(2620), - [sym__digits] = ACTIONS(2620), - [aux_sym__newline_token1] = ACTIONS(2629), - [sym__code_span_start] = ACTIONS(2632), - [sym__emphasis_open_star] = ACTIONS(2635), - [sym__emphasis_open_underscore] = ACTIONS(2638), - [sym__emphasis_close_star] = ACTIONS(2641), + [sym_image] = STATE(443), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(881), + [sym__soft_line_break] = STATE(443), + [sym_hard_line_break] = STATE(443), + [sym_html_tag] = STATE(443), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(443), + [sym__word] = STATE(443), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore_no_link] = STATE(443), + [aux_sym__inline_no_underscore_no_link] = STATE(443), + [sym__text_inline_no_underscore_no_link] = STATE(443), + [sym__emphasis_star_no_link] = STATE(956), + [sym__strong_emphasis_star_no_link] = STATE(443), + [sym__emphasis_underscore_no_link] = STATE(956), + [sym__strong_emphasis_underscore_no_link] = STATE(443), + [sym__code_span] = STATE(443), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2592), + [anon_sym_PERCENT] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_DOT] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_COLON] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2592), + [anon_sym_BSLASH] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym__] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2600), + [anon_sym_LT_QMARK] = ACTIONS(2602), + [aux_sym__html_block_4_token1] = ACTIONS(2604), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2606), + [sym_backslash_escape] = ACTIONS(2608), + [sym_uri_autolink] = ACTIONS(2608), + [sym_email_autolink] = ACTIONS(2608), + [sym_entity_reference] = ACTIONS(2608), + [sym_numeric_character_reference] = ACTIONS(2608), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(2608), + [sym__digits] = ACTIONS(2608), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2610), + [sym__emphasis_open_star] = ACTIONS(2612), + [sym__emphasis_open_underscore] = ACTIONS(2614), + [sym__emphasis_close_underscore] = ACTIONS(2646), }, [448] = { - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(456), - [sym_hard_line_break] = STATE(456), - [sym_html_tag] = STATE(456), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(456), - [sym__word] = STATE(456), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(456), - [aux_sym__inline_no_link] = STATE(456), - [sym__text_inline_no_link] = STATE(456), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(456), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(456), - [sym__code_span] = STATE(456), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_RPAREN] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_EQ] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_QMARK] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_BSLASH] = ACTIONS(2474), - [anon_sym_RBRACK] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym__] = ACTIONS(2468), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2478), - [anon_sym_LT_QMARK] = ACTIONS(2480), - [aux_sym__html_block_4_token1] = ACTIONS(2482), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2484), - [sym_backslash_escape] = ACTIONS(2486), - [sym_uri_autolink] = ACTIONS(2486), - [sym_email_autolink] = ACTIONS(2486), - [sym_entity_reference] = ACTIONS(2486), - [sym_numeric_character_reference] = ACTIONS(2486), - [sym__whitespace_ge_2] = ACTIONS(1295), - [aux_sym__whitespace_token1] = ACTIONS(1297), - [sym__word_no_digit] = ACTIONS(2486), - [sym__digits] = ACTIONS(2486), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(862), + [sym__soft_line_break] = STATE(453), + [sym_hard_line_break] = STATE(453), + [sym_html_tag] = STATE(453), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(453), + [sym__word] = STATE(453), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star_no_link] = STATE(453), + [aux_sym__inline_no_star_no_link] = STATE(453), + [sym__text_inline_no_star_no_link] = STATE(453), + [sym__emphasis_star_no_link] = STATE(957), + [sym__strong_emphasis_star_no_link] = STATE(453), + [sym__emphasis_underscore_no_link] = STATE(957), + [sym__strong_emphasis_underscore_no_link] = STATE(453), + [sym__code_span] = STATE(453), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_DOLLAR] = ACTIONS(2620), + [anon_sym_PERCENT] = ACTIONS(2620), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_COMMA] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_COLON] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_EQ] = ACTIONS(2620), + [anon_sym_GT] = ACTIONS(2620), + [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_BSLASH] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2620), + [anon_sym__] = ACTIONS(2620), + [anon_sym_BQUOTE] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2628), + [anon_sym_LT_QMARK] = ACTIONS(2630), + [aux_sym__html_block_4_token1] = ACTIONS(2632), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2634), + [sym_backslash_escape] = ACTIONS(2636), + [sym_uri_autolink] = ACTIONS(2636), + [sym_email_autolink] = ACTIONS(2636), + [sym_entity_reference] = ACTIONS(2636), + [sym_numeric_character_reference] = ACTIONS(2636), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(2636), + [sym__digits] = ACTIONS(2636), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2488), - [sym__emphasis_open_star] = ACTIONS(2490), - [sym__emphasis_open_underscore] = ACTIONS(2492), + [sym__code_span_start] = ACTIONS(2638), + [sym__emphasis_open_star] = ACTIONS(2640), + [sym__emphasis_open_underscore] = ACTIONS(2642), + [sym__emphasis_close_star] = ACTIONS(2648), }, [449] = { - [sym_image] = STATE(450), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(836), - [sym__soft_line_break] = STATE(450), - [sym_hard_line_break] = STATE(450), - [sym_html_tag] = STATE(450), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(450), - [sym__word] = STATE(450), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star_no_link] = STATE(450), - [aux_sym__inline_no_star_no_link] = STATE(450), - [sym__text_inline_no_star_no_link] = STATE(450), - [sym__emphasis_star_no_link] = STATE(968), - [sym__strong_emphasis_star_no_link] = STATE(450), - [sym__emphasis_underscore_no_link] = STATE(968), - [sym__strong_emphasis_underscore_no_link] = STATE(450), - [sym__code_span] = STATE(450), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_AT] = ACTIONS(2647), - [anon_sym_BSLASH] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym__] = ACTIONS(2647), - [anon_sym_BQUOTE] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2655), - [anon_sym_LT_QMARK] = ACTIONS(2657), - [aux_sym__html_block_4_token1] = ACTIONS(2659), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2661), - [sym_backslash_escape] = ACTIONS(2663), - [sym_uri_autolink] = ACTIONS(2663), - [sym_email_autolink] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(2663), - [sym__digits] = ACTIONS(2663), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2665), - [sym__emphasis_open_star] = ACTIONS(2667), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_close_star] = ACTIONS(2671), - }, - [450] = { - [sym_image] = STATE(450), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(836), - [sym__soft_line_break] = STATE(450), - [sym_hard_line_break] = STATE(450), - [sym_html_tag] = STATE(450), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(450), - [sym__word] = STATE(450), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star_no_link] = STATE(450), - [aux_sym__inline_no_star_no_link] = STATE(450), - [sym__text_inline_no_star_no_link] = STATE(450), - [sym__emphasis_star_no_link] = STATE(968), - [sym__strong_emphasis_star_no_link] = STATE(450), - [sym__emphasis_underscore_no_link] = STATE(968), - [sym__strong_emphasis_underscore_no_link] = STATE(450), - [sym__code_span] = STATE(450), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(2676), - [anon_sym_DOLLAR] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_COLON] = ACTIONS(2676), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_QMARK] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [anon_sym_BSLASH] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym__] = ACTIONS(2676), - [anon_sym_BQUOTE] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2688), - [anon_sym_LT_QMARK] = ACTIONS(2691), - [aux_sym__html_block_4_token1] = ACTIONS(2694), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2697), - [sym_backslash_escape] = ACTIONS(2700), - [sym_uri_autolink] = ACTIONS(2700), - [sym_email_autolink] = ACTIONS(2700), - [sym_entity_reference] = ACTIONS(2700), - [sym_numeric_character_reference] = ACTIONS(2700), - [sym__whitespace_ge_2] = ACTIONS(2703), - [aux_sym__whitespace_token1] = ACTIONS(2706), - [sym__word_no_digit] = ACTIONS(2700), - [sym__digits] = ACTIONS(2700), - [aux_sym__newline_token1] = ACTIONS(2709), - [sym__code_span_start] = ACTIONS(2712), - [sym__emphasis_open_star] = ACTIONS(2715), - [sym__emphasis_open_underscore] = ACTIONS(2718), - [sym__emphasis_close_star] = ACTIONS(2721), - }, - [451] = { [sym_image] = STATE(451), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(891), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(862), [sym__soft_line_break] = STATE(451), [sym_hard_line_break] = STATE(451), [sym_html_tag] = STATE(451), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), [sym__whitespace] = STATE(451), [sym__word] = STATE(451), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore_no_link] = STATE(451), - [aux_sym__inline_no_underscore_no_link] = STATE(451), - [sym__text_inline_no_underscore_no_link] = STATE(451), - [sym__emphasis_star_no_link] = STATE(965), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star_no_link] = STATE(451), + [aux_sym__inline_no_star_no_link] = STATE(451), + [sym__text_inline_no_star_no_link] = STATE(451), + [sym__emphasis_star_no_link] = STATE(938), [sym__strong_emphasis_star_no_link] = STATE(451), - [sym__emphasis_underscore_no_link] = STATE(965), + [sym__emphasis_underscore_no_link] = STATE(957), [sym__strong_emphasis_underscore_no_link] = STATE(451), [sym__code_span] = STATE(451), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(2726), - [anon_sym_PERCENT] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_PLUS] = ACTIONS(2726), - [anon_sym_COMMA] = ACTIONS(2726), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_DOT] = ACTIONS(2726), - [anon_sym_SLASH] = ACTIONS(2726), - [anon_sym_COLON] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_EQ] = ACTIONS(2726), - [anon_sym_GT] = ACTIONS(2726), - [anon_sym_QMARK] = ACTIONS(2726), - [anon_sym_AT] = ACTIONS(2726), - [anon_sym_BSLASH] = ACTIONS(2735), - [anon_sym_CARET] = ACTIONS(2726), - [anon_sym__] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2738), - [anon_sym_LT_QMARK] = ACTIONS(2741), - [aux_sym__html_block_4_token1] = ACTIONS(2744), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2747), - [sym_backslash_escape] = ACTIONS(2750), - [sym_uri_autolink] = ACTIONS(2750), - [sym_email_autolink] = ACTIONS(2750), - [sym_entity_reference] = ACTIONS(2750), - [sym_numeric_character_reference] = ACTIONS(2750), - [sym__whitespace_ge_2] = ACTIONS(2753), - [aux_sym__whitespace_token1] = ACTIONS(2756), - [sym__word_no_digit] = ACTIONS(2750), - [sym__digits] = ACTIONS(2750), - [aux_sym__newline_token1] = ACTIONS(2759), - [sym__code_span_start] = ACTIONS(2762), - [sym__emphasis_open_star] = ACTIONS(2765), - [sym__emphasis_open_underscore] = ACTIONS(2768), - [sym__emphasis_close_underscore] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_DOLLAR] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_COLON] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(2653), + [anon_sym_BSLASH] = ACTIONS(2662), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym__] = ACTIONS(2653), + [anon_sym_BQUOTE] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2665), + [anon_sym_LT_QMARK] = ACTIONS(2668), + [aux_sym__html_block_4_token1] = ACTIONS(2671), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2674), + [sym_backslash_escape] = ACTIONS(2677), + [sym_uri_autolink] = ACTIONS(2677), + [sym_email_autolink] = ACTIONS(2677), + [sym_entity_reference] = ACTIONS(2677), + [sym_numeric_character_reference] = ACTIONS(2677), + [sym__whitespace_ge_2] = ACTIONS(2680), + [aux_sym__whitespace_token1] = ACTIONS(2683), + [sym__word_no_digit] = ACTIONS(2677), + [sym__digits] = ACTIONS(2677), + [aux_sym__newline_token1] = ACTIONS(2686), + [sym__code_span_start] = ACTIONS(2689), + [sym__emphasis_open_star] = ACTIONS(2692), + [sym__emphasis_open_underscore] = ACTIONS(2695), + [sym__emphasis_close_underscore] = ACTIONS(2698), }, - [452] = { - [sym_image] = STATE(451), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(891), - [sym__soft_line_break] = STATE(451), - [sym_hard_line_break] = STATE(451), - [sym_html_tag] = STATE(451), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(451), - [sym__word] = STATE(451), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore_no_link] = STATE(451), - [aux_sym__inline_no_underscore_no_link] = STATE(451), - [sym__text_inline_no_underscore_no_link] = STATE(451), + [450] = { + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(450), + [sym__text_inline_no_link] = STATE(964), [sym__emphasis_star_no_link] = STATE(965), - [sym__strong_emphasis_star_no_link] = STATE(451), + [sym__strong_emphasis_star_no_link] = STATE(964), [sym__emphasis_underscore_no_link] = STATE(965), - [sym__strong_emphasis_underscore_no_link] = STATE(451), - [sym__code_span] = STATE(451), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_PERCENT] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_DOT] = ACTIONS(2440), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_COLON] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(2440), - [anon_sym_GT] = ACTIONS(2440), - [anon_sym_QMARK] = ACTIONS(2440), - [anon_sym_AT] = ACTIONS(2440), - [anon_sym_BSLASH] = ACTIONS(2446), - [anon_sym_CARET] = ACTIONS(2440), - [anon_sym__] = ACTIONS(2440), - [anon_sym_BQUOTE] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_TILDE] = ACTIONS(2440), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), - [anon_sym_LT_QMARK] = ACTIONS(2450), - [aux_sym__html_block_4_token1] = ACTIONS(2452), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2454), - [sym_backslash_escape] = ACTIONS(2456), - [sym_uri_autolink] = ACTIONS(2456), - [sym_email_autolink] = ACTIONS(2456), - [sym_entity_reference] = ACTIONS(2456), - [sym_numeric_character_reference] = ACTIONS(2456), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(2456), - [sym__digits] = ACTIONS(2456), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_DOLLAR] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_COLON] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_EQ] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_AT] = ACTIONS(2703), + [anon_sym_BSLASH] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym__] = ACTIONS(2703), + [anon_sym_BQUOTE] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2717), + [anon_sym_LT_QMARK] = ACTIONS(2720), + [aux_sym__html_block_4_token1] = ACTIONS(2723), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2726), + [sym_backslash_escape] = ACTIONS(2729), + [sym_uri_autolink] = ACTIONS(2729), + [sym_email_autolink] = ACTIONS(2729), + [sym_entity_reference] = ACTIONS(2729), + [sym_numeric_character_reference] = ACTIONS(2729), + [sym__whitespace_ge_2] = ACTIONS(2732), + [aux_sym__whitespace_token1] = ACTIONS(2735), + [sym__word_no_digit] = ACTIONS(2729), + [sym__digits] = ACTIONS(2729), + [aux_sym__newline_token1] = ACTIONS(2738), + [sym__code_span_start] = ACTIONS(2741), + [sym__emphasis_open_star] = ACTIONS(2744), + [sym__emphasis_open_underscore] = ACTIONS(2747), + }, + [451] = { + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(862), + [sym__soft_line_break] = STATE(453), + [sym_hard_line_break] = STATE(453), + [sym_html_tag] = STATE(453), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(453), + [sym__word] = STATE(453), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star_no_link] = STATE(453), + [aux_sym__inline_no_star_no_link] = STATE(453), + [sym__text_inline_no_star_no_link] = STATE(453), + [sym__emphasis_star_no_link] = STATE(957), + [sym__strong_emphasis_star_no_link] = STATE(453), + [sym__emphasis_underscore_no_link] = STATE(957), + [sym__strong_emphasis_underscore_no_link] = STATE(453), + [sym__code_span] = STATE(453), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_DOLLAR] = ACTIONS(2620), + [anon_sym_PERCENT] = ACTIONS(2620), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_COMMA] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_COLON] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_EQ] = ACTIONS(2620), + [anon_sym_GT] = ACTIONS(2620), + [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_BSLASH] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2620), + [anon_sym__] = ACTIONS(2620), + [anon_sym_BQUOTE] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2628), + [anon_sym_LT_QMARK] = ACTIONS(2630), + [aux_sym__html_block_4_token1] = ACTIONS(2632), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2634), + [sym_backslash_escape] = ACTIONS(2636), + [sym_uri_autolink] = ACTIONS(2636), + [sym_email_autolink] = ACTIONS(2636), + [sym_entity_reference] = ACTIONS(2636), + [sym_numeric_character_reference] = ACTIONS(2636), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(2636), + [sym__digits] = ACTIONS(2636), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2458), - [sym__emphasis_open_star] = ACTIONS(2460), - [sym__emphasis_open_underscore] = ACTIONS(2462), - [sym__emphasis_close_underscore] = ACTIONS(2773), + [sym__code_span_start] = ACTIONS(2638), + [sym__emphasis_open_star] = ACTIONS(2640), + [sym__emphasis_open_underscore] = ACTIONS(2642), + [sym__emphasis_close_star] = ACTIONS(2750), + }, + [452] = { + [sym_image] = STATE(445), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(881), + [sym__soft_line_break] = STATE(445), + [sym_hard_line_break] = STATE(445), + [sym_html_tag] = STATE(445), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(445), + [sym__word] = STATE(445), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore_no_link] = STATE(445), + [aux_sym__inline_no_underscore_no_link] = STATE(445), + [sym__text_inline_no_underscore_no_link] = STATE(445), + [sym__emphasis_star_no_link] = STATE(956), + [sym__strong_emphasis_star_no_link] = STATE(445), + [sym__emphasis_underscore_no_link] = STATE(979), + [sym__strong_emphasis_underscore_no_link] = STATE(445), + [sym__code_span] = STATE(445), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_DOLLAR] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_RPAREN] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_COMMA] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_DOT] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_COLON] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_EQ] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2755), + [anon_sym_QMARK] = ACTIONS(2755), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_BSLASH] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym__] = ACTIONS(2755), + [anon_sym_BQUOTE] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2767), + [anon_sym_LT_QMARK] = ACTIONS(2770), + [aux_sym__html_block_4_token1] = ACTIONS(2773), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2776), + [sym_backslash_escape] = ACTIONS(2779), + [sym_uri_autolink] = ACTIONS(2779), + [sym_email_autolink] = ACTIONS(2779), + [sym_entity_reference] = ACTIONS(2779), + [sym_numeric_character_reference] = ACTIONS(2779), + [sym__whitespace_ge_2] = ACTIONS(2782), + [aux_sym__whitespace_token1] = ACTIONS(2785), + [sym__word_no_digit] = ACTIONS(2779), + [sym__digits] = ACTIONS(2779), + [aux_sym__newline_token1] = ACTIONS(2788), + [sym__code_span_start] = ACTIONS(2791), + [sym__emphasis_open_star] = ACTIONS(2794), + [sym__emphasis_open_underscore] = ACTIONS(2797), + [sym__emphasis_close_star] = ACTIONS(2800), }, [453] = { - [sym_image] = STATE(450), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(836), - [sym__soft_line_break] = STATE(450), - [sym_hard_line_break] = STATE(450), - [sym_html_tag] = STATE(450), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(450), - [sym__word] = STATE(450), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star_no_link] = STATE(450), - [aux_sym__inline_no_star_no_link] = STATE(450), - [sym__text_inline_no_star_no_link] = STATE(450), - [sym__emphasis_star_no_link] = STATE(968), - [sym__strong_emphasis_star_no_link] = STATE(450), - [sym__emphasis_underscore_no_link] = STATE(968), - [sym__strong_emphasis_underscore_no_link] = STATE(450), - [sym__code_span] = STATE(450), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_AT] = ACTIONS(2647), - [anon_sym_BSLASH] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym__] = ACTIONS(2647), - [anon_sym_BQUOTE] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2655), - [anon_sym_LT_QMARK] = ACTIONS(2657), - [aux_sym__html_block_4_token1] = ACTIONS(2659), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2661), - [sym_backslash_escape] = ACTIONS(2663), - [sym_uri_autolink] = ACTIONS(2663), - [sym_email_autolink] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(2663), - [sym__digits] = ACTIONS(2663), - [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2665), - [sym__emphasis_open_star] = ACTIONS(2667), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_close_star] = ACTIONS(2775), + [sym_image] = STATE(453), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(862), + [sym__soft_line_break] = STATE(453), + [sym_hard_line_break] = STATE(453), + [sym_html_tag] = STATE(453), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(453), + [sym__word] = STATE(453), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star_no_link] = STATE(453), + [aux_sym__inline_no_star_no_link] = STATE(453), + [sym__text_inline_no_star_no_link] = STATE(453), + [sym__emphasis_star_no_link] = STATE(957), + [sym__strong_emphasis_star_no_link] = STATE(453), + [sym__emphasis_underscore_no_link] = STATE(957), + [sym__strong_emphasis_underscore_no_link] = STATE(453), + [sym__code_span] = STATE(453), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2805), + [anon_sym_POUND] = ACTIONS(2805), + [anon_sym_DOLLAR] = ACTIONS(2805), + [anon_sym_PERCENT] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_SQUOTE] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_RPAREN] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_COMMA] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(2805), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_COLON] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_EQ] = ACTIONS(2805), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_QMARK] = ACTIONS(2805), + [anon_sym_AT] = ACTIONS(2805), + [anon_sym_BSLASH] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2805), + [anon_sym__] = ACTIONS(2805), + [anon_sym_BQUOTE] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2817), + [anon_sym_LT_QMARK] = ACTIONS(2820), + [aux_sym__html_block_4_token1] = ACTIONS(2823), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2826), + [sym_backslash_escape] = ACTIONS(2829), + [sym_uri_autolink] = ACTIONS(2829), + [sym_email_autolink] = ACTIONS(2829), + [sym_entity_reference] = ACTIONS(2829), + [sym_numeric_character_reference] = ACTIONS(2829), + [sym__whitespace_ge_2] = ACTIONS(2832), + [aux_sym__whitespace_token1] = ACTIONS(2835), + [sym__word_no_digit] = ACTIONS(2829), + [sym__digits] = ACTIONS(2829), + [aux_sym__newline_token1] = ACTIONS(2838), + [sym__code_span_start] = ACTIONS(2841), + [sym__emphasis_open_star] = ACTIONS(2844), + [sym__emphasis_open_underscore] = ACTIONS(2847), + [sym__emphasis_close_star] = ACTIONS(2850), }, [454] = { - [sym_image] = STATE(455), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(836), - [sym__soft_line_break] = STATE(455), - [sym_hard_line_break] = STATE(455), - [sym_html_tag] = STATE(455), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(455), - [sym__word] = STATE(455), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star_no_link] = STATE(455), - [aux_sym__inline_no_star_no_link] = STATE(455), - [sym__text_inline_no_star_no_link] = STATE(455), - [sym__emphasis_star_no_link] = STATE(947), - [sym__strong_emphasis_star_no_link] = STATE(455), - [sym__emphasis_underscore_no_link] = STATE(968), - [sym__strong_emphasis_underscore_no_link] = STATE(455), - [sym__code_span] = STATE(455), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_POUND] = ACTIONS(2780), - [anon_sym_DOLLAR] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_RPAREN] = ACTIONS(2780), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2780), - [anon_sym_COMMA] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_DOT] = ACTIONS(2780), - [anon_sym_SLASH] = ACTIONS(2780), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_EQ] = ACTIONS(2780), - [anon_sym_GT] = ACTIONS(2780), - [anon_sym_QMARK] = ACTIONS(2780), - [anon_sym_AT] = ACTIONS(2780), - [anon_sym_BSLASH] = ACTIONS(2789), - [anon_sym_CARET] = ACTIONS(2780), - [anon_sym__] = ACTIONS(2780), - [anon_sym_BQUOTE] = ACTIONS(2780), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_PIPE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2792), - [anon_sym_LT_QMARK] = ACTIONS(2795), - [aux_sym__html_block_4_token1] = ACTIONS(2798), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2801), - [sym_backslash_escape] = ACTIONS(2804), - [sym_uri_autolink] = ACTIONS(2804), - [sym_email_autolink] = ACTIONS(2804), - [sym_entity_reference] = ACTIONS(2804), - [sym_numeric_character_reference] = ACTIONS(2804), - [sym__whitespace_ge_2] = ACTIONS(2807), - [aux_sym__whitespace_token1] = ACTIONS(2810), - [sym__word_no_digit] = ACTIONS(2804), - [sym__digits] = ACTIONS(2804), - [aux_sym__newline_token1] = ACTIONS(2813), - [sym__code_span_start] = ACTIONS(2816), - [sym__emphasis_open_star] = ACTIONS(2819), - [sym__emphasis_open_underscore] = ACTIONS(2822), - [sym__emphasis_close_underscore] = ACTIONS(2825), + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(450), + [sym__text_inline_no_link] = STATE(964), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2564), + [anon_sym_PERCENT] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2564), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_COLON] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2564), + [anon_sym_GT] = ACTIONS(2564), + [anon_sym_QMARK] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_BSLASH] = ACTIONS(2570), + [anon_sym_RBRACK] = ACTIONS(2852), + [anon_sym_CARET] = ACTIONS(2564), + [anon_sym__] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2564), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2574), + [anon_sym_LT_QMARK] = ACTIONS(2576), + [aux_sym__html_block_4_token1] = ACTIONS(2578), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2580), + [sym_backslash_escape] = ACTIONS(2582), + [sym_uri_autolink] = ACTIONS(2582), + [sym_email_autolink] = ACTIONS(2582), + [sym_entity_reference] = ACTIONS(2582), + [sym_numeric_character_reference] = ACTIONS(2582), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(2582), + [sym__digits] = ACTIONS(2582), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2584), + [sym__emphasis_open_star] = ACTIONS(2586), + [sym__emphasis_open_underscore] = ACTIONS(2588), }, [455] = { - [sym_image] = STATE(450), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(836), - [sym__soft_line_break] = STATE(450), - [sym_hard_line_break] = STATE(450), - [sym_html_tag] = STATE(450), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(450), - [sym__word] = STATE(450), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star_no_link] = STATE(450), - [aux_sym__inline_no_star_no_link] = STATE(450), - [sym__text_inline_no_star_no_link] = STATE(450), - [sym__emphasis_star_no_link] = STATE(968), - [sym__strong_emphasis_star_no_link] = STATE(450), - [sym__emphasis_underscore_no_link] = STATE(968), - [sym__strong_emphasis_underscore_no_link] = STATE(450), - [sym__code_span] = STATE(450), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_AT] = ACTIONS(2647), - [anon_sym_BSLASH] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym__] = ACTIONS(2647), - [anon_sym_BQUOTE] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2655), - [anon_sym_LT_QMARK] = ACTIONS(2657), - [aux_sym__html_block_4_token1] = ACTIONS(2659), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2661), - [sym_backslash_escape] = ACTIONS(2663), - [sym_uri_autolink] = ACTIONS(2663), - [sym_email_autolink] = ACTIONS(2663), - [sym_entity_reference] = ACTIONS(2663), - [sym_numeric_character_reference] = ACTIONS(2663), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(2663), - [sym__digits] = ACTIONS(2663), + [sym_image] = STATE(964), + [sym__image_inline_link] = STATE(916), + [sym__image_shortcut_link] = STATE(916), + [sym__image_full_reference_link] = STATE(916), + [sym__image_collapsed_reference_link] = STATE(916), + [sym__image_description] = STATE(2098), + [sym__image_description_non_empty] = STATE(825), + [sym__soft_line_break] = STATE(964), + [sym_hard_line_break] = STATE(964), + [sym_html_tag] = STATE(964), + [sym__open_tag] = STATE(913), + [sym__closing_tag] = STATE(913), + [sym__html_comment] = STATE(913), + [sym__processing_instruction] = STATE(913), + [sym__declaration] = STATE(913), + [sym__cdata_section] = STATE(913), + [sym__whitespace] = STATE(964), + [sym__word] = STATE(964), + [sym__newline] = STATE(2108), + [sym__inline_element_no_link] = STATE(964), + [aux_sym__inline_no_link] = STATE(450), + [sym__text_inline_no_link] = STATE(964), + [sym__emphasis_star_no_link] = STATE(965), + [sym__strong_emphasis_star_no_link] = STATE(964), + [sym__emphasis_underscore_no_link] = STATE(965), + [sym__strong_emphasis_underscore_no_link] = STATE(964), + [sym__code_span] = STATE(964), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_DOLLAR] = ACTIONS(2564), + [anon_sym_PERCENT] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2564), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_COLON] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2564), + [anon_sym_GT] = ACTIONS(2564), + [anon_sym_QMARK] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_BSLASH] = ACTIONS(2570), + [anon_sym_RBRACK] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2564), + [anon_sym__] = ACTIONS(2564), + [anon_sym_BQUOTE] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2564), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2574), + [anon_sym_LT_QMARK] = ACTIONS(2576), + [aux_sym__html_block_4_token1] = ACTIONS(2578), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2580), + [sym_backslash_escape] = ACTIONS(2582), + [sym_uri_autolink] = ACTIONS(2582), + [sym_email_autolink] = ACTIONS(2582), + [sym_entity_reference] = ACTIONS(2582), + [sym_numeric_character_reference] = ACTIONS(2582), + [sym__whitespace_ge_2] = ACTIONS(1145), + [aux_sym__whitespace_token1] = ACTIONS(1147), + [sym__word_no_digit] = ACTIONS(2582), + [sym__digits] = ACTIONS(2582), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2665), - [sym__emphasis_open_star] = ACTIONS(2667), - [sym__emphasis_open_underscore] = ACTIONS(2669), - [sym__emphasis_close_star] = ACTIONS(2827), + [sym__code_span_start] = ACTIONS(2584), + [sym__emphasis_open_star] = ACTIONS(2586), + [sym__emphasis_open_underscore] = ACTIONS(2588), }, [456] = { - [sym_image] = STATE(456), - [sym__image_inline_link] = STATE(871), - [sym__image_shortcut_link] = STATE(871), - [sym__image_full_reference_link] = STATE(871), - [sym__image_collapsed_reference_link] = STATE(871), - [sym_image_description] = STATE(2115), - [sym__image_description_non_empty] = STATE(869), - [sym__soft_line_break] = STATE(456), - [sym_hard_line_break] = STATE(456), - [sym_html_tag] = STATE(456), - [sym__open_tag] = STATE(881), - [sym__closing_tag] = STATE(881), - [sym__html_comment] = STATE(881), - [sym__processing_instruction] = STATE(881), - [sym__declaration] = STATE(881), - [sym__cdata_section] = STATE(881), - [sym__whitespace] = STATE(456), - [sym__word] = STATE(456), - [sym__newline] = STATE(2114), - [sym__inline_element_no_link] = STATE(456), - [aux_sym__inline_no_link] = STATE(456), - [sym__text_inline_no_link] = STATE(456), - [sym__emphasis_star_no_link] = STATE(940), - [sym__strong_emphasis_star_no_link] = STATE(456), - [sym__emphasis_underscore_no_link] = STATE(940), - [sym__strong_emphasis_underscore_no_link] = STATE(456), - [sym__code_span] = STATE(456), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_RPAREN] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_BSLASH] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym__] = ACTIONS(2832), - [anon_sym_BQUOTE] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2846), - [anon_sym_LT_QMARK] = ACTIONS(2849), - [aux_sym__html_block_4_token1] = ACTIONS(2852), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2855), + [sym_image] = STATE(443), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(881), + [sym__soft_line_break] = STATE(443), + [sym_hard_line_break] = STATE(443), + [sym_html_tag] = STATE(443), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(443), + [sym__word] = STATE(443), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore_no_link] = STATE(443), + [aux_sym__inline_no_underscore_no_link] = STATE(443), + [sym__text_inline_no_underscore_no_link] = STATE(443), + [sym__emphasis_star_no_link] = STATE(956), + [sym__strong_emphasis_star_no_link] = STATE(443), + [sym__emphasis_underscore_no_link] = STATE(956), + [sym__strong_emphasis_underscore_no_link] = STATE(443), + [sym__code_span] = STATE(443), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2592), + [anon_sym_PERCENT] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_DOT] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_COLON] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2592), + [anon_sym_BSLASH] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym__] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2600), + [anon_sym_LT_QMARK] = ACTIONS(2602), + [aux_sym__html_block_4_token1] = ACTIONS(2604), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2606), + [sym_backslash_escape] = ACTIONS(2608), + [sym_uri_autolink] = ACTIONS(2608), + [sym_email_autolink] = ACTIONS(2608), + [sym_entity_reference] = ACTIONS(2608), + [sym_numeric_character_reference] = ACTIONS(2608), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), + [sym__word_no_digit] = ACTIONS(2608), + [sym__digits] = ACTIONS(2608), + [aux_sym__newline_token1] = ACTIONS(41), + [sym__code_span_start] = ACTIONS(2610), + [sym__emphasis_open_star] = ACTIONS(2612), + [sym__emphasis_open_underscore] = ACTIONS(2614), + [sym__emphasis_close_underscore] = ACTIONS(2856), + }, + [457] = { + [sym_image] = STATE(447), + [sym__image_inline_link] = STATE(684), + [sym__image_shortcut_link] = STATE(684), + [sym__image_full_reference_link] = STATE(684), + [sym__image_collapsed_reference_link] = STATE(684), + [sym__image_description] = STATE(2120), + [sym__image_description_non_empty] = STATE(881), + [sym__soft_line_break] = STATE(447), + [sym_hard_line_break] = STATE(447), + [sym_html_tag] = STATE(447), + [sym__open_tag] = STATE(723), + [sym__closing_tag] = STATE(723), + [sym__html_comment] = STATE(723), + [sym__processing_instruction] = STATE(723), + [sym__declaration] = STATE(723), + [sym__cdata_section] = STATE(723), + [sym__whitespace] = STATE(447), + [sym__word] = STATE(447), + [sym__newline] = STATE(2100), + [sym__inline_element_no_underscore_no_link] = STATE(447), + [aux_sym__inline_no_underscore_no_link] = STATE(447), + [sym__text_inline_no_underscore_no_link] = STATE(447), + [sym__emphasis_star_no_link] = STATE(956), + [sym__strong_emphasis_star_no_link] = STATE(447), + [sym__emphasis_underscore_no_link] = STATE(951), + [sym__strong_emphasis_underscore_no_link] = STATE(447), + [sym__code_span] = STATE(447), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_DOLLAR] = ACTIONS(2592), + [anon_sym_PERCENT] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_DOT] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_COLON] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2592), + [anon_sym_BSLASH] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2592), + [anon_sym__] = ACTIONS(2592), + [anon_sym_BQUOTE] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2600), + [anon_sym_LT_QMARK] = ACTIONS(2602), + [aux_sym__html_block_4_token1] = ACTIONS(2604), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2606), [sym_backslash_escape] = ACTIONS(2858), [sym_uri_autolink] = ACTIONS(2858), [sym_email_autolink] = ACTIONS(2858), [sym_entity_reference] = ACTIONS(2858), [sym_numeric_character_reference] = ACTIONS(2858), - [sym__whitespace_ge_2] = ACTIONS(2861), - [aux_sym__whitespace_token1] = ACTIONS(2864), + [sym__whitespace_ge_2] = ACTIONS(650), + [aux_sym__whitespace_token1] = ACTIONS(652), [sym__word_no_digit] = ACTIONS(2858), [sym__digits] = ACTIONS(2858), - [aux_sym__newline_token1] = ACTIONS(2867), - [sym__code_span_start] = ACTIONS(2870), - [sym__emphasis_open_star] = ACTIONS(2873), - [sym__emphasis_open_underscore] = ACTIONS(2876), - }, - [457] = { - [sym_image] = STATE(449), - [sym__image_inline_link] = STATE(692), - [sym__image_shortcut_link] = STATE(692), - [sym__image_full_reference_link] = STATE(692), - [sym__image_collapsed_reference_link] = STATE(692), - [sym_image_description] = STATE(2106), - [sym__image_description_non_empty] = STATE(836), - [sym__soft_line_break] = STATE(449), - [sym_hard_line_break] = STATE(449), - [sym_html_tag] = STATE(449), - [sym__open_tag] = STATE(695), - [sym__closing_tag] = STATE(695), - [sym__html_comment] = STATE(695), - [sym__processing_instruction] = STATE(695), - [sym__declaration] = STATE(695), - [sym__cdata_section] = STATE(695), - [sym__whitespace] = STATE(449), - [sym__word] = STATE(449), - [sym__newline] = STATE(2104), - [sym__inline_element_no_star_no_link] = STATE(449), - [aux_sym__inline_no_star_no_link] = STATE(449), - [sym__text_inline_no_star_no_link] = STATE(449), - [sym__emphasis_star_no_link] = STATE(964), - [sym__strong_emphasis_star_no_link] = STATE(449), - [sym__emphasis_underscore_no_link] = STATE(968), - [sym__strong_emphasis_underscore_no_link] = STATE(449), - [sym__code_span] = STATE(449), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(2647), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_PERCENT] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_RPAREN] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_DOT] = ACTIONS(2647), - [anon_sym_SLASH] = ACTIONS(2647), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_LT] = ACTIONS(2651), - [anon_sym_EQ] = ACTIONS(2647), - [anon_sym_GT] = ACTIONS(2647), - [anon_sym_QMARK] = ACTIONS(2647), - [anon_sym_AT] = ACTIONS(2647), - [anon_sym_BSLASH] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2647), - [anon_sym__] = ACTIONS(2647), - [anon_sym_BQUOTE] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_PIPE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2655), - [anon_sym_LT_QMARK] = ACTIONS(2657), - [aux_sym__html_block_4_token1] = ACTIONS(2659), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2661), - [sym_backslash_escape] = ACTIONS(2879), - [sym_uri_autolink] = ACTIONS(2879), - [sym_email_autolink] = ACTIONS(2879), - [sym_entity_reference] = ACTIONS(2879), - [sym_numeric_character_reference] = ACTIONS(2879), - [sym__whitespace_ge_2] = ACTIONS(848), - [aux_sym__whitespace_token1] = ACTIONS(850), - [sym__word_no_digit] = ACTIONS(2879), - [sym__digits] = ACTIONS(2879), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2665), - [sym__emphasis_open_star] = ACTIONS(2667), - [sym__emphasis_open_underscore] = ACTIONS(2669), + [sym__code_span_start] = ACTIONS(2610), + [sym__emphasis_open_star] = ACTIONS(2612), + [sym__emphasis_open_underscore] = ACTIONS(2614), }, [458] = { - [sym_image] = STATE(444), - [sym__image_inline_link] = STATE(726), - [sym__image_shortcut_link] = STATE(726), - [sym__image_full_reference_link] = STATE(726), - [sym__image_collapsed_reference_link] = STATE(726), - [sym_image_description] = STATE(2099), - [sym__image_description_non_empty] = STATE(891), - [sym__soft_line_break] = STATE(444), - [sym_hard_line_break] = STATE(444), - [sym_html_tag] = STATE(444), - [sym__open_tag] = STATE(733), - [sym__closing_tag] = STATE(733), - [sym__html_comment] = STATE(733), - [sym__processing_instruction] = STATE(733), - [sym__declaration] = STATE(733), - [sym__cdata_section] = STATE(733), - [sym__whitespace] = STATE(444), - [sym__word] = STATE(444), - [sym__newline] = STATE(2105), - [sym__inline_element_no_underscore_no_link] = STATE(444), - [aux_sym__inline_no_underscore_no_link] = STATE(444), - [sym__text_inline_no_underscore_no_link] = STATE(444), - [sym__emphasis_star_no_link] = STATE(965), - [sym__strong_emphasis_star_no_link] = STATE(444), + [sym_image] = STATE(448), + [sym__image_inline_link] = STATE(694), + [sym__image_shortcut_link] = STATE(694), + [sym__image_full_reference_link] = STATE(694), + [sym__image_collapsed_reference_link] = STATE(694), + [sym__image_description] = STATE(2101), + [sym__image_description_non_empty] = STATE(862), + [sym__soft_line_break] = STATE(448), + [sym_hard_line_break] = STATE(448), + [sym_html_tag] = STATE(448), + [sym__open_tag] = STATE(697), + [sym__closing_tag] = STATE(697), + [sym__html_comment] = STATE(697), + [sym__processing_instruction] = STATE(697), + [sym__declaration] = STATE(697), + [sym__cdata_section] = STATE(697), + [sym__whitespace] = STATE(448), + [sym__word] = STATE(448), + [sym__newline] = STATE(2106), + [sym__inline_element_no_star_no_link] = STATE(448), + [aux_sym__inline_no_star_no_link] = STATE(448), + [sym__text_inline_no_star_no_link] = STATE(448), + [sym__emphasis_star_no_link] = STATE(978), + [sym__strong_emphasis_star_no_link] = STATE(448), [sym__emphasis_underscore_no_link] = STATE(957), - [sym__strong_emphasis_underscore_no_link] = STATE(444), - [sym__code_span] = STATE(444), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_PERCENT] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_RPAREN] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(2440), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_DOT] = ACTIONS(2440), - [anon_sym_SLASH] = ACTIONS(2440), - [anon_sym_COLON] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(2440), - [anon_sym_GT] = ACTIONS(2440), - [anon_sym_QMARK] = ACTIONS(2440), - [anon_sym_AT] = ACTIONS(2440), - [anon_sym_BSLASH] = ACTIONS(2446), - [anon_sym_CARET] = ACTIONS(2440), - [anon_sym__] = ACTIONS(2440), - [anon_sym_BQUOTE] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_TILDE] = ACTIONS(2440), - [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2448), - [anon_sym_LT_QMARK] = ACTIONS(2450), - [aux_sym__html_block_4_token1] = ACTIONS(2452), - [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2454), - [sym_backslash_escape] = ACTIONS(2881), - [sym_uri_autolink] = ACTIONS(2881), - [sym_email_autolink] = ACTIONS(2881), - [sym_entity_reference] = ACTIONS(2881), - [sym_numeric_character_reference] = ACTIONS(2881), - [sym__whitespace_ge_2] = ACTIONS(651), - [aux_sym__whitespace_token1] = ACTIONS(653), - [sym__word_no_digit] = ACTIONS(2881), - [sym__digits] = ACTIONS(2881), + [sym__strong_emphasis_underscore_no_link] = STATE(448), + [sym__code_span] = STATE(448), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_DQUOTE] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_DOLLAR] = ACTIONS(2620), + [anon_sym_PERCENT] = ACTIONS(2620), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_PLUS] = ACTIONS(2620), + [anon_sym_COMMA] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_SLASH] = ACTIONS(2620), + [anon_sym_COLON] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_EQ] = ACTIONS(2620), + [anon_sym_GT] = ACTIONS(2620), + [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_BSLASH] = ACTIONS(2626), + [anon_sym_CARET] = ACTIONS(2620), + [anon_sym__] = ACTIONS(2620), + [anon_sym_BQUOTE] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_LT_BANG_DASH_DASH] = ACTIONS(2628), + [anon_sym_LT_QMARK] = ACTIONS(2630), + [aux_sym__html_block_4_token1] = ACTIONS(2632), + [anon_sym_LT_BANG_LBRACKCDATA_LBRACK] = ACTIONS(2634), + [sym_backslash_escape] = ACTIONS(2860), + [sym_uri_autolink] = ACTIONS(2860), + [sym_email_autolink] = ACTIONS(2860), + [sym_entity_reference] = ACTIONS(2860), + [sym_numeric_character_reference] = ACTIONS(2860), + [sym__whitespace_ge_2] = ACTIONS(895), + [aux_sym__whitespace_token1] = ACTIONS(897), + [sym__word_no_digit] = ACTIONS(2860), + [sym__digits] = ACTIONS(2860), [aux_sym__newline_token1] = ACTIONS(41), - [sym__code_span_start] = ACTIONS(2458), - [sym__emphasis_open_star] = ACTIONS(2460), - [sym__emphasis_open_underscore] = ACTIONS(2462), + [sym__code_span_start] = ACTIONS(2638), + [sym__emphasis_open_star] = ACTIONS(2640), + [sym__emphasis_open_underscore] = ACTIONS(2642), }, }; @@ -71284,17 +71300,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_6_token1, ACTIONS(87), 1, aux_sym__html_block_6_token2, - ACTIONS(2885), 1, + ACTIONS(2864), 1, anon_sym_LBRACK, - ACTIONS(2888), 1, + ACTIONS(2867), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(2890), 1, + ACTIONS(2869), 1, anon_sym_LT_QMARK, - ACTIONS(2892), 1, + ACTIONS(2871), 1, aux_sym__html_block_4_token1, - ACTIONS(2894), 1, + ACTIONS(2873), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - STATE(2450), 1, + STATE(2452), 1, sym_link_label, ACTIONS(89), 2, sym__open_tag_html_block, @@ -71302,12 +71318,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(91), 2, sym__open_tag_html_block_newline, sym__closing_tag_html_block_newline, - ACTIONS(2883), 4, + ACTIONS(2862), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(410), 7, + STATE(378), 7, sym__html_block_1, sym__html_block_2, sym__html_block_3, @@ -71315,7 +71331,7 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_5, sym__html_block_6, sym__html_block_7, - ACTIONS(2045), 40, + ACTIONS(2068), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71363,17 +71379,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_6_token1, ACTIONS(29), 1, aux_sym__html_block_6_token2, - ACTIONS(2885), 1, + ACTIONS(2864), 1, anon_sym_LBRACK, - ACTIONS(2896), 1, + ACTIONS(2875), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(2898), 1, + ACTIONS(2877), 1, anon_sym_LT_QMARK, - ACTIONS(2900), 1, + ACTIONS(2879), 1, aux_sym__html_block_4_token1, - ACTIONS(2902), 1, + ACTIONS(2881), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - STATE(2278), 1, + STATE(2296), 1, sym_link_label, ACTIONS(31), 2, sym__open_tag_html_block, @@ -71381,12 +71397,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(33), 2, sym__open_tag_html_block_newline, sym__closing_tag_html_block_newline, - ACTIONS(2883), 4, + ACTIONS(2862), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(394), 7, + STATE(391), 7, sym__html_block_1, sym__html_block_2, sym__html_block_3, @@ -71394,7 +71410,7 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_5, sym__html_block_6, sym__html_block_7, - ACTIONS(2045), 40, + ACTIONS(2068), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71436,15 +71452,15 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [186] = 6, - ACTIONS(2908), 1, + ACTIONS(2887), 1, aux_sym__newline_token1, - ACTIONS(2911), 1, + ACTIONS(2890), 1, sym__last_token_whitespace, - STATE(932), 1, + STATE(845), 1, sym__soft_line_break, - STATE(2114), 1, + STATE(2108), 1, sym__newline, - ACTIONS(2906), 8, + ACTIONS(2885), 8, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -71453,7 +71469,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_4_token1, aux_sym__html_block_6_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 47, + ACTIONS(2883), 47, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71501,49 +71517,115 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [258] = 12, - ACTIONS(2813), 1, + [258] = 11, + ACTIONS(1110), 1, aux_sym__newline_token1, - ACTIONS(2923), 1, + ACTIONS(2900), 1, sym__whitespace_ge_2, - ACTIONS(2926), 1, + ACTIONS(2903), 1, aux_sym__whitespace_token1, - ACTIONS(2932), 1, + ACTIONS(2909), 1, sym__code_span_close, - STATE(2113), 1, + STATE(2107), 1, sym__newline, - ACTIONS(2919), 2, + ACTIONS(2906), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2895), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + ACTIONS(2898), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + STATE(1085), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(1122), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + ACTIONS(2892), 29, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2929), 2, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [338] = 11, + ACTIONS(1276), 1, + aux_sym__newline_token1, + ACTIONS(2919), 1, + sym__whitespace_ge_2, + ACTIONS(2922), 1, + aux_sym__whitespace_token1, + ACTIONS(2928), 1, + sym__code_span_close, + STATE(2107), 1, + sym__newline, + ACTIONS(2925), 2, sym__word_no_digit, sym__digits, - ACTIONS(2916), 3, + ACTIONS(2914), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2921), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1102), 5, + STATE(1100), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2825), 10, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(2913), 27, + ACTIONS(2911), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71564,6 +71646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -71571,10 +71655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [340] = 3, - ACTIONS(2911), 1, + [418] = 3, + ACTIONS(2890), 1, sym__last_token_whitespace, - ACTIONS(2906), 8, + ACTIONS(2885), 8, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -71583,7 +71667,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_4_token1, aux_sym__html_block_6_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 48, + ACTIONS(2883), 48, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71632,49 +71716,49 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [404] = 12, - ACTIONS(2629), 1, + [482] = 12, + ACTIONS(2686), 1, aux_sym__newline_token1, - ACTIONS(2942), 1, + ACTIONS(2909), 1, + sym__code_span_close, + ACTIONS(2940), 1, sym__whitespace_ge_2, - ACTIONS(2945), 1, + ACTIONS(2943), 1, aux_sym__whitespace_token1, - ACTIONS(2951), 1, - sym__code_span_close, - STATE(2113), 1, + STATE(2107), 1, sym__newline, - ACTIONS(2919), 2, + ACTIONS(2936), 2, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(2948), 2, + ACTIONS(2946), 2, sym__word_no_digit, sym__digits, - ACTIONS(2937), 3, + ACTIONS(2933), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2940), 3, + ACTIONS(2938), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1089), 5, + STATE(1085), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2641), 10, + ACTIONS(2698), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(2934), 27, + ACTIONS(2930), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71702,46 +71786,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [486] = 11, - ACTIONS(926), 1, + [564] = 12, + ACTIONS(2788), 1, aux_sym__newline_token1, - ACTIONS(2932), 1, + ACTIONS(2928), 1, sym__code_span_close, - ACTIONS(2961), 1, + ACTIONS(2957), 1, sym__whitespace_ge_2, - ACTIONS(2964), 1, + ACTIONS(2960), 1, aux_sym__whitespace_token1, - STATE(2113), 1, + STATE(2107), 1, sym__newline, - ACTIONS(2967), 2, + ACTIONS(2936), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2963), 2, sym__word_no_digit, sym__digits, - ACTIONS(2956), 3, + ACTIONS(2952), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2959), 3, + ACTIONS(2955), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1102), 5, + STATE(1100), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(938), 10, + ACTIONS(2800), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(2953), 29, + ACTIONS(2949), 27, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [646] = 11, + ACTIONS(1559), 1, + aux_sym__newline_token1, + ACTIONS(2972), 1, + sym__whitespace_ge_2, + ACTIONS(2975), 1, + aux_sym__whitespace_token1, + ACTIONS(2981), 1, + sym__code_span_close, + STATE(2107), 1, + sym__newline, + ACTIONS(2978), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2862), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(2969), 3, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + STATE(1103), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(2068), 9, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + ACTIONS(2966), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71771,46 +71924,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [566] = 11, - ACTIONS(1340), 1, + [725] = 12, + ACTIONS(2455), 1, aux_sym__newline_token1, - ACTIONS(2951), 1, + ACTIONS(2936), 1, + anon_sym_LBRACK, + ACTIONS(2981), 1, sym__code_span_close, - ACTIONS(2978), 1, + ACTIONS(2991), 1, sym__whitespace_ge_2, - ACTIONS(2981), 1, + ACTIONS(2994), 1, aux_sym__whitespace_token1, - STATE(2113), 1, + STATE(2107), 1, sym__newline, - ACTIONS(2984), 2, + ACTIONS(2997), 2, sym__word_no_digit, sym__digits, - ACTIONS(2973), 3, + ACTIONS(2986), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2976), 3, + ACTIONS(2989), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1089), 5, + STATE(1103), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(1352), 10, + ACTIONS(2432), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(2970), 29, + ACTIONS(2983), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71831,7 +71985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -71840,8 +71993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [646] = 2, - ACTIONS(2989), 8, + [806] = 2, + ACTIONS(3002), 8, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -71850,7 +72003,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__html_block_4_token1, aux_sym__html_block_6_token1, aux_sym__whitespace_token1, - ACTIONS(2987), 48, + ACTIONS(3000), 48, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -71899,47 +72052,44 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [707] = 12, - ACTIONS(2532), 1, - aux_sym__newline_token1, - ACTIONS(2919), 1, - anon_sym_LBRACK, - ACTIONS(2999), 1, + [867] = 10, + ACTIONS(3010), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3012), 1, sym__whitespace_ge_2, - ACTIONS(3002), 1, + ACTIONS(3015), 1, aux_sym__whitespace_token1, - ACTIONS(3008), 1, - sym__code_span_close, - STATE(2113), 1, - sym__newline, - ACTIONS(3005), 2, + ACTIONS(3021), 1, + aux_sym__newline_token1, + ACTIONS(3018), 2, sym__word_no_digit, sym__digits, - ACTIONS(2994), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(2997), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1092), 5, - sym__soft_line_break, - sym__text, + ACTIONS(3007), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_RBRACK, + STATE(1338), 4, sym__whitespace, sym__word, - aux_sym__code_span_repeat1, - ACTIONS(2509), 9, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(2991), 28, + ACTIONS(3004), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -71960,7 +72110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -71968,35 +72118,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [788] = 11, - ACTIONS(1529), 1, - aux_sym__newline_token1, - ACTIONS(3008), 1, - sym__code_span_close, - ACTIONS(3016), 1, + [943] = 11, + ACTIONS(3030), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3032), 1, sym__whitespace_ge_2, - ACTIONS(3019), 1, + ACTIONS(3035), 1, aux_sym__whitespace_token1, - STATE(2113), 1, - sym__newline, - ACTIONS(3022), 2, + ACTIONS(3041), 1, + aux_sym__newline_token1, + ACTIONS(3044), 1, + sym__open_block, + ACTIONS(3038), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3013), 3, + ACTIONS(3027), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1092), 5, - sym__soft_line_break, - sym__text, + anon_sym_RBRACK, + STATE(1410), 4, sym__whitespace, sym__word, - aux_sym__code_span_repeat1, - ACTIONS(2045), 9, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72006,7 +72156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3010), 29, + ACTIONS(3024), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72028,7 +72178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72036,37 +72185,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [867] = 13, - ACTIONS(3031), 1, - anon_sym_DASH, - ACTIONS(3034), 1, - anon_sym_GT, - ACTIONS(3037), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3039), 1, + [1021] = 12, + ACTIONS(3010), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3052), 1, + anon_sym_LBRACK, + ACTIONS(3054), 1, + anon_sym_RBRACK, + ACTIONS(3056), 1, sym__whitespace_ge_2, - ACTIONS(3042), 1, + ACTIONS(3059), 1, aux_sym__whitespace_token1, - ACTIONS(3048), 1, + ACTIONS(3065), 1, aux_sym__newline_token1, - STATE(1445), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3045), 2, + ACTIONS(3062), 2, sym__word_no_digit, sym__digits, - ACTIONS(2976), 3, + ACTIONS(2955), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3028), 3, + ACTIONS(3049), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1446), 3, + STATE(1338), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(1352), 10, + aux_sym__html_comment_repeat1, + ACTIONS(2800), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72077,7 +72225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3025), 27, + ACTIONS(3046), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72089,15 +72237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72105,47 +72253,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [949] = 11, - ACTIONS(3059), 1, - anon_sym_QMARK_GT, - ACTIONS(3061), 1, + [1101] = 11, + ACTIONS(3030), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3032), 1, sym__whitespace_ge_2, - ACTIONS(3064), 1, + ACTIONS(3035), 1, aux_sym__whitespace_token1, - ACTIONS(3070), 1, + ACTIONS(3041), 1, aux_sym__newline_token1, - ACTIONS(3057), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3067), 2, + ACTIONS(3068), 1, + sym__open_block, + ACTIONS(3038), 2, sym__word_no_digit, sym__digits, - ACTIONS(2940), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3054), 4, + ACTIONS(3027), 4, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1444), 4, + anon_sym_RBRACK, + STATE(1410), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2641), 10, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3051), 26, + ACTIONS(3024), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72164,7 +72310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72172,45 +72320,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1027] = 11, - ACTIONS(3079), 1, + [1179] = 11, + ACTIONS(3078), 1, anon_sym_QMARK_GT, - ACTIONS(3081), 1, + ACTIONS(3080), 1, sym__whitespace_ge_2, - ACTIONS(3084), 1, + ACTIONS(3083), 1, aux_sym__whitespace_token1, - ACTIONS(3090), 1, + ACTIONS(3089), 1, aux_sym__newline_token1, - ACTIONS(3093), 1, - sym__open_block, - ACTIONS(3087), 2, + ACTIONS(3076), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3086), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2955), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3076), 4, + ACTIONS(3073), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1270), 4, + STATE(1351), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2045), 9, + ACTIONS(2800), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3073), 28, + ACTIONS(3070), 26, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72230,8 +72380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72239,49 +72387,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1105] = 14, - ACTIONS(3101), 1, + [1257] = 14, + ACTIONS(3098), 1, anon_sym_DASH, - ACTIONS(3104), 1, + ACTIONS(3101), 1, anon_sym_GT, - ACTIONS(3107), 1, + ACTIONS(3106), 1, anon_sym_DASH_DASH_GT, - ACTIONS(3109), 1, + ACTIONS(3108), 1, sym__whitespace_ge_2, - ACTIONS(3112), 1, + ACTIONS(3111), 1, aux_sym__whitespace_token1, - ACTIONS(3118), 1, + ACTIONS(3117), 1, aux_sym__newline_token1, - ACTIONS(3121), 1, - sym__open_block, - STATE(1269), 1, + STATE(1462), 1, aux_sym__html_comment_repeat1, - ACTIONS(3115), 2, + ACTIONS(3104), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3114), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2938), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3098), 3, + ACTIONS(3095), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1268), 3, + STATE(1461), 3, sym__whitespace, sym__word, sym__newline, - ACTIONS(2045), 9, + ACTIONS(2698), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3095), 27, + ACTIONS(3092), 25, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72300,8 +72450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72309,36 +72457,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1189] = 12, - ACTIONS(3129), 1, - anon_sym_LBRACK, - ACTIONS(3131), 1, - anon_sym_RBRACK, - ACTIONS(3133), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3135), 1, + [1341] = 11, + ACTIONS(3126), 1, + anon_sym_QMARK_GT, + ACTIONS(3128), 1, sym__whitespace_ge_2, - ACTIONS(3138), 1, + ACTIONS(3131), 1, aux_sym__whitespace_token1, - ACTIONS(3144), 1, + ACTIONS(3137), 1, aux_sym__newline_token1, - ACTIONS(3141), 2, + ACTIONS(3076), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3134), 2, sym__word_no_digit, sym__digits, - ACTIONS(2921), 3, + ACTIONS(2938), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3126), 3, + ACTIONS(3123), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - STATE(1407), 4, + STATE(1475), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2825), 10, + ACTIONS(2698), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72349,7 +72497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3123), 27, + ACTIONS(3120), 26, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72368,7 +72516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_CARET, anon_sym__, @@ -72377,35 +72524,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1269] = 11, - ACTIONS(3079), 1, + [1419] = 11, + ACTIONS(3146), 1, anon_sym_QMARK_GT, - ACTIONS(3081), 1, + ACTIONS(3148), 1, sym__whitespace_ge_2, - ACTIONS(3084), 1, + ACTIONS(3151), 1, aux_sym__whitespace_token1, - ACTIONS(3090), 1, + ACTIONS(3157), 1, aux_sym__newline_token1, - ACTIONS(3147), 1, + ACTIONS(3160), 1, sym__open_block, - ACTIONS(3087), 2, + ACTIONS(3154), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3076), 4, + ACTIONS(3143), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1270), 4, + STATE(1376), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2045), 9, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72415,7 +72562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3073), 28, + ACTIONS(3140), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72444,36 +72591,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1347] = 11, - ACTIONS(3155), 1, - anon_sym_QMARK_GT, - ACTIONS(3157), 1, + [1497] = 10, + ACTIONS(3168), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3170), 1, sym__whitespace_ge_2, - ACTIONS(3160), 1, + ACTIONS(3173), 1, aux_sym__whitespace_token1, - ACTIONS(3166), 1, + ACTIONS(3179), 1, aux_sym__newline_token1, - ACTIONS(3057), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3163), 2, + ACTIONS(3176), 2, sym__word_no_digit, sym__digits, - ACTIONS(2921), 3, + ACTIONS(2898), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3152), 4, + ACTIONS(3165), 4, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1409), 4, + anon_sym_RBRACK, + STATE(1401), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2825), 10, + ACTIONS(1122), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72484,7 +72628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3149), 26, + ACTIONS(3162), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72503,7 +72647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72511,45 +72657,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1425] = 11, - ACTIONS(3175), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3177), 1, + [1573] = 13, + ACTIONS(3106), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3187), 1, + anon_sym_DASH, + ACTIONS(3190), 1, + anon_sym_GT, + ACTIONS(3193), 1, sym__whitespace_ge_2, - ACTIONS(3180), 1, + ACTIONS(3196), 1, aux_sym__whitespace_token1, - ACTIONS(3186), 1, + ACTIONS(3202), 1, aux_sym__newline_token1, - ACTIONS(3189), 1, - sym__open_block, - ACTIONS(3183), 2, + STATE(1462), 1, + aux_sym__html_comment_repeat1, + ACTIONS(3199), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2898), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3172), 4, + ACTIONS(3184), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + STATE(1461), 3, + sym__whitespace, + sym__word, + sym__newline, + ACTIONS(1122), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + ACTIONS(3181), 27, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(1276), 4, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [1655] = 10, + ACTIONS(3126), 1, + anon_sym_QMARK_GT, + ACTIONS(3211), 1, + sym__whitespace_ge_2, + ACTIONS(3214), 1, + aux_sym__whitespace_token1, + ACTIONS(3220), 1, + aux_sym__newline_token1, + ACTIONS(3217), 2, + sym__word_no_digit, + sym__digits, + ACTIONS(2898), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(3208), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(1475), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2045), 9, + ACTIONS(1122), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3169), 28, + ACTIONS(3205), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72568,9 +72782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72578,47 +72792,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1503] = 12, - ACTIONS(3129), 1, + [1731] = 12, + ACTIONS(3052), 1, anon_sym_LBRACK, - ACTIONS(3131), 1, + ACTIONS(3054), 1, anon_sym_RBRACK, - ACTIONS(3197), 1, + ACTIONS(3168), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3199), 1, + ACTIONS(3228), 1, sym__whitespace_ge_2, - ACTIONS(3202), 1, + ACTIONS(3231), 1, aux_sym__whitespace_token1, - ACTIONS(3208), 1, + ACTIONS(3237), 1, aux_sym__newline_token1, - ACTIONS(3205), 2, + ACTIONS(3234), 2, sym__word_no_digit, sym__digits, - ACTIONS(2940), 3, + ACTIONS(2938), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3194), 3, + ACTIONS(3225), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1442), 4, + STATE(1401), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2641), 10, + ACTIONS(2698), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3191), 27, + ACTIONS(3222), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72646,37 +72860,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1583] = 13, - ACTIONS(3217), 1, + [1811] = 13, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(3106), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3187), 1, anon_sym_DASH, - ACTIONS(3220), 1, + ACTIONS(3190), 1, anon_sym_GT, - ACTIONS(3223), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3225), 1, + ACTIONS(3193), 1, sym__whitespace_ge_2, - ACTIONS(3228), 1, + ACTIONS(3196), 1, aux_sym__whitespace_token1, - ACTIONS(3234), 1, - aux_sym__newline_token1, - STATE(1410), 1, + STATE(1462), 1, aux_sym__html_comment_repeat1, - ACTIONS(3231), 2, + ACTIONS(3199), 2, sym__word_no_digit, sym__digits, - ACTIONS(2959), 3, + ACTIONS(2898), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3214), 3, + ACTIONS(3184), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1411), 3, + STATE(1461), 3, sym__whitespace, sym__word, sym__newline, - ACTIONS(938), 10, + ACTIONS(1122), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72687,7 +72901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3211), 27, + ACTIONS(3181), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72715,44 +72929,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1665] = 10, - ACTIONS(3155), 1, - anon_sym_QMARK_GT, - ACTIONS(3243), 1, + [1893] = 10, + ACTIONS(3010), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3012), 1, sym__whitespace_ge_2, - ACTIONS(3246), 1, + ACTIONS(3015), 1, aux_sym__whitespace_token1, - ACTIONS(3252), 1, + ACTIONS(3179), 1, aux_sym__newline_token1, - ACTIONS(3249), 2, + ACTIONS(3018), 2, sym__word_no_digit, sym__digits, - ACTIONS(2959), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3240), 4, + ACTIONS(3007), 4, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1409), 4, + anon_sym_RBRACK, + STATE(1338), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(938), 10, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3237), 28, + ACTIONS(3004), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72771,9 +72985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72781,114 +72995,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1741] = 14, - ACTIONS(3037), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3261), 1, - anon_sym_DASH, - ACTIONS(3264), 1, - anon_sym_GT, - ACTIONS(3269), 1, - sym__whitespace_ge_2, - ACTIONS(3272), 1, - aux_sym__whitespace_token1, - ACTIONS(3278), 1, + [1969] = 10, + ACTIONS(3078), 1, + anon_sym_QMARK_GT, + ACTIONS(3220), 1, aux_sym__newline_token1, - STATE(1445), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3267), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3275), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2940), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3258), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - STATE(1446), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(2641), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - ACTIONS(3255), 25, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [1825] = 10, - ACTIONS(3133), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3287), 1, + ACTIONS(3246), 1, sym__whitespace_ge_2, - ACTIONS(3290), 1, + ACTIONS(3249), 1, aux_sym__whitespace_token1, - ACTIONS(3296), 1, - aux_sym__newline_token1, - ACTIONS(3293), 2, + ACTIONS(3252), 2, sym__word_no_digit, sym__digits, - ACTIONS(2959), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3284), 4, + ACTIONS(3243), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1407), 4, + STATE(1351), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(938), 10, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3281), 28, + ACTIONS(3240), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72907,9 +73051,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72917,33 +73061,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1901] = 10, - ACTIONS(3197), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3304), 1, + [2045] = 10, + ACTIONS(3078), 1, + anon_sym_QMARK_GT, + ACTIONS(3246), 1, sym__whitespace_ge_2, - ACTIONS(3307), 1, + ACTIONS(3249), 1, aux_sym__whitespace_token1, - ACTIONS(3313), 1, + ACTIONS(3255), 1, aux_sym__newline_token1, - ACTIONS(3310), 2, + ACTIONS(3252), 2, sym__word_no_digit, sym__digits, - ACTIONS(2976), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3301), 4, + ACTIONS(3243), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1442), 4, + STATE(1351), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(1352), 10, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -72954,7 +73098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3298), 28, + ACTIONS(3240), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -72973,9 +73117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -72983,44 +73127,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [1977] = 10, - ACTIONS(3155), 1, - anon_sym_QMARK_GT, - ACTIONS(3243), 1, + [2121] = 13, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(3264), 1, + anon_sym_DASH, + ACTIONS(3267), 1, + anon_sym_GT, + ACTIONS(3270), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3272), 1, sym__whitespace_ge_2, - ACTIONS(3246), 1, + ACTIONS(3275), 1, aux_sym__whitespace_token1, - ACTIONS(3316), 1, - aux_sym__newline_token1, - ACTIONS(3249), 2, + STATE(1356), 1, + aux_sym__html_comment_repeat1, + ACTIONS(3278), 2, sym__word_no_digit, sym__digits, - ACTIONS(2959), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3240), 4, + ACTIONS(3261), 3, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1409), 4, + STATE(1368), 3, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(938), 10, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3237), 28, + ACTIONS(3258), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73032,13 +73180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -73049,51 +73196,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2053] = 14, - ACTIONS(3223), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3324), 1, + [2203] = 13, + ACTIONS(3264), 1, anon_sym_DASH, - ACTIONS(3327), 1, + ACTIONS(3267), 1, anon_sym_GT, - ACTIONS(3332), 1, + ACTIONS(3270), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3272), 1, sym__whitespace_ge_2, - ACTIONS(3335), 1, + ACTIONS(3275), 1, aux_sym__whitespace_token1, - ACTIONS(3341), 1, + ACTIONS(3281), 1, aux_sym__newline_token1, - STATE(1410), 1, + STATE(1356), 1, aux_sym__html_comment_repeat1, - ACTIONS(3330), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3338), 2, + ACTIONS(3278), 2, sym__word_no_digit, sym__digits, - ACTIONS(2921), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3321), 3, + ACTIONS(3261), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1411), 3, + STATE(1368), 3, sym__whitespace, sym__word, sym__newline, - ACTIONS(2825), 10, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3318), 25, + ACTIONS(3258), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73112,6 +73256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -73119,37 +73265,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2137] = 13, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(3217), 1, - anon_sym_DASH, - ACTIONS(3220), 1, - anon_sym_GT, - ACTIONS(3223), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3225), 1, + [2285] = 10, + ACTIONS(3168), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3170), 1, sym__whitespace_ge_2, - ACTIONS(3228), 1, + ACTIONS(3173), 1, aux_sym__whitespace_token1, - STATE(1410), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3231), 2, + ACTIONS(3284), 1, + aux_sym__newline_token1, + ACTIONS(3176), 2, sym__word_no_digit, sym__digits, - ACTIONS(2959), 3, + ACTIONS(2898), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3214), 3, + ACTIONS(3165), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1411), 3, + anon_sym_RBRACK, + STATE(1401), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(938), 10, + aux_sym__html_comment_repeat1, + ACTIONS(1122), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73160,7 +73302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3211), 27, + ACTIONS(3162), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73172,15 +73314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -73188,44 +73331,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2219] = 10, - ACTIONS(3133), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3287), 1, + [2361] = 11, + ACTIONS(3146), 1, + anon_sym_QMARK_GT, + ACTIONS(3148), 1, sym__whitespace_ge_2, - ACTIONS(3290), 1, + ACTIONS(3151), 1, aux_sym__whitespace_token1, - ACTIONS(3344), 1, + ACTIONS(3157), 1, aux_sym__newline_token1, - ACTIONS(3293), 2, + ACTIONS(3287), 1, + sym__open_block, + ACTIONS(3154), 2, sym__word_no_digit, sym__digits, - ACTIONS(2959), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3284), 4, + ACTIONS(3143), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1407), 4, + STATE(1376), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(938), 10, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3281), 28, + ACTIONS(3140), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73244,9 +73388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -73254,39 +73398,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2295] = 14, - ACTIONS(3101), 1, + [2439] = 14, + ACTIONS(3295), 1, anon_sym_DASH, - ACTIONS(3104), 1, + ACTIONS(3298), 1, anon_sym_GT, - ACTIONS(3107), 1, + ACTIONS(3301), 1, anon_sym_DASH_DASH_GT, - ACTIONS(3109), 1, + ACTIONS(3303), 1, sym__whitespace_ge_2, - ACTIONS(3112), 1, + ACTIONS(3306), 1, aux_sym__whitespace_token1, - ACTIONS(3118), 1, + ACTIONS(3312), 1, aux_sym__newline_token1, - ACTIONS(3347), 1, + ACTIONS(3315), 1, sym__open_block, - STATE(1269), 1, + STATE(1357), 1, aux_sym__html_comment_repeat1, - ACTIONS(3115), 2, + ACTIONS(3309), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3098), 3, + ACTIONS(3292), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1268), 3, + STATE(1349), 3, sym__whitespace, sym__word, sym__newline, - ACTIONS(2045), 9, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73296,7 +73440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3095), 27, + ACTIONS(3289), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73324,33 +73468,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2379] = 10, - ACTIONS(3059), 1, - anon_sym_QMARK_GT, - ACTIONS(3355), 1, + [2523] = 14, + ACTIONS(3270), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3323), 1, + anon_sym_DASH, + ACTIONS(3326), 1, + anon_sym_GT, + ACTIONS(3331), 1, sym__whitespace_ge_2, - ACTIONS(3358), 1, + ACTIONS(3334), 1, aux_sym__whitespace_token1, - ACTIONS(3364), 1, + ACTIONS(3340), 1, aux_sym__newline_token1, - ACTIONS(3361), 2, + STATE(1356), 1, + aux_sym__html_comment_repeat1, + ACTIONS(3329), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3337), 2, sym__word_no_digit, sym__digits, - ACTIONS(2976), 3, + ACTIONS(2955), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3352), 4, + ACTIONS(3320), 3, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1444), 4, + STATE(1368), 3, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1352), 10, + ACTIONS(2800), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73361,7 +73512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3349), 28, + ACTIONS(3317), 25, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73373,16 +73524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -73390,44 +73538,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2455] = 10, - ACTIONS(3197), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3296), 1, - aux_sym__newline_token1, - ACTIONS(3304), 1, + [2607] = 10, + ACTIONS(3126), 1, + anon_sym_QMARK_GT, + ACTIONS(3211), 1, sym__whitespace_ge_2, - ACTIONS(3307), 1, + ACTIONS(3214), 1, aux_sym__whitespace_token1, - ACTIONS(3310), 2, + ACTIONS(3343), 1, + aux_sym__newline_token1, + ACTIONS(3217), 2, sym__word_no_digit, sym__digits, - ACTIONS(2976), 3, + ACTIONS(2898), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3301), 4, + ACTIONS(3208), 4, anon_sym_AMP, anon_sym_LT, + anon_sym_QMARK, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1442), 4, + STATE(1475), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(1352), 10, + ACTIONS(1122), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3298), 28, + ACTIONS(3205), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73446,9 +73594,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -73456,35 +73604,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2531] = 11, - ACTIONS(3175), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3177), 1, + [2683] = 14, + ACTIONS(3295), 1, + anon_sym_DASH, + ACTIONS(3298), 1, + anon_sym_GT, + ACTIONS(3301), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3303), 1, sym__whitespace_ge_2, - ACTIONS(3180), 1, + ACTIONS(3306), 1, aux_sym__whitespace_token1, - ACTIONS(3186), 1, + ACTIONS(3312), 1, aux_sym__newline_token1, - ACTIONS(3367), 1, + ACTIONS(3346), 1, sym__open_block, - ACTIONS(3183), 2, + STATE(1357), 1, + aux_sym__html_comment_repeat1, + ACTIONS(3309), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3172), 4, + ACTIONS(3292), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1276), 4, + STATE(1349), 3, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2045), 9, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73494,7 +73646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3169), 28, + ACTIONS(3289), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73506,16 +73658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -73523,44 +73674,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2609] = 10, - ACTIONS(3059), 1, - anon_sym_QMARK_GT, - ACTIONS(3316), 1, - aux_sym__newline_token1, - ACTIONS(3355), 1, - sym__whitespace_ge_2, - ACTIONS(3358), 1, - aux_sym__whitespace_token1, - ACTIONS(3361), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(2976), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3352), 4, + [2767] = 5, + ACTIONS(3348), 1, + sym__line_ending, + STATE(574), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3350), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(463), 7, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1444), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(1352), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(461), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, sym__emphasis_close_star, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - ACTIONS(3349), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73579,6 +73713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, @@ -73589,48 +73724,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2685] = 13, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(3031), 1, - anon_sym_DASH, - ACTIONS(3034), 1, - anon_sym_GT, - ACTIONS(3037), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3039), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(3042), 1, - aux_sym__whitespace_token1, - STATE(1445), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3045), 2, sym__word_no_digit, sym__digits, - ACTIONS(2976), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3028), 3, + aux_sym__newline_token1, + [2832] = 5, + ACTIONS(3352), 1, + sym__line_ending, + STATE(527), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3354), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(463), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1446), 3, - sym__whitespace, - sym__word, - sym__newline, - ACTIONS(1352), 10, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(461), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - ACTIONS(3025), 27, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73642,11 +73766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -73658,33 +73784,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2767] = 10, - ACTIONS(3175), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [2897] = 10, + ACTIONS(3030), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3177), 1, + ACTIONS(3032), 1, sym__whitespace_ge_2, - ACTIONS(3180), 1, + ACTIONS(3035), 1, aux_sym__whitespace_token1, - ACTIONS(3186), 1, + ACTIONS(3041), 1, aux_sym__newline_token1, - ACTIONS(3183), 2, + ACTIONS(3038), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3172), 4, + ACTIONS(3027), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_RBRACK, - STATE(1276), 4, + STATE(1410), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2045), 9, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73694,7 +73830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3169), 28, + ACTIONS(3024), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73723,95 +73859,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2842] = 5, - ACTIONS(3369), 1, - sym__line_ending, - STATE(544), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3371), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(386), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(384), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [2907] = 11, - ACTIONS(3057), 1, - anon_sym_LBRACK, - ACTIONS(3079), 1, + [2972] = 10, + ACTIONS(3146), 1, anon_sym_QMARK_GT, - ACTIONS(3379), 1, + ACTIONS(3148), 1, sym__whitespace_ge_2, - ACTIONS(3382), 1, + ACTIONS(3151), 1, aux_sym__whitespace_token1, - ACTIONS(3388), 1, + ACTIONS(3157), 1, aux_sym__newline_token1, - ACTIONS(3385), 2, + ACTIONS(3154), 2, sym__word_no_digit, sym__digits, - ACTIONS(2997), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3376), 4, + ACTIONS(3143), 4, anon_sym_AMP, anon_sym_LT, anon_sym_QMARK, anon_sym_BSLASH, - STATE(1270), 4, + STATE(1376), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(2509), 9, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73821,7 +73895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3373), 27, + ACTIONS(3140), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73841,6 +73915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -73849,33 +73924,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [2984] = 10, - ACTIONS(3079), 1, - anon_sym_QMARK_GT, - ACTIONS(3081), 1, + [3047] = 13, + ACTIONS(3295), 1, + anon_sym_DASH, + ACTIONS(3298), 1, + anon_sym_GT, + ACTIONS(3301), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3303), 1, sym__whitespace_ge_2, - ACTIONS(3084), 1, + ACTIONS(3306), 1, aux_sym__whitespace_token1, - ACTIONS(3090), 1, + ACTIONS(3312), 1, aux_sym__newline_token1, - ACTIONS(3087), 2, + STATE(1357), 1, + aux_sym__html_comment_repeat1, + ACTIONS(3309), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3076), 4, + ACTIONS(3292), 3, anon_sym_AMP, anon_sym_LT, - anon_sym_QMARK, anon_sym_BSLASH, - STATE(1270), 4, + STATE(1349), 3, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2045), 9, + ACTIONS(2068), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -73885,7 +73964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3073), 28, + ACTIONS(3289), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -73897,62 +73976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [3059] = 5, - ACTIONS(3391), 1, - sym__line_ending, - STATE(537), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3393), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(386), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(384), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -73964,59 +73992,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [3124] = 14, - ACTIONS(3107), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3401), 1, - anon_sym_DASH, - ACTIONS(3404), 1, - anon_sym_GT, - ACTIONS(3407), 1, - anon_sym_LBRACK, - ACTIONS(3409), 1, + [3128] = 9, + ACTIONS(2900), 1, sym__whitespace_ge_2, - ACTIONS(3412), 1, + ACTIONS(2903), 1, aux_sym__whitespace_token1, - ACTIONS(3418), 1, - aux_sym__newline_token1, - STATE(1269), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3415), 2, + ACTIONS(3359), 1, + sym__code_span_close, + ACTIONS(3356), 2, sym__word_no_digit, sym__digits, - ACTIONS(2997), 3, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(3398), 3, + ACTIONS(2895), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1268), 3, + ACTIONS(2898), 3, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + STATE(1531), 4, + sym__text, sym__whitespace, sym__word, - sym__newline, - ACTIONS(2509), 9, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(1122), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3395), 26, + ACTIONS(2892), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74028,13 +74038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -74043,30 +74056,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3207] = 9, - ACTIONS(2978), 1, + [3201] = 9, + ACTIONS(2919), 1, sym__whitespace_ge_2, - ACTIONS(2981), 1, + ACTIONS(2922), 1, aux_sym__whitespace_token1, - ACTIONS(3424), 1, + ACTIONS(3364), 1, sym__code_span_close, - ACTIONS(3421), 2, + ACTIONS(3361), 2, sym__word_no_digit, sym__digits, - ACTIONS(2973), 3, + ACTIONS(2914), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - ACTIONS(2976), 3, + ACTIONS(2917), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1482), 4, + STATE(1549), 4, sym__text, sym__whitespace, sym__word, aux_sym__code_span_no_newline_repeat1, - ACTIONS(1352), 10, + ACTIONS(1288), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74077,7 +74090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(2970), 29, + ACTIONS(2911), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74107,35 +74120,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3280] = 11, - ACTIONS(3129), 1, + [3274] = 14, + ACTIONS(3301), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(3372), 1, + anon_sym_DASH, + ACTIONS(3375), 1, + anon_sym_GT, + ACTIONS(3378), 1, anon_sym_LBRACK, - ACTIONS(3175), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(3432), 1, + ACTIONS(3380), 1, sym__whitespace_ge_2, - ACTIONS(3435), 1, + ACTIONS(3383), 1, aux_sym__whitespace_token1, - ACTIONS(3441), 1, + ACTIONS(3389), 1, aux_sym__newline_token1, - ACTIONS(3438), 2, + STATE(1357), 1, + aux_sym__html_comment_repeat1, + ACTIONS(3386), 2, sym__word_no_digit, sym__digits, - ACTIONS(2997), 3, + ACTIONS(2989), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3429), 4, + ACTIONS(3369), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - anon_sym_RBRACK, - STATE(1276), 4, + STATE(1349), 3, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(2509), 9, + ACTIONS(2432), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74145,7 +74162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3426), 27, + ACTIONS(3366), 26, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74157,15 +74174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -74173,37 +74189,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3357] = 13, - ACTIONS(3101), 1, - anon_sym_DASH, - ACTIONS(3104), 1, - anon_sym_GT, - ACTIONS(3107), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(3109), 1, + [3357] = 11, + ACTIONS(3030), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(3052), 1, + anon_sym_LBRACK, + ACTIONS(3398), 1, sym__whitespace_ge_2, - ACTIONS(3112), 1, + ACTIONS(3401), 1, aux_sym__whitespace_token1, - ACTIONS(3118), 1, + ACTIONS(3407), 1, aux_sym__newline_token1, - STATE(1269), 1, - aux_sym__html_comment_repeat1, - ACTIONS(3115), 2, + ACTIONS(3404), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2989), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3098), 3, + ACTIONS(3395), 4, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1268), 3, + anon_sym_RBRACK, + STATE(1410), 4, sym__whitespace, sym__word, sym__newline, - ACTIONS(2045), 9, + aux_sym__html_comment_repeat1, + ACTIONS(2432), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74213,7 +74227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(3095), 27, + ACTIONS(3392), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74225,15 +74239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -74241,30 +74255,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3438] = 9, - ACTIONS(3016), 1, + [3434] = 9, + ACTIONS(2972), 1, sym__whitespace_ge_2, - ACTIONS(3019), 1, + ACTIONS(2975), 1, aux_sym__whitespace_token1, - ACTIONS(3447), 1, + ACTIONS(3413), 1, sym__code_span_close, - ACTIONS(3444), 2, + ACTIONS(3410), 2, sym__word_no_digit, sym__digits, - ACTIONS(2883), 3, + ACTIONS(2862), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(3013), 3, + ACTIONS(2969), 3, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(1485), 4, + STATE(1491), 4, sym__text, sym__whitespace, sym__word, aux_sym__code_span_no_newline_repeat1, - ACTIONS(2045), 10, + ACTIONS(2068), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74275,7 +74289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_entity_reference, sym_numeric_character_reference, aux_sym__newline_token1, - ACTIONS(3010), 29, + ACTIONS(2966), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74305,41 +74319,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [3511] = 9, - ACTIONS(2961), 1, + [3507] = 11, + ACTIONS(3076), 1, + anon_sym_LBRACK, + ACTIONS(3146), 1, + anon_sym_QMARK_GT, + ACTIONS(3421), 1, sym__whitespace_ge_2, - ACTIONS(2964), 1, + ACTIONS(3424), 1, aux_sym__whitespace_token1, - ACTIONS(3452), 1, - sym__code_span_close, - ACTIONS(3449), 2, + ACTIONS(3430), 1, + aux_sym__newline_token1, + ACTIONS(3427), 2, sym__word_no_digit, sym__digits, - ACTIONS(2956), 3, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - ACTIONS(2959), 3, + ACTIONS(2989), 3, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - STATE(1515), 4, - sym__text, + ACTIONS(3418), 4, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_BSLASH, + STATE(1376), 4, sym__whitespace, sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(938), 10, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(2432), 9, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - ACTIONS(2953), 29, + ACTIONS(3415), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74358,9 +74376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -74370,12 +74386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_TILDE, [3584] = 4, - STATE(546), 1, + STATE(567), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3433), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(619), 7, + ACTIONS(909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74383,7 +74399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(617), 43, + ACTIONS(907), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74427,73 +74443,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3646] = 6, - ACTIONS(2908), 1, - aux_sym__newline_token1, - ACTIONS(3456), 1, - sym__last_token_whitespace, - STATE(741), 1, - sym__soft_line_break, - STATE(2105), 1, - sym__newline, - ACTIONS(2906), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(2904), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [3712] = 4, - STATE(529), 1, + [3646] = 4, + STATE(545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3458), 2, + ACTIONS(3435), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(758), 7, + ACTIONS(1025), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74501,11 +74457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(756), 43, + ACTIONS(1023), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74545,13 +74501,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3774] = 4, - STATE(551), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, - sym__block_continuation, + [3708] = 6, + ACTIONS(2887), 1, + aux_sym__newline_token1, + ACTIONS(3437), 1, sym__last_token_whitespace, - ACTIONS(758), 7, + STATE(737), 1, + sym__soft_line_break, + STATE(2100), 1, + sym__newline, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74559,7 +74518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(756), 43, + ACTIONS(2883), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74602,14 +74561,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [3774] = 6, + ACTIONS(41), 1, aux_sym__newline_token1, - [3836] = 4, - STATE(523), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3462), 2, - sym__block_continuation, + ACTIONS(3439), 1, sym__last_token_whitespace, - ACTIONS(768), 7, + STATE(718), 1, + sym__soft_line_break, + STATE(2102), 1, + sym__newline, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74617,11 +74578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(766), 43, + ACTIONS(2883), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74660,14 +74621,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [3898] = 4, - STATE(551), 1, + [3840] = 4, + STATE(513), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3441), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(768), 7, + ACTIONS(1209), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74675,11 +74635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(766), 43, + ACTIONS(1207), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74719,13 +74679,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [3960] = 4, - STATE(519), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3464), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(774), 7, + [3902] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(2353), 1, + sym__last_token_punctuation, + STATE(737), 1, + sym__soft_line_break, + STATE(2116), 1, + sym__newline, + ACTIONS(2898), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74733,7 +74696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(772), 43, + ACTIONS(1122), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74776,14 +74739,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [3968] = 6, + ACTIONS(41), 1, aux_sym__newline_token1, - [4022] = 4, - STATE(551), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(774), 7, + ACTIONS(2303), 1, + sym__last_token_punctuation, + STATE(718), 1, + sym__soft_line_break, + STATE(2102), 1, + sym__newline, + ACTIONS(2917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74791,11 +74756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(772), 43, + ACTIONS(1288), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74834,14 +74799,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [4034] = 6, + ACTIONS(1276), 1, aux_sym__newline_token1, - [4084] = 4, - STATE(563), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3466), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1032), 7, + ACTIONS(2303), 1, + sym__last_token_punctuation, + STATE(718), 1, + sym__soft_line_break, + STATE(2106), 1, + sym__newline, + ACTIONS(2917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74849,7 +74816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1030), 43, + ACTIONS(1288), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -74892,14 +74859,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [4146] = 4, - STATE(518), 1, + [4100] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3468), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(782), 7, + ACTIONS(1067), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74907,11 +74873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(780), 43, + ACTIONS(1065), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -74951,13 +74917,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4208] = 4, - STATE(557), 1, + [4162] = 4, + STATE(531), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3470), 2, + ACTIONS(3445), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1084), 7, + ACTIONS(1055), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -74965,7 +74931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1082), 43, + ACTIONS(1053), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75009,13 +74975,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4270] = 4, - STATE(551), 1, + [4224] = 4, + STATE(532), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3447), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1108), 7, + ACTIONS(1049), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75023,11 +74989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1106), 43, + ACTIONS(1047), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75067,13 +75033,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4332] = 4, - STATE(546), 1, + [4286] = 4, + STATE(534), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3449), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1084), 7, + ACTIONS(1043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75081,7 +75047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1082), 43, + ACTIONS(1041), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75125,13 +75091,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4394] = 4, - STATE(551), 1, + [4348] = 4, + STATE(539), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3451), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(706), 7, + ACTIONS(1037), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75139,11 +75105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(704), 43, + ACTIONS(1035), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75183,13 +75149,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4456] = 4, - STATE(551), 1, + [4410] = 4, + STATE(542), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3453), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(710), 7, + ACTIONS(1031), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75197,11 +75163,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(708), 43, + ACTIONS(1029), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75241,13 +75207,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4518] = 4, - STATE(551), 1, + [4472] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3455), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(782), 7, + ACTIONS(475), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75255,7 +75221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(780), 43, + ACTIONS(473), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75299,13 +75265,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4580] = 4, - STATE(549), 1, + [4534] = 4, + STATE(528), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3472), 2, + ACTIONS(3458), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(619), 7, + ACTIONS(1067), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75313,11 +75279,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(617), 43, + ACTIONS(1065), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75357,13 +75323,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4642] = 4, - STATE(551), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, - sym__block_continuation, + [4596] = 6, + ACTIONS(2887), 1, + aux_sym__newline_token1, + ACTIONS(3439), 1, sym__last_token_whitespace, - ACTIONS(619), 7, + STATE(718), 1, + sym__soft_line_break, + STATE(2106), 1, + sym__newline, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75371,11 +75340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(617), 43, + ACTIONS(2883), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75414,14 +75383,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [4704] = 4, - STATE(551), 1, + [4662] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(726), 7, + ACTIONS(494), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75429,7 +75397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(724), 43, + ACTIONS(492), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75473,13 +75441,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4766] = 4, - STATE(543), 1, + [4724] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3474), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(790), 7, + ACTIONS(1126), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75487,7 +75455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(788), 43, + ACTIONS(1124), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75531,13 +75499,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4828] = 4, - STATE(551), 1, + [4786] = 4, + STATE(523), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3462), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(790), 7, + ACTIONS(952), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75545,7 +75513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(788), 43, + ACTIONS(950), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75589,13 +75557,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4890] = 4, - STATE(517), 1, + [4848] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3476), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1423), 7, + ACTIONS(952), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75603,11 +75571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1421), 43, + ACTIONS(950), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75647,13 +75615,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [4952] = 4, - STATE(595), 1, + [4910] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3478), 2, + ACTIONS(3464), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(822), 7, + ACTIONS(475), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75661,11 +75629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(820), 43, + ACTIONS(473), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75705,13 +75673,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5014] = 4, - STATE(551), 1, + [4972] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(822), 7, + ACTIONS(484), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75719,7 +75687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(820), 43, + ACTIONS(482), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -75763,13 +75731,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5076] = 4, - STATE(551), 1, + [5034] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(730), 7, + ACTIONS(923), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75777,11 +75745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(728), 43, + ACTIONS(921), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75821,16 +75789,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5138] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(3480), 1, + [5096] = 4, + STATE(525), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3467), 2, + sym__block_continuation, sym__last_token_whitespace, - STATE(719), 1, - sym__soft_line_break, - STATE(2100), 1, - sym__newline, - ACTIONS(2906), 7, + ACTIONS(624), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75838,11 +75803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 42, + ACTIONS(622), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75881,13 +75846,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [5204] = 4, - STATE(508), 1, + aux_sym__newline_token1, + [5158] = 4, + STATE(547), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3482), 2, + ACTIONS(3469), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(998), 7, + ACTIONS(923), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75895,11 +75861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(996), 43, + ACTIONS(921), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75939,15 +75905,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5266] = 5, - ACTIONS(3484), 1, - sym__line_ending, - STATE(638), 1, + [5220] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3486), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(386), 7, + ACTIONS(909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -75955,10 +75919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(384), 42, + ACTIONS(907), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -75998,13 +75963,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5330] = 4, - STATE(510), 1, + [5282] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3488), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1006), 7, + ACTIONS(869), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76012,11 +75977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1004), 43, + ACTIONS(867), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76056,13 +76021,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5392] = 4, - STATE(555), 1, + [5344] = 4, + STATE(570), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3490), 2, + ACTIONS(3471), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(730), 7, + ACTIONS(869), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76070,11 +76035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(728), 43, + ACTIONS(867), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76114,13 +76079,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5454] = 4, - STATE(577), 1, + [5406] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3492), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1014), 7, + ACTIONS(863), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76128,7 +76093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1012), 43, + ACTIONS(861), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76172,13 +76137,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5516] = 4, - STATE(540), 1, + [5468] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3494), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 7, + ACTIONS(624), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76186,11 +76151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(512), 43, + ACTIONS(622), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76230,13 +76195,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5578] = 4, - STATE(546), 1, + [5530] = 5, + ACTIONS(3473), 1, + sym__line_ending, + STATE(598), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3475), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 7, + ACTIONS(463), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76244,11 +76211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(512), 43, + ACTIONS(461), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76288,13 +76254,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5640] = 4, - STATE(512), 1, + [5594] = 4, + STATE(571), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3496), 2, + ACTIONS(3477), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(625), 7, + ACTIONS(863), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76302,11 +76268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(623), 43, + ACTIONS(861), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76346,13 +76312,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5702] = 4, - STATE(520), 1, + [5656] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3498), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1014), 7, + ACTIONS(697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76360,7 +76326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1012), 43, + ACTIONS(695), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76404,13 +76370,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5764] = 4, - STATE(546), 1, + [5718] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(529), 7, + ACTIONS(857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76418,7 +76384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(527), 43, + ACTIONS(855), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76462,13 +76428,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5826] = 4, - STATE(547), 1, + [5780] = 4, + STATE(535), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3500), 2, + ACTIONS(3479), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 7, + ACTIONS(697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76476,7 +76442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(512), 43, + ACTIONS(695), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76520,13 +76486,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5888] = 4, - STATE(587), 1, + [5842] = 4, + STATE(575), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3502), 2, + ACTIONS(3481), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(625), 7, + ACTIONS(857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76534,7 +76500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(623), 43, + ACTIONS(855), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76578,13 +76544,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [5950] = 4, - STATE(551), 1, + [5904] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(665), 7, + ACTIONS(851), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76592,11 +76558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(663), 43, + ACTIONS(849), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76636,13 +76602,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6012] = 4, - STATE(551), 1, + [5966] = 4, + STATE(522), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3483), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 7, + ACTIONS(484), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76650,7 +76616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(512), 43, + ACTIONS(482), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76694,16 +76660,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6074] = 6, - ACTIONS(926), 1, - aux_sym__newline_token1, - ACTIONS(2430), 1, - sym__last_token_punctuation, - STATE(741), 1, - sym__soft_line_break, - STATE(2105), 1, - sym__newline, - ACTIONS(2959), 7, + [6028] = 4, + STATE(582), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3485), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(851), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76711,11 +76674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(938), 42, + ACTIONS(849), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76754,13 +76717,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [6140] = 4, - STATE(546), 1, + aux_sym__newline_token1, + [6090] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3504), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(522), 7, + ACTIONS(845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76768,7 +76732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(520), 43, + ACTIONS(843), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76812,13 +76776,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6202] = 4, - STATE(551), 1, + [6152] = 4, + STATE(583), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3487), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(529), 7, + ACTIONS(845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76826,11 +76790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(527), 43, + ACTIONS(843), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -76870,13 +76834,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6264] = 4, - STATE(589), 1, + [6214] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3507), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1006), 7, + ACTIONS(778), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76884,7 +76848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1004), 43, + ACTIONS(776), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76928,13 +76892,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6326] = 4, - STATE(551), 1, + [6276] = 4, + STATE(538), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3489), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(673), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -76942,7 +76906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(671), 43, + ACTIONS(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -76986,13 +76950,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6388] = 4, - STATE(522), 1, + [6338] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3509), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1020), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77000,7 +76964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1018), 43, + ACTIONS(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77044,13 +77008,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6450] = 4, - STATE(551), 1, + [6400] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3511), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(522), 7, + ACTIONS(758), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77058,7 +77022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(520), 43, + ACTIONS(756), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77102,13 +77066,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6512] = 4, - STATE(525), 1, + [6462] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3514), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1032), 7, + ACTIONS(762), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77116,7 +77080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1030), 43, + ACTIONS(760), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77160,13 +77124,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6574] = 4, - STATE(528), 1, + [6524] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3516), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1084), 7, + ACTIONS(766), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77174,7 +77138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1082), 43, + ACTIONS(764), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77218,13 +77182,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6636] = 4, - STATE(596), 1, + [6586] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3518), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(998), 7, + ACTIONS(770), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77232,11 +77196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(996), 43, + ACTIONS(768), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77276,13 +77240,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6698] = 4, - STATE(551), 1, + [6648] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1026), 7, + ACTIONS(774), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77290,7 +77254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1024), 43, + ACTIONS(772), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77334,13 +77298,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6760] = 4, - STATE(516), 1, + [6710] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3520), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 7, + ACTIONS(494), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77348,11 +77312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1141), 43, + ACTIONS(492), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77392,13 +77356,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6822] = 4, - STATE(546), 1, + [6772] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(822), 7, + ACTIONS(778), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77406,11 +77370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(820), 43, + ACTIONS(776), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77450,13 +77414,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6884] = 4, - STATE(551), 1, + [6834] = 4, + STATE(549), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3491), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 7, + ACTIONS(845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77464,7 +77428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1141), 43, + ACTIONS(843), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77508,13 +77472,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [6946] = 4, - STATE(551), 1, + [6896] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1084), 7, + ACTIONS(845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77522,7 +77486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1082), 43, + ACTIONS(843), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77566,13 +77530,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7008] = 4, - STATE(585), 1, + [6958] = 4, + STATE(550), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3522), 2, + ACTIONS(3493), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(822), 7, + ACTIONS(851), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77580,11 +77544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(820), 43, + ACTIONS(849), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77624,13 +77588,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7070] = 4, - STATE(559), 1, + [7020] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3524), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1423), 7, + ACTIONS(851), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77638,7 +77602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1421), 43, + ACTIONS(849), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77682,16 +77646,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7132] = 6, - ACTIONS(1340), 1, - aux_sym__newline_token1, - ACTIONS(2380), 1, - sym__last_token_punctuation, - STATE(719), 1, - sym__soft_line_break, - STATE(2104), 1, - sym__newline, - ACTIONS(2976), 7, + [7082] = 4, + STATE(551), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3495), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77699,11 +77660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1352), 42, + ACTIONS(855), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77742,13 +77703,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7198] = 4, - STATE(546), 1, + aux_sym__newline_token1, + [7144] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(790), 7, + ACTIONS(857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77756,11 +77718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(788), 43, + ACTIONS(855), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77800,13 +77762,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7260] = 4, - STATE(584), 1, + [7206] = 4, + STATE(552), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3526), 2, + ACTIONS(3497), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(790), 7, + ACTIONS(863), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77814,11 +77776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(788), 43, + ACTIONS(861), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77858,16 +77820,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7322] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(3456), 1, + [7268] = 4, + STATE(519), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3460), 2, + sym__block_continuation, sym__last_token_whitespace, - STATE(741), 1, - sym__soft_line_break, - STATE(2121), 1, - sym__newline, - ACTIONS(2906), 7, + ACTIONS(863), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77875,7 +77834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 42, + ACTIONS(861), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -77918,13 +77877,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [7388] = 4, - STATE(546), 1, + aux_sym__newline_token1, + [7330] = 4, + STATE(553), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3499), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1108), 7, + ACTIONS(869), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77932,11 +77892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1106), 43, + ACTIONS(867), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -77976,13 +77936,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7450] = 4, - STATE(566), 1, + [7392] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3528), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 7, + ACTIONS(869), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -77990,11 +77950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1141), 43, + ACTIONS(867), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78034,13 +77994,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7512] = 4, - STATE(546), 1, + [7454] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 7, + ACTIONS(774), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78048,7 +78008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1141), 43, + ACTIONS(772), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78092,13 +78052,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7574] = 4, - STATE(592), 1, + [7516] = 4, + STATE(554), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3530), 2, + ACTIONS(3501), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1026), 7, + ACTIONS(909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78106,7 +78066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1024), 43, + ACTIONS(907), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78150,13 +78110,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7636] = 4, - STATE(505), 1, + [7578] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3532), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1020), 7, + ACTIONS(909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78164,11 +78124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1018), 43, + ACTIONS(907), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78208,13 +78168,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7698] = 4, - STATE(568), 1, + [7640] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3534), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 7, + ACTIONS(770), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78222,7 +78182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1379), 43, + ACTIONS(768), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78266,13 +78226,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7760] = 4, - STATE(546), 1, + [7702] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 7, + ACTIONS(766), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78280,7 +78240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1379), 43, + ACTIONS(764), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78324,13 +78284,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7822] = 4, - STATE(546), 1, + [7764] = 4, + STATE(556), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3503), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1026), 7, + ACTIONS(923), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78338,11 +78298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1024), 43, + ACTIONS(921), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78382,13 +78342,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7884] = 4, - STATE(583), 1, + [7826] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3536), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(619), 7, + ACTIONS(923), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78396,11 +78356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(617), 43, + ACTIONS(921), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78440,13 +78400,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [7946] = 4, - STATE(572), 1, + [7888] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3538), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1026), 7, + ACTIONS(484), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78454,7 +78414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1024), 43, + ACTIONS(482), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78498,13 +78458,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8008] = 4, - STATE(573), 1, + [7950] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3540), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(730), 7, + ACTIONS(762), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78512,7 +78472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(728), 43, + ACTIONS(760), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78556,13 +78516,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8070] = 4, - STATE(546), 1, + [8012] = 4, + STATE(558), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3505), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(782), 7, + ACTIONS(1025), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78570,11 +78530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(780), 43, + ACTIONS(1023), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78614,13 +78574,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8132] = 4, - STATE(546), 1, + [8074] = 4, + STATE(560), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3507), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(730), 7, + ACTIONS(1031), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78628,11 +78588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(728), 43, + ACTIONS(1029), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78672,13 +78632,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8194] = 4, - STATE(546), 1, + [8136] = 4, + STATE(562), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3509), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(726), 7, + ACTIONS(1037), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78686,11 +78646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(724), 43, + ACTIONS(1035), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78730,13 +78690,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8256] = 4, - STATE(582), 1, + [8198] = 4, + STATE(564), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3542), 2, + ACTIONS(3511), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(782), 7, + ACTIONS(1043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78744,11 +78704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(780), 43, + ACTIONS(1041), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78788,13 +78748,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8318] = 4, - STATE(546), 1, + [8260] = 4, + STATE(566), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3513), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(710), 7, + ACTIONS(1049), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78802,11 +78762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(708), 43, + ACTIONS(1047), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78846,13 +78806,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8380] = 4, - STATE(546), 1, + [8322] = 4, + STATE(569), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3515), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(706), 7, + ACTIONS(1055), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78860,11 +78820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(704), 43, + ACTIONS(1053), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -78904,13 +78864,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8442] = 4, - STATE(546), 1, + [8384] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(673), 7, + ACTIONS(758), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78918,7 +78878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(671), 43, + ACTIONS(756), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -78962,13 +78922,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8504] = 4, - STATE(546), 1, + [8446] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(665), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -78976,7 +78936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(663), 43, + ACTIONS(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79020,13 +78980,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8566] = 4, - STATE(546), 1, + [8508] = 4, + STATE(590), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3517), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(669), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79034,7 +78994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(667), 43, + ACTIONS(750), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79078,16 +79038,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8628] = 6, - ACTIONS(2908), 1, - aux_sym__newline_token1, - ACTIONS(3480), 1, + [8570] = 4, + STATE(573), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3519), 2, + sym__block_continuation, sym__last_token_whitespace, - STATE(719), 1, - sym__soft_line_break, - STATE(2104), 1, - sym__newline, - ACTIONS(2906), 7, + ACTIONS(1067), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79095,11 +79052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 42, + ACTIONS(1065), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79138,13 +79095,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [8694] = 4, - STATE(546), 1, + aux_sym__newline_token1, + [8632] = 4, + STATE(519), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3460), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(774), 7, + ACTIONS(1067), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79152,11 +79110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(772), 43, + ACTIONS(1065), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79196,13 +79154,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8756] = 4, - STATE(581), 1, + [8694] = 4, + STATE(555), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3544), 2, + ACTIONS(3521), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(774), 7, + ACTIONS(484), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79210,7 +79168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(772), 43, + ACTIONS(482), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79254,13 +79212,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8818] = 4, - STATE(546), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(768), 7, + [8756] = 6, + ACTIONS(1110), 1, + aux_sym__newline_token1, + ACTIONS(2353), 1, + sym__last_token_punctuation, + STATE(737), 1, + sym__soft_line_break, + STATE(2100), 1, + sym__newline, + ACTIONS(2898), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79268,11 +79229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(766), 43, + ACTIONS(1122), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79311,14 +79272,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [8880] = 4, - STATE(579), 1, + [8822] = 4, + STATE(591), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3546), 2, + ACTIONS(3523), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(768), 7, + ACTIONS(697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79326,7 +79286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(766), 43, + ACTIONS(695), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79370,16 +79330,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [8942] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(2380), 1, - sym__last_token_punctuation, - STATE(719), 1, - sym__soft_line_break, - STATE(2100), 1, - sym__newline, - ACTIONS(2976), 7, + [8884] = 4, + STATE(526), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3443), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79387,7 +79344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1352), 42, + ACTIONS(695), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79430,13 +79387,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9008] = 4, - STATE(551), 1, + aux_sym__newline_token1, + [8946] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 7, + ACTIONS(624), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79444,11 +79402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1379), 43, + ACTIONS(622), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79488,13 +79446,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9070] = 4, - STATE(578), 1, + [9008] = 4, + STATE(593), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3548), 2, + ACTIONS(3525), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(758), 7, + ACTIONS(624), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79502,7 +79460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(756), 43, + ACTIONS(622), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79546,16 +79504,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9132] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(2430), 1, - sym__last_token_punctuation, - STATE(741), 1, - sym__soft_line_break, - STATE(2121), 1, - sym__newline, - ACTIONS(2959), 7, + [9070] = 4, + STATE(526), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3443), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(952), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79563,11 +79518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(938), 42, + ACTIONS(950), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79606,13 +79561,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [9198] = 4, - STATE(551), 1, + aux_sym__newline_token1, + [9132] = 4, + STATE(586), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3460), 2, + ACTIONS(3527), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(669), 7, + ACTIONS(1209), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79620,7 +79576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(667), 43, + ACTIONS(1207), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79664,13 +79620,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9260] = 4, - STATE(546), 1, + [9194] = 4, + STATE(596), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3454), 2, + ACTIONS(3529), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(758), 7, + ACTIONS(952), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79678,7 +79634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(756), 43, + ACTIONS(950), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79722,13 +79678,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9322] = 4, - STATE(558), 1, + [9256] = 4, + STATE(526), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3550), 2, + ACTIONS(3443), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 7, + ACTIONS(1126), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79736,11 +79692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1379), 43, + ACTIONS(1124), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79780,72 +79736,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9384] = 6, - ACTIONS(1752), 1, + [9318] = 6, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(3552), 1, - sym__whitespace_ge_2, - ACTIONS(3555), 1, - aux_sym__whitespace_token1, - STATE(1487), 2, - sym__whitespace, - sym__newline, - ACTIONS(2976), 6, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(1352), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - [9449] = 4, - STATE(635), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, - sym__block_continuation, + ACTIONS(3437), 1, sym__last_token_whitespace, - ACTIONS(1026), 7, + STATE(737), 1, + sym__soft_line_break, + STATE(2116), 1, + sym__newline, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79853,10 +79753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1024), 42, + ACTIONS(2883), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -79895,14 +79796,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [9510] = 4, - STATE(602), 1, + [9384] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3560), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1026), 7, + ACTIONS(484), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -79910,7 +79810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1024), 42, + ACTIONS(482), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -79953,24 +79853,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9571] = 6, - ACTIONS(1752), 1, + [9445] = 6, + ACTIONS(1711), 1, aux_sym__newline_token1, - ACTIONS(3562), 1, + ACTIONS(3533), 1, sym__whitespace_ge_2, - ACTIONS(3565), 1, + ACTIONS(3536), 1, aux_sym__whitespace_token1, - STATE(1532), 2, + STATE(1482), 2, sym__whitespace, sym__newline, - ACTIONS(2959), 6, + ACTIONS(2898), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(938), 41, + ACTIONS(1122), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80012,13 +79912,13 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_character_reference, sym__word_no_digit, sym__digits, - [9636] = 4, - STATE(635), 1, + [9510] = 4, + STATE(606), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3539), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 7, + ACTIONS(697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80026,7 +79926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1379), 42, + ACTIONS(695), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80069,13 +79969,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9697] = 4, - STATE(609), 1, + [9571] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3568), 2, + ACTIONS(3541), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 7, + ACTIONS(475), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80083,7 +79983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1379), 42, + ACTIONS(473), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80126,13 +80026,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9758] = 4, - STATE(599), 1, + [9632] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3570), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(730), 7, + ACTIONS(697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80140,7 +80040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(728), 42, + ACTIONS(695), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80183,13 +80083,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9819] = 4, - STATE(635), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(730), 7, + [9693] = 6, + ACTIONS(1559), 1, + aux_sym__newline_token1, + ACTIONS(2409), 1, + sym__last_token_punctuation, + STATE(845), 1, + sym__soft_line_break, + STATE(2108), 1, + sym__newline, + ACTIONS(2862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80197,7 +80100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(728), 42, + ACTIONS(2068), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80239,14 +80142,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [9880] = 4, - STATE(635), 1, + [9758] = 4, + STATE(620), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3544), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(726), 7, + ACTIONS(857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80254,7 +80156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(724), 42, + ACTIONS(855), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80297,13 +80199,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [9941] = 4, - STATE(635), 1, + [9819] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(710), 7, + ACTIONS(857), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80311,7 +80213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(708), 42, + ACTIONS(855), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80354,16 +80256,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10002] = 6, - ACTIONS(1529), 1, - aux_sym__newline_token1, - ACTIONS(2330), 1, - sym__last_token_punctuation, - STATE(932), 1, - sym__soft_line_break, - STATE(2114), 1, - sym__newline, - ACTIONS(2883), 7, + [9880] = 4, + STATE(601), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3531), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(624), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80371,7 +80270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2045), 41, + ACTIONS(622), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80413,13 +80312,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10067] = 4, - STATE(635), 1, + aux_sym__newline_token1, + [9941] = 4, + STATE(615), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3546), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 7, + ACTIONS(1043), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80427,7 +80327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1141), 42, + ACTIONS(1041), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80470,13 +80370,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10128] = 4, - STATE(614), 1, + [10002] = 4, + STATE(649), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3572), 2, + ACTIONS(3548), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 7, + ACTIONS(1067), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80484,7 +80384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1141), 42, + ACTIONS(1065), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80527,13 +80427,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10189] = 4, - STATE(635), 1, + [10063] = 4, + STATE(639), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3550), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(706), 7, + ACTIONS(1031), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80541,7 +80441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(704), 42, + ACTIONS(1029), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80584,24 +80484,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10250] = 4, - STATE(620), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3574), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1423), 7, + [10124] = 6, + ACTIONS(3552), 1, + sym__whitespace_ge_2, + ACTIONS(3555), 1, + aux_sym__whitespace_token1, + ACTIONS(3558), 1, + aux_sym__newline_token1, + STATE(1547), 2, + sym__whitespace, + sym__newline, + ACTIONS(2917), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(1421), 42, + ACTIONS(1288), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80637,17 +80541,15 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [10311] = 4, - STATE(635), 1, + [10189] = 4, + STATE(614), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3561), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(673), 7, + ACTIONS(624), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80655,7 +80557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(671), 42, + ACTIONS(622), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80698,13 +80600,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10372] = 4, - STATE(635), 1, + [10250] = 4, + STATE(617), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3563), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1108), 7, + ACTIONS(863), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80712,7 +80614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1106), 42, + ACTIONS(861), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80755,13 +80657,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10433] = 4, - STATE(635), 1, + [10311] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(665), 7, + ACTIONS(770), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80769,7 +80671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(663), 42, + ACTIONS(768), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80812,13 +80714,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10494] = 4, - STATE(635), 1, + [10372] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(822), 7, + ACTIONS(952), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80826,7 +80728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(820), 42, + ACTIONS(950), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -80869,16 +80771,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10555] = 6, - ACTIONS(2380), 1, - sym__last_token_punctuation, - ACTIONS(3576), 1, - anon_sym_SLASH, - ACTIONS(3579), 1, - sym__word_no_digit, - STATE(1792), 1, - sym__tag_name, - ACTIONS(2976), 7, + [10433] = 4, + STATE(601), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3531), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(863), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -80886,11 +80785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1352), 41, + ACTIONS(861), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80904,6 +80802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH, anon_sym_DOT, + anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, @@ -80926,30 +80825,27 @@ static const uint16_t ts_small_parse_table[] = { sym_entity_reference, sym_numeric_character_reference, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10620] = 6, - ACTIONS(3552), 1, - sym__whitespace_ge_2, - ACTIONS(3555), 1, - aux_sym__whitespace_token1, - ACTIONS(3582), 1, - aux_sym__newline_token1, - STATE(1487), 2, - sym__whitespace, - sym__newline, - ACTIONS(2976), 6, + [10494] = 4, + STATE(622), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3565), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(952), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(1352), 41, + aux_sym__whitespace_token1, + ACTIONS(950), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -80985,18 +80881,17 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10685] = 6, - ACTIONS(2908), 1, aux_sym__newline_token1, - ACTIONS(3585), 1, + [10555] = 4, + STATE(601), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3531), 2, + sym__block_continuation, sym__last_token_whitespace, - STATE(932), 1, - sym__soft_line_break, - STATE(2114), 1, - sym__newline, - ACTIONS(2906), 7, + ACTIONS(766), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81004,7 +80899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 41, + ACTIONS(764), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81046,13 +80941,17 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [10750] = 4, - STATE(635), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1084), 7, + aux_sym__newline_token1, + [10616] = 6, + ACTIONS(2353), 1, + sym__last_token_punctuation, + ACTIONS(3567), 1, + anon_sym_SLASH, + ACTIONS(3570), 1, + sym__word_no_digit, + STATE(1815), 1, + sym__tag_name, + ACTIONS(2898), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81060,10 +80959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1082), 42, + ACTIONS(1122), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81077,7 +80977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH, anon_sym_DOT, - anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, @@ -81100,16 +80999,15 @@ static const uint16_t ts_small_parse_table[] = { sym_entity_reference, sym_numeric_character_reference, sym__whitespace_ge_2, - sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10811] = 4, - STATE(616), 1, + [10681] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3587), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1084), 7, + ACTIONS(774), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81117,7 +81015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1082), 42, + ACTIONS(772), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81160,13 +81058,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10872] = 4, - STATE(605), 1, + [10742] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3589), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(758), 7, + ACTIONS(762), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81174,7 +81072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(756), 42, + ACTIONS(760), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81217,10 +81115,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10933] = 4, - STATE(635), 1, + [10803] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, ACTIONS(758), 7, @@ -81274,26 +81172,21 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [10994] = 7, - ACTIONS(3591), 1, - sym__whitespace_ge_2, - ACTIONS(3594), 1, - aux_sym__whitespace_token1, - ACTIONS(3597), 1, - aux_sym__newline_token1, - ACTIONS(3600), 1, - sym__open_block, - STATE(1509), 2, - sym__whitespace, - sym__newline, - ACTIONS(2883), 6, + [10864] = 4, + STATE(601), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3531), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1126), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(2045), 40, + aux_sym__whitespace_token1, + ACTIONS(1124), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81332,15 +81225,17 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11061] = 4, - STATE(647), 1, + aux_sym__newline_token1, + [10925] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3602), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1032), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81348,7 +81243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1030), 42, + ACTIONS(750), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81391,16 +81286,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11122] = 6, - ACTIONS(2430), 1, + [10986] = 6, + ACTIONS(2303), 1, sym__last_token_punctuation, - ACTIONS(3604), 1, + ACTIONS(3573), 1, anon_sym_SLASH, - ACTIONS(3607), 1, + ACTIONS(3576), 1, sym__word_no_digit, - STATE(1813), 1, + STATE(1800), 1, sym__tag_name, - ACTIONS(2959), 7, + ACTIONS(2917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81408,11 +81303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(938), 41, + ACTIONS(1288), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81450,28 +81345,24 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__digits, aux_sym__newline_token1, - [11187] = 6, - ACTIONS(3562), 1, - sym__whitespace_ge_2, - ACTIONS(3565), 1, - aux_sym__whitespace_token1, - ACTIONS(3610), 1, - aux_sym__newline_token1, - STATE(1532), 2, - sym__whitespace, - sym__newline, - ACTIONS(2959), 6, + [11051] = 4, + STATE(623), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3579), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(938), 41, + aux_sym__whitespace_token1, + ACTIONS(843), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81507,28 +81398,25 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11252] = 7, - ACTIONS(3591), 1, - sym__whitespace_ge_2, - ACTIONS(3594), 1, - aux_sym__whitespace_token1, - ACTIONS(3597), 1, aux_sym__newline_token1, - ACTIONS(3613), 1, - sym__open_block, - STATE(1509), 2, - sym__whitespace, - sym__newline, - ACTIONS(2883), 6, + [11112] = 4, + STATE(601), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3531), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(778), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(2045), 40, + aux_sym__whitespace_token1, + ACTIONS(776), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81567,15 +81455,17 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [11319] = 4, - STATE(606), 1, + aux_sym__newline_token1, + [11173] = 4, + STATE(602), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3615), 2, + ACTIONS(3581), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(768), 7, + ACTIONS(752), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81583,7 +81473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(766), 42, + ACTIONS(750), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81626,13 +81516,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11380] = 4, - STATE(635), 1, + [11234] = 4, + STATE(642), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3583), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(768), 7, + ACTIONS(1209), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81640,7 +81530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(766), 42, + ACTIONS(1207), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81683,13 +81573,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11441] = 4, - STATE(641), 1, + [11295] = 4, + STATE(613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3617), 2, + ACTIONS(3585), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1020), 7, + ACTIONS(869), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81697,7 +81587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1018), 42, + ACTIONS(867), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81740,21 +81630,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11502] = 4, - STATE(607), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3619), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(774), 7, + [11356] = 7, + ACTIONS(3587), 1, + sym__whitespace_ge_2, + ACTIONS(3590), 1, + aux_sym__whitespace_token1, + ACTIONS(3593), 1, + aux_sym__newline_token1, + ACTIONS(3596), 1, + sym__open_block, + STATE(1540), 2, + sym__whitespace, + sym__newline, + ACTIONS(2862), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(772), 42, + ACTIONS(2068), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81793,17 +81688,15 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [11563] = 4, - STATE(635), 1, + [11423] = 4, + STATE(605), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3598), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(774), 7, + ACTIONS(1037), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81811,7 +81704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(772), 42, + ACTIONS(1035), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81854,13 +81747,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11624] = 4, - STATE(611), 1, + [11484] = 4, + STATE(621), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3621), 2, + ACTIONS(3600), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(782), 7, + ACTIONS(851), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81868,7 +81761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(780), 42, + ACTIONS(849), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -81911,24 +81804,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11685] = 4, - STATE(635), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3623), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(522), 7, + [11545] = 6, + ACTIONS(3533), 1, + sym__whitespace_ge_2, + ACTIONS(3536), 1, + aux_sym__whitespace_token1, + ACTIONS(3602), 1, + aux_sym__newline_token1, + STATE(1482), 2, + sym__whitespace, + sym__newline, + ACTIONS(2898), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(520), 42, + ACTIONS(1122), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -81964,17 +81861,18 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, + [11610] = 6, + ACTIONS(2887), 1, aux_sym__newline_token1, - [11746] = 4, - STATE(635), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, - sym__block_continuation, + ACTIONS(3605), 1, sym__last_token_whitespace, - ACTIONS(782), 7, + STATE(845), 1, + sym__soft_line_break, + STATE(2108), 1, + sym__newline, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -81982,7 +81880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(780), 42, + ACTIONS(2883), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82024,14 +81922,13 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [11807] = 4, - STATE(635), 1, + [11675] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(529), 7, + ACTIONS(845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82039,7 +81936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(527), 42, + ACTIONS(843), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82082,13 +81979,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11868] = 4, - STATE(635), 1, + [11736] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 7, + ACTIONS(494), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82096,7 +81993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(512), 42, + ACTIONS(492), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82139,13 +82036,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11929] = 4, - STATE(637), 1, + [11797] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3626), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 7, + ACTIONS(869), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82153,7 +82050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(512), 42, + ACTIONS(867), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82196,13 +82093,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [11990] = 4, - STATE(613), 1, + [11858] = 4, + STATE(636), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3628), 2, + ACTIONS(3607), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(619), 7, + ACTIONS(484), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82210,7 +82107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(617), 42, + ACTIONS(482), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82253,13 +82150,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12051] = 4, - STATE(635), 1, + [11919] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(619), 7, + ACTIONS(851), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82267,7 +82164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(617), 42, + ACTIONS(849), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82310,21 +82207,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12112] = 4, - STATE(636), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3630), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1014), 7, + [11980] = 7, + ACTIONS(3587), 1, + sym__whitespace_ge_2, + ACTIONS(3590), 1, + aux_sym__whitespace_token1, + ACTIONS(3593), 1, + aux_sym__newline_token1, + ACTIONS(3609), 1, + sym__open_block, + STATE(1540), 2, + sym__whitespace, + sym__newline, + ACTIONS(2862), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(1012), 42, + ACTIONS(2068), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82363,17 +82265,15 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [12173] = 4, - STATE(633), 1, + [12047] = 4, + STATE(635), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3632), 2, + ACTIONS(3611), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(625), 7, + ACTIONS(1025), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82381,7 +82281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(623), 42, + ACTIONS(1023), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82424,13 +82324,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12234] = 4, - STATE(630), 1, + [12108] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3634), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1006), 7, + ACTIONS(1067), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82438,7 +82338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1004), 42, + ACTIONS(1065), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82481,13 +82381,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12295] = 4, - STATE(623), 1, + [12169] = 4, + STATE(619), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3636), 2, + ACTIONS(3613), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(998), 7, + ACTIONS(909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82495,7 +82395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(996), 42, + ACTIONS(907), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82538,13 +82438,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12356] = 4, - STATE(615), 1, + [12230] = 4, + STATE(601), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3638), 2, + ACTIONS(3531), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(790), 7, + ACTIONS(909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82552,7 +82452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(788), 42, + ACTIONS(907), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82595,13 +82495,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12417] = 4, - STATE(635), 1, + [12291] = 4, + STATE(637), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3615), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(790), 7, + ACTIONS(1049), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82609,7 +82509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(788), 42, + ACTIONS(1047), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82652,13 +82552,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12478] = 4, - STATE(649), 1, + [12352] = 4, + STATE(644), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3640), 2, + ACTIONS(3617), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(822), 7, + ACTIONS(1055), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82666,7 +82566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(820), 42, + ACTIONS(1053), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82709,13 +82609,72 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12539] = 4, - STATE(635), 1, + [12413] = 6, + ACTIONS(1711), 1, + aux_sym__newline_token1, + ACTIONS(3552), 1, + sym__whitespace_ge_2, + ACTIONS(3555), 1, + aux_sym__whitespace_token1, + STATE(1547), 2, + sym__whitespace, + sym__newline, + ACTIONS(2917), 6, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(1288), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + [12478] = 4, + STATE(626), 1, aux_sym__ignore_matching_tokens, - ACTIONS(3558), 2, + ACTIONS(3619), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(669), 7, + ACTIONS(923), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82723,7 +82682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(667), 42, + ACTIONS(921), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82766,10 +82725,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12600] = 3, - ACTIONS(3480), 1, + [12539] = 4, + STATE(601), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3531), 2, + sym__block_continuation, sym__last_token_whitespace, - ACTIONS(2906), 7, + ACTIONS(923), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82777,11 +82739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 43, + ACTIONS(921), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82821,16 +82782,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12658] = 6, - ACTIONS(2330), 1, + [12600] = 4, + ACTIONS(2303), 1, sym__last_token_punctuation, - ACTIONS(3642), 1, - anon_sym_SLASH, - ACTIONS(3645), 1, - sym__word_no_digit, - STATE(1816), 1, - sym__tag_name, - ACTIONS(2883), 7, + ACTIONS(3621), 1, + anon_sym_LBRACK, + ACTIONS(2917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82838,10 +82795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2045), 40, + ACTIONS(1288), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -82855,13 +82813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH, anon_sym_DOT, + anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -82877,18 +82835,13 @@ static const uint16_t ts_small_parse_table[] = { sym_entity_reference, sym_numeric_character_reference, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12722] = 6, - ACTIONS(2813), 1, - aux_sym__newline_token1, - ACTIONS(3648), 1, - sym__last_token_punctuation, - STATE(741), 1, - sym__soft_line_break, - STATE(2105), 1, - sym__newline, - ACTIONS(2921), 7, + [12660] = 3, + ACTIONS(3437), 1, + sym__last_token_whitespace, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82896,7 +82849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2825), 40, + ACTIONS(2883), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82921,6 +82874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -82937,12 +82892,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12786] = 4, - ACTIONS(1750), 1, aux_sym__newline_token1, - STATE(821), 1, - sym__newline, - ACTIONS(3652), 7, + [12718] = 3, + ACTIONS(2303), 1, + sym__last_token_punctuation, + ACTIONS(2917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -82950,7 +82904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 42, + ACTIONS(1288), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -82993,14 +82947,15 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12846] = 5, - ACTIONS(2045), 1, aux_sym__newline_token1, - ACTIONS(2330), 1, + [12776] = 5, + ACTIONS(2068), 1, + aux_sym__newline_token1, + ACTIONS(2409), 1, sym__last_token_punctuation, - ACTIONS(3660), 1, - sym__emphasis_close_star, - ACTIONS(3657), 7, + ACTIONS(3630), 1, + sym__emphasis_close_underscore, + ACTIONS(3627), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83008,7 +82963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 41, + ACTIONS(3624), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83050,10 +83005,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [12908] = 3, - STATE(821), 1, - sym__newline, - ACTIONS(3652), 7, + [12838] = 3, + ACTIONS(3439), 1, + sym__last_token_whitespace, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83061,7 +83016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(2883), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83105,10 +83060,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [12966] = 3, - ACTIONS(3456), 1, - sym__last_token_whitespace, - ACTIONS(2906), 7, + [12896] = 4, + ACTIONS(2409), 1, + sym__last_token_punctuation, + ACTIONS(3630), 1, + sym__emphasis_close_underscore, + ACTIONS(3627), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83116,11 +83073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 43, + ACTIONS(3624), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83160,16 +83116,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13024] = 6, - ACTIONS(2532), 1, + [12956] = 5, + ACTIONS(2068), 1, aux_sym__newline_token1, - ACTIONS(3662), 1, + ACTIONS(2409), 1, sym__last_token_punctuation, - STATE(932), 1, - sym__soft_line_break, - STATE(2114), 1, - sym__newline, - ACTIONS(2997), 7, + ACTIONS(3630), 1, + sym__emphasis_close_star, + ACTIONS(3627), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83177,7 +83131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2509), 40, + ACTIONS(3624), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83201,6 +83155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -83218,12 +83173,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13088] = 4, - ACTIONS(2330), 1, + [13018] = 6, + ACTIONS(2686), 1, + aux_sym__newline_token1, + ACTIONS(3632), 1, sym__last_token_punctuation, - ACTIONS(3660), 1, - sym__emphasis_close_underscore, - ACTIONS(3657), 7, + STATE(737), 1, + sym__soft_line_break, + STATE(2100), 1, + sym__newline, + ACTIONS(2938), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83231,10 +83190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 42, + ACTIONS(2698), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83255,8 +83215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -83273,15 +83231,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [13148] = 5, - ACTIONS(2045), 1, - anon_sym_RBRACK, - ACTIONS(2330), 1, - sym__last_token_punctuation, - ACTIONS(3660), 1, - sym__emphasis_close_star, - ACTIONS(3657), 7, + [13082] = 3, + STATE(799), 1, + sym__newline, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83289,10 +83242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 41, + ACTIONS(3634), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83314,6 +83268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -83331,56 +83286,56 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13210] = 21, - ACTIONS(396), 1, + [13140] = 21, + ACTIONS(421), 1, aux_sym__whitespace_token1, - ACTIONS(611), 1, + ACTIONS(577), 1, sym__setext_h1_underline, - ACTIONS(613), 1, + ACTIONS(579), 1, sym__setext_h2_underline, - ACTIONS(3664), 1, + ACTIONS(3638), 1, aux_sym__html_block_1_token1, - ACTIONS(3666), 1, + ACTIONS(3640), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(3668), 1, + ACTIONS(3642), 1, anon_sym_LT_QMARK, - ACTIONS(3670), 1, + ACTIONS(3644), 1, aux_sym__html_block_4_token1, - ACTIONS(3672), 1, + ACTIONS(3646), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3674), 1, + ACTIONS(3648), 1, aux_sym__html_block_6_token1, - ACTIONS(3676), 1, + ACTIONS(3650), 1, aux_sym__html_block_6_token2, - ACTIONS(3678), 1, + ACTIONS(3652), 1, sym__block_quote_start, - ACTIONS(3682), 1, + ACTIONS(3656), 1, sym__setext_h2_underline_or_thematic_break, - ACTIONS(3684), 1, + ACTIONS(3658), 1, sym__thematic_break, - ACTIONS(3688), 1, + ACTIONS(3662), 1, sym__fenced_code_block_start_backtick, - ACTIONS(3690), 1, + ACTIONS(3664), 1, sym__fenced_code_block_start_tilde, - ACTIONS(3692), 1, + ACTIONS(3666), 1, sym__blank_line_start, - ACTIONS(410), 2, + ACTIONS(397), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(3686), 5, + ACTIONS(3660), 5, sym__list_marker_minus, sym__list_marker_plus, sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - ACTIONS(3680), 6, + ACTIONS(3654), 6, sym_atx_h1_marker, sym_atx_h2_marker, sym_atx_h3_marker, sym_atx_h4_marker, sym_atx_h5_marker, sym_atx_h6_marker, - ACTIONS(394), 8, + ACTIONS(419), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -83389,7 +83344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - STATE(1808), 14, + STATE(1813), 14, sym__block_interrupt_paragraph, sym__blank_line, sym_block_quote, @@ -83404,12 +83359,12 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_4, sym__html_block_5, sym__html_block_6, - [13304] = 4, - ACTIONS(1758), 1, - aux_sym__newline_token1, - STATE(761), 1, - sym__newline, - ACTIONS(3652), 7, + [13234] = 4, + ACTIONS(2409), 1, + sym__last_token_punctuation, + ACTIONS(3630), 1, + sym__emphasis_close_star, + ACTIONS(3627), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83417,11 +83372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 42, + ACTIONS(3624), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83460,85 +83414,71 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13364] = 21, - ACTIONS(438), 1, - aux_sym__whitespace_token1, - ACTIONS(611), 1, - sym__setext_h1_underline, - ACTIONS(613), 1, - sym__setext_h2_underline, - ACTIONS(3664), 1, - aux_sym__html_block_1_token1, - ACTIONS(3666), 1, - anon_sym_LT_BANG_DASH_DASH, + aux_sym__newline_token1, + [13294] = 6, + ACTIONS(2455), 1, + aux_sym__newline_token1, ACTIONS(3668), 1, + sym__last_token_punctuation, + STATE(845), 1, + sym__soft_line_break, + STATE(2108), 1, + sym__newline, + ACTIONS(2989), 7, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, - ACTIONS(3670), 1, aux_sym__html_block_4_token1, - ACTIONS(3672), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(3674), 1, - aux_sym__html_block_6_token1, - ACTIONS(3676), 1, - aux_sym__html_block_6_token2, - ACTIONS(3678), 1, - sym__block_quote_start, - ACTIONS(3682), 1, - sym__setext_h2_underline_or_thematic_break, - ACTIONS(3684), 1, - sym__thematic_break, - ACTIONS(3688), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(3690), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(3692), 1, - sym__blank_line_start, - ACTIONS(410), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(3694), 5, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - ACTIONS(3680), 6, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - ACTIONS(436), 8, + aux_sym__whitespace_token1, + ACTIONS(2432), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [13358] = 4, + ACTIONS(1689), 1, aux_sym__newline_token1, - STATE(1797), 14, - sym__block_interrupt_paragraph, - sym__blank_line, - sym_block_quote, - sym_atx_heading, - sym_setext_h1_underline, - sym_setext_h2_underline, - sym_thematic_break, - sym_fenced_code_block, - sym__html_block_1, - sym__html_block_2, - sym__html_block_3, - sym__html_block_4, - sym__html_block_5, - sym__html_block_6, - [13458] = 4, - ACTIONS(2330), 1, - sym__last_token_punctuation, - ACTIONS(3660), 1, - sym__emphasis_close_star, - ACTIONS(3657), 7, + STATE(799), 1, + sym__newline, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83546,10 +83486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 42, + ACTIONS(3634), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83588,11 +83529,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [13518] = 3, - ACTIONS(2430), 1, + [13418] = 5, + ACTIONS(2068), 1, + anon_sym_RBRACK, + ACTIONS(2409), 1, sym__last_token_punctuation, - ACTIONS(2959), 7, + ACTIONS(3630), 1, + sym__emphasis_close_underscore, + ACTIONS(3627), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83600,11 +83544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(938), 43, + ACTIONS(3624), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83626,7 +83569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -83644,12 +83586,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13576] = 4, - ACTIONS(2430), 1, + [13480] = 4, + ACTIONS(2353), 1, sym__last_token_punctuation, - ACTIONS(3696), 1, + ACTIONS(3670), 1, anon_sym_LBRACK, - ACTIONS(2959), 7, + ACTIONS(2898), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83657,7 +83599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(938), 42, + ACTIONS(1122), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83700,10 +83642,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13636] = 3, - ACTIONS(2380), 1, + [13540] = 6, + ACTIONS(2788), 1, + aux_sym__newline_token1, + ACTIONS(3673), 1, sym__last_token_punctuation, - ACTIONS(2976), 7, + STATE(718), 1, + sym__soft_line_break, + STATE(2106), 1, + sym__newline, + ACTIONS(2955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83711,7 +83659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1352), 43, + ACTIONS(2800), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83736,8 +83684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -83754,11 +83700,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [13694] = 3, - STATE(761), 1, - sym__newline, - ACTIONS(3652), 7, + [13604] = 6, + ACTIONS(2409), 1, + sym__last_token_punctuation, + ACTIONS(3675), 1, + anon_sym_SLASH, + ACTIONS(3678), 1, + sym__word_no_digit, + STATE(1799), 1, + sym__tag_name, + ACTIONS(2862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83766,11 +83717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(2068), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83784,7 +83734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH, anon_sym_DOT, - anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, @@ -83807,27 +83756,24 @@ static const uint16_t ts_small_parse_table[] = { sym_entity_reference, sym_numeric_character_reference, sym__whitespace_ge_2, - sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13752] = 6, - ACTIONS(3591), 1, - sym__whitespace_ge_2, - ACTIONS(3594), 1, - aux_sym__whitespace_token1, - ACTIONS(3597), 1, - aux_sym__newline_token1, - STATE(1509), 2, - sym__whitespace, - sym__newline, - ACTIONS(2883), 6, + [13668] = 5, + ACTIONS(2068), 1, + anon_sym_RBRACK, + ACTIONS(2409), 1, + sym__last_token_punctuation, + ACTIONS(3630), 1, + sym__emphasis_close_star, + ACTIONS(3627), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(2045), 40, + aux_sym__whitespace_token1, + ACTIONS(3624), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83852,7 +83798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -83866,18 +83811,16 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13816] = 6, - ACTIONS(2629), 1, aux_sym__newline_token1, - ACTIONS(3699), 1, - sym__last_token_punctuation, - STATE(719), 1, - sym__soft_line_break, - STATE(2104), 1, + [13730] = 4, + ACTIONS(1707), 1, + aux_sym__newline_token1, + STATE(699), 1, sym__newline, - ACTIONS(2940), 7, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83885,7 +83828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2641), 40, + ACTIONS(3634), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -83910,6 +83853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -83926,14 +83871,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [13880] = 5, - ACTIONS(2045), 1, - anon_sym_RBRACK, - ACTIONS(2330), 1, + [13790] = 3, + ACTIONS(2353), 1, sym__last_token_punctuation, - ACTIONS(3660), 1, - sym__emphasis_close_underscore, - ACTIONS(3657), 7, + ACTIONS(2898), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83941,10 +83882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 41, + ACTIONS(1122), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -83966,6 +83908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -83983,12 +83926,141 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [13942] = 4, - ACTIONS(2380), 1, - sym__last_token_punctuation, - ACTIONS(3701), 1, + [13848] = 6, + ACTIONS(3587), 1, + sym__whitespace_ge_2, + ACTIONS(3590), 1, + aux_sym__whitespace_token1, + ACTIONS(3593), 1, + aux_sym__newline_token1, + STATE(1540), 2, + sym__whitespace, + sym__newline, + ACTIONS(2862), 6, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + ACTIONS(2068), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(2976), 7, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + [13912] = 21, + ACTIONS(383), 1, + aux_sym__whitespace_token1, + ACTIONS(577), 1, + sym__setext_h1_underline, + ACTIONS(579), 1, + sym__setext_h2_underline, + ACTIONS(3638), 1, + aux_sym__html_block_1_token1, + ACTIONS(3640), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(3642), 1, + anon_sym_LT_QMARK, + ACTIONS(3644), 1, + aux_sym__html_block_4_token1, + ACTIONS(3646), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(3648), 1, + aux_sym__html_block_6_token1, + ACTIONS(3650), 1, + aux_sym__html_block_6_token2, + ACTIONS(3652), 1, + sym__block_quote_start, + ACTIONS(3656), 1, + sym__setext_h2_underline_or_thematic_break, + ACTIONS(3658), 1, + sym__thematic_break, + ACTIONS(3662), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(3664), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(3666), 1, + sym__blank_line_start, + ACTIONS(397), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(3681), 5, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + ACTIONS(3654), 6, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + ACTIONS(381), 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1808), 14, + sym__block_interrupt_paragraph, + sym__blank_line, + sym_block_quote, + sym_atx_heading, + sym_setext_h1_underline, + sym_setext_h2_underline, + sym_thematic_break, + sym_fenced_code_block, + sym__html_block_1, + sym__html_block_2, + sym__html_block_3, + sym__html_block_4, + sym__html_block_5, + sym__html_block_6, + [14006] = 3, + STATE(699), 1, + sym__newline, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -83996,7 +84068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1352), 42, + ACTIONS(3634), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84021,6 +84093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -84039,14 +84112,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14002] = 5, - ACTIONS(2045), 1, - aux_sym__newline_token1, - ACTIONS(2330), 1, - sym__last_token_punctuation, - ACTIONS(3660), 1, - sym__emphasis_close_underscore, - ACTIONS(3657), 7, + [14064] = 2, + ACTIONS(3685), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84054,10 +84121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 41, + ACTIONS(3683), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84096,8 +84164,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14064] = 2, - ACTIONS(3706), 7, + aux_sym__newline_token1, + [14119] = 2, + ACTIONS(3689), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84105,7 +84174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3704), 43, + ACTIONS(3687), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84149,8 +84218,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14119] = 2, - ACTIONS(3706), 7, + [14174] = 2, + ACTIONS(2177), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84158,11 +84227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3704), 43, + ACTIONS(2175), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84202,8 +84271,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14174] = 2, - ACTIONS(2062), 7, + [14229] = 2, + ACTIONS(3693), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84211,11 +84280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2060), 43, + ACTIONS(3691), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84255,8 +84324,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14229] = 2, - ACTIONS(2016), 7, + [14284] = 2, + ACTIONS(3697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84264,7 +84333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2014), 43, + ACTIONS(3695), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84308,12 +84377,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14284] = 4, - ACTIONS(2380), 1, - sym__last_token_punctuation, - ACTIONS(3708), 1, - anon_sym_LBRACK, - ACTIONS(2976), 7, + [14339] = 2, + ACTIONS(3701), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84321,11 +84386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1352), 41, + ACTIONS(3699), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84346,6 +84411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -84363,8 +84429,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [14343] = 2, - ACTIONS(3713), 7, + aux_sym__newline_token1, + [14394] = 2, + ACTIONS(3705), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84372,7 +84439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3711), 43, + ACTIONS(3703), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84416,8 +84483,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14398] = 2, - ACTIONS(3717), 7, + [14449] = 3, + ACTIONS(3605), 1, + sym__last_token_whitespace, + ACTIONS(2885), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84425,11 +84494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3715), 43, + ACTIONS(2883), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84469,8 +84537,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14453] = 2, - ACTIONS(3721), 7, + [14506] = 2, + ACTIONS(3709), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84478,7 +84546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3719), 43, + ACTIONS(3707), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84522,10 +84590,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14508] = 3, - ACTIONS(2330), 1, - sym__last_token_punctuation, - ACTIONS(3657), 7, + [14561] = 2, + ACTIONS(1741), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84533,10 +84599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3654), 42, + ACTIONS(1739), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84576,8 +84643,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14565] = 2, - ACTIONS(3725), 7, + [14616] = 2, + ACTIONS(3002), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84585,7 +84652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3723), 43, + ACTIONS(3000), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -84629,8 +84696,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14620] = 2, - ACTIONS(3729), 7, + [14671] = 2, + ACTIONS(3713), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84638,11 +84705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3727), 43, + ACTIONS(3711), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84682,8 +84749,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14675] = 2, - ACTIONS(1802), 7, + [14726] = 2, + ACTIONS(2087), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84691,11 +84758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1800), 43, + ACTIONS(2085), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84735,10 +84802,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14730] = 3, - ACTIONS(3735), 1, - sym__emphasis_close_star, - ACTIONS(3733), 7, + [14781] = 2, + ACTIONS(3717), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84746,10 +84811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3731), 42, + ACTIONS(3715), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84789,10 +84855,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14787] = 3, - ACTIONS(3741), 1, - sym__emphasis_close_underscore, - ACTIONS(3739), 7, + [14836] = 2, + ACTIONS(2081), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84800,10 +84864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3737), 42, + ACTIONS(2079), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -84843,7 +84908,7 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14844] = 2, + [14891] = 2, ACTIONS(3721), 7, anon_sym_AMP, anon_sym_LT, @@ -84896,8 +84961,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14899] = 2, - ACTIONS(1968), 7, + [14946] = 3, + ACTIONS(3727), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3725), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84905,18 +84973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1966), 43, + ACTIONS(3723), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -84930,7 +84997,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -84949,8 +85015,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [14954] = 2, - ACTIONS(3652), 7, + [15003] = 2, + ACTIONS(3732), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -84958,11 +85024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(3730), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85002,8 +85068,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15009] = 2, - ACTIONS(3745), 7, + [15058] = 2, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85011,11 +85077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3743), 43, + ACTIONS(3634), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85055,8 +85121,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15064] = 2, - ACTIONS(2058), 7, + [15113] = 2, + ACTIONS(3736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85064,7 +85130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2056), 43, + ACTIONS(3734), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85108,8 +85174,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15119] = 2, - ACTIONS(3749), 7, + [15168] = 3, + ACTIONS(3742), 1, + sym__emphasis_close_underscore, + ACTIONS(3740), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85117,11 +85185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3747), 43, + ACTIONS(3738), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85161,11 +85228,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15174] = 3, - ACTIONS(3755), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3753), 7, + [15225] = 2, + ACTIONS(3713), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85173,7 +85237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3751), 41, + ACTIONS(3711), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85184,6 +85248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -85197,6 +85262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -85215,11 +85281,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15231] = 3, - ACTIONS(3762), 2, + [15280] = 3, + ACTIONS(3727), 2, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3760), 7, + ACTIONS(3725), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85227,7 +85293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3758), 41, + ACTIONS(3723), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85269,8 +85335,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15288] = 2, - ACTIONS(3767), 7, + [15337] = 3, + ACTIONS(3748), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3746), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85278,7 +85347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3765), 43, + ACTIONS(3744), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85289,7 +85358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -85303,7 +85371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -85322,8 +85389,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15343] = 2, - ACTIONS(3771), 7, + [15394] = 2, + ACTIONS(3753), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85331,7 +85398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3769), 43, + ACTIONS(3751), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85375,8 +85442,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15398] = 2, - ACTIONS(3775), 7, + [15449] = 3, + ACTIONS(3759), 1, + sym__emphasis_close_star, + ACTIONS(3757), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85384,11 +85453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3773), 43, + ACTIONS(3755), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85428,8 +85496,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15453] = 2, - ACTIONS(3779), 7, + [15506] = 2, + ACTIONS(2025), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85437,11 +85505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3777), 43, + ACTIONS(2023), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85481,65 +85549,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15508] = 6, - ACTIONS(3781), 1, - sym__whitespace_ge_2, - ACTIONS(3784), 1, - aux_sym__whitespace_token1, - ACTIONS(3787), 1, - aux_sym__newline_token1, - STATE(1532), 2, - sym__whitespace, - sym__newline, - ACTIONS(2921), 6, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(2825), 39, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - [15571] = 2, - ACTIONS(3792), 7, + [15561] = 3, + ACTIONS(2409), 1, + sym__last_token_punctuation, + ACTIONS(2862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85547,11 +85560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3790), 43, + ACTIONS(2068), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85591,16 +85603,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15626] = 6, - ACTIONS(3648), 1, - sym__last_token_punctuation, - ACTIONS(3794), 1, - anon_sym_SLASH, - ACTIONS(3797), 1, - sym__word_no_digit, - STATE(1813), 1, - sym__tag_name, - ACTIONS(2921), 7, + [15618] = 2, + ACTIONS(3763), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85608,11 +85612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2825), 39, + ACTIONS(3761), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85626,12 +85630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH, anon_sym_DOT, + anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -85646,10 +85653,11 @@ static const uint16_t ts_small_parse_table[] = { sym_entity_reference, sym_numeric_character_reference, sym__whitespace_ge_2, + sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15689] = 2, - ACTIONS(396), 7, + [15673] = 2, + ACTIONS(3767), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85657,7 +85665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(394), 43, + ACTIONS(3765), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85701,12 +85709,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15744] = 4, - ACTIONS(3648), 1, + [15728] = 4, + ACTIONS(2409), 1, sym__last_token_punctuation, - ACTIONS(3800), 1, + ACTIONS(3769), 1, anon_sym_LBRACK, - ACTIONS(2921), 7, + ACTIONS(2862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85714,11 +85722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2825), 41, + ACTIONS(2068), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85739,6 +85746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -85756,8 +85764,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15803] = 2, - ACTIONS(3779), 7, + [15787] = 2, + ACTIONS(1837), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85765,7 +85773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3777), 43, + ACTIONS(1835), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85809,8 +85817,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15858] = 2, - ACTIONS(3775), 7, + [15842] = 3, + ACTIONS(2409), 1, + sym__last_token_punctuation, + ACTIONS(3627), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85818,11 +85828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3773), 43, + ACTIONS(3624), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85862,28 +85871,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [15913] = 6, - ACTIONS(3802), 1, - sym__whitespace_ge_2, - ACTIONS(3805), 1, - aux_sym__whitespace_token1, - ACTIONS(3808), 1, - aux_sym__newline_token1, - STATE(1487), 2, - sym__whitespace, - sym__newline, - ACTIONS(2940), 6, + [15899] = 2, + ACTIONS(3774), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - ACTIONS(2641), 39, + aux_sym__whitespace_token1, + ACTIONS(3772), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -85904,6 +85905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -85917,10 +85920,12 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [15976] = 2, - ACTIONS(3813), 7, + aux_sym__newline_token1, + [15954] = 2, + ACTIONS(3778), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85928,7 +85933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3811), 43, + ACTIONS(3776), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -85972,16 +85977,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16031] = 6, - ACTIONS(3699), 1, + [16009] = 4, + ACTIONS(2303), 1, sym__last_token_punctuation, - ACTIONS(3815), 1, - anon_sym_SLASH, - ACTIONS(3818), 1, - sym__word_no_digit, - STATE(1792), 1, - sym__tag_name, - ACTIONS(2940), 7, + ACTIONS(3780), 1, + anon_sym_LBRACK, + ACTIONS(2917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -85989,7 +85990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2641), 39, + ACTIONS(1288), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86007,55 +86008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH, anon_sym_DOT, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__digits, - aux_sym__newline_token1, - [16094] = 2, - ACTIONS(3729), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3727), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, @@ -86063,7 +86015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -86081,9 +86032,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [16149] = 2, - ACTIONS(3823), 7, + [16068] = 2, + ACTIONS(3785), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86091,7 +86041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3821), 43, + ACTIONS(3783), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86135,12 +86085,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16204] = 4, - ACTIONS(3699), 1, - sym__last_token_punctuation, - ACTIONS(3825), 1, - anon_sym_LBRACK, - ACTIONS(2940), 7, + [16123] = 2, + ACTIONS(3717), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86148,7 +86094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2641), 41, + ACTIONS(3715), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86173,57 +86119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [16263] = 2, - ACTIONS(3829), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3827), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, @@ -86243,8 +86138,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16318] = 2, - ACTIONS(3833), 7, + [16178] = 2, + ACTIONS(2173), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86252,7 +86147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3831), 43, + ACTIONS(2171), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86296,8 +86191,64 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16373] = 2, - ACTIONS(3837), 7, + [16233] = 5, + ACTIONS(3787), 1, + sym__line_ending, + STATE(885), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(3789), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(463), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(461), 43, + sym__split_token, + sym__soft_line_break_marker, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [16294] = 2, + ACTIONS(3793), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86305,7 +86256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3835), 43, + ACTIONS(3791), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86349,13 +86300,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16428] = 4, - ACTIONS(2330), 1, - sym__last_token_punctuation, - ACTIONS(3839), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(2883), 7, + [16349] = 3, + ACTIONS(3795), 1, + sym__emphasis_close_star, + ACTIONS(3757), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86363,7 +86311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2045), 40, + ACTIONS(3755), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86373,6 +86321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -86386,6 +86335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -86404,8 +86354,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16487] = 2, - ACTIONS(3844), 7, + [16406] = 3, + ACTIONS(3797), 1, + sym__emphasis_close_underscore, + ACTIONS(3740), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86413,11 +86365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3842), 43, + ACTIONS(3738), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86457,8 +86408,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16542] = 2, - ACTIONS(3713), 7, + [16463] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86466,7 +86417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3711), 43, + ACTIONS(3799), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86510,8 +86461,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16597] = 2, - ACTIONS(1802), 7, + [16518] = 3, + ACTIONS(3748), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3746), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86519,18 +86473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1800), 43, + ACTIONS(3744), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -86544,7 +86497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -86563,8 +86515,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16652] = 2, - ACTIONS(3848), 7, + [16575] = 2, + ACTIONS(3805), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86572,7 +86524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3846), 43, + ACTIONS(3803), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86616,10 +86568,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16707] = 3, - ACTIONS(3585), 1, - sym__last_token_whitespace, - ACTIONS(2906), 7, + [16630] = 2, + ACTIONS(3809), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86627,10 +86577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2904), 42, + ACTIONS(3807), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86670,8 +86621,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16764] = 2, - ACTIONS(3852), 7, + [16685] = 2, + ACTIONS(3813), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86679,7 +86630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3850), 43, + ACTIONS(3811), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86723,8 +86674,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16819] = 2, - ACTIONS(3856), 7, + [16740] = 2, + ACTIONS(3817), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86732,7 +86683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3854), 43, + ACTIONS(3815), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86776,8 +86727,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16874] = 2, - ACTIONS(3860), 7, + [16795] = 2, + ACTIONS(3821), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86785,7 +86736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3858), 43, + ACTIONS(3819), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86829,12 +86780,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16929] = 4, - ACTIONS(2330), 1, - sym__last_token_punctuation, - ACTIONS(3862), 1, - anon_sym_LBRACK, - ACTIONS(2883), 7, + [16850] = 2, + ACTIONS(3753), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86842,10 +86789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2045), 41, + ACTIONS(3751), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -86866,6 +86814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -86884,8 +86833,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [16988] = 2, - ACTIONS(3739), 7, + [16905] = 2, + ACTIONS(3825), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86893,7 +86842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3737), 43, + ACTIONS(3823), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86937,8 +86886,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17043] = 2, - ACTIONS(3749), 7, + [16960] = 2, + ACTIONS(3829), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -86946,7 +86895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3747), 43, + ACTIONS(3827), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -86990,11 +86939,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17098] = 3, - ACTIONS(3755), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3753), 7, + [17015] = 2, + ACTIONS(383), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87002,17 +86948,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3751), 41, + ACTIONS(381), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -87026,6 +86973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -87044,8 +86992,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17155] = 2, - ACTIONS(3867), 7, + [17070] = 2, + ACTIONS(3833), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87053,7 +87001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3865), 43, + ACTIONS(3831), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87097,11 +87045,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17210] = 3, - ACTIONS(3762), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3760), 7, + [17125] = 3, + STATE(907), 1, + sym__newline, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87109,17 +87056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3758), 41, + ACTIONS(3634), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -87133,6 +87080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -87151,8 +87099,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17267] = 2, - ACTIONS(3871), 7, + [17182] = 2, + ACTIONS(3709), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87160,7 +87108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3869), 43, + ACTIONS(3707), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87204,8 +87152,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17322] = 2, - ACTIONS(3875), 7, + [17237] = 2, + ACTIONS(3837), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87213,7 +87161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3873), 43, + ACTIONS(3835), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87257,10 +87205,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17377] = 3, - ACTIONS(2330), 1, - sym__last_token_punctuation, - ACTIONS(2883), 7, + [17292] = 3, + ACTIONS(3839), 1, + sym__emphasis_close_star, + ACTIONS(3757), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87268,7 +87216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2045), 42, + ACTIONS(3755), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87311,8 +87259,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17434] = 2, - ACTIONS(3767), 7, + [17349] = 3, + ACTIONS(3841), 1, + sym__emphasis_close_underscore, + ACTIONS(3740), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87320,11 +87270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3765), 43, + ACTIONS(3738), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87364,8 +87313,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17489] = 2, - ACTIONS(1848), 7, + [17406] = 2, + ACTIONS(2029), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87373,7 +87322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1846), 43, + ACTIONS(2027), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87417,8 +87366,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17544] = 2, - ACTIONS(3879), 7, + [17461] = 2, + ACTIONS(3821), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87426,7 +87375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3877), 43, + ACTIONS(3819), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87470,10 +87419,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17599] = 3, - ACTIONS(3881), 1, - sym__emphasis_close_star, - ACTIONS(3733), 7, + [17516] = 2, + ACTIONS(3785), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87481,10 +87428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3731), 42, + ACTIONS(3783), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87524,8 +87472,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17656] = 2, - ACTIONS(2058), 7, + [17571] = 2, + ACTIONS(3845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87533,11 +87481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2056), 43, + ACTIONS(3843), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87577,8 +87525,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17711] = 2, - ACTIONS(2066), 7, + [17626] = 2, + ACTIONS(3805), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87586,11 +87534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2064), 43, + ACTIONS(3803), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87630,8 +87578,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17766] = 2, - ACTIONS(3771), 7, + [17681] = 2, + ACTIONS(3849), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87639,7 +87587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3769), 43, + ACTIONS(3847), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87683,16 +87631,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17821] = 2, - ACTIONS(3813), 7, + [17736] = 6, + ACTIONS(3851), 1, + sym__whitespace_ge_2, + ACTIONS(3854), 1, + aux_sym__whitespace_token1, + ACTIONS(3857), 1, + aux_sym__newline_token1, + STATE(1482), 2, + sym__whitespace, + sym__newline, + ACTIONS(2938), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3811), 43, + ACTIONS(2698), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87717,8 +87673,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -87732,12 +87686,10 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [17876] = 2, - ACTIONS(3848), 7, + [17799] = 2, + ACTIONS(3817), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87745,7 +87697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3846), 43, + ACTIONS(3815), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87789,8 +87741,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17931] = 2, - ACTIONS(3717), 7, + [17854] = 2, + ACTIONS(3721), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87798,11 +87750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3715), 43, + ACTIONS(3719), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87842,8 +87794,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [17986] = 2, - ACTIONS(3879), 7, + [17909] = 4, + ACTIONS(3668), 1, + sym__last_token_punctuation, + ACTIONS(3860), 1, + anon_sym_LBRACK, + ACTIONS(2989), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87851,11 +87807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3877), 43, + ACTIONS(2432), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -87876,7 +87831,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -87895,8 +87849,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18041] = 2, - ACTIONS(3852), 7, + [17968] = 2, + ACTIONS(3864), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -87904,7 +87858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3850), 43, + ACTIONS(3862), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -87948,30 +87902,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18096] = 5, - ACTIONS(3883), 1, - sym__line_ending, - STATE(897), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(3885), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(386), 3, + [18023] = 2, + ACTIONS(3740), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(384), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(3738), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87987,6 +87936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -87995,17 +87945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18157] = 2, - ACTIONS(1836), 7, + [18078] = 2, + ACTIONS(383), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88013,11 +87964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1834), 43, + ACTIONS(381), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88057,8 +88008,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18212] = 2, - ACTIONS(3856), 7, + [18133] = 2, + ACTIONS(3868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88066,7 +88017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3854), 43, + ACTIONS(3866), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88110,8 +88061,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18267] = 2, - ACTIONS(3844), 7, + [18188] = 2, + ACTIONS(3757), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88119,7 +88070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3842), 43, + ACTIONS(3755), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88163,8 +88114,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18322] = 2, - ACTIONS(3889), 7, + [18243] = 2, + ACTIONS(3872), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88172,11 +88123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3887), 43, + ACTIONS(3870), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88216,8 +88167,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18377] = 2, - ACTIONS(3893), 7, + [18298] = 6, + ACTIONS(3632), 1, + sym__last_token_punctuation, + ACTIONS(3874), 1, + anon_sym_SLASH, + ACTIONS(3877), 1, + sym__word_no_digit, + STATE(1815), 1, + sym__tag_name, + ACTIONS(2938), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88225,11 +88184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3891), 43, + ACTIONS(2698), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88243,15 +88202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH, anon_sym_DOT, - anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -88266,11 +88222,10 @@ static const uint16_t ts_small_parse_table[] = { sym_entity_reference, sym_numeric_character_reference, sym__whitespace_ge_2, - sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18432] = 2, - ACTIONS(3897), 7, + [18361] = 2, + ACTIONS(1971), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88278,11 +88233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3895), 43, + ACTIONS(1969), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88322,8 +88277,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18487] = 2, - ACTIONS(3901), 7, + [18416] = 2, + ACTIONS(3701), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88331,7 +88286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3899), 43, + ACTIONS(3699), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88375,8 +88330,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18542] = 2, - ACTIONS(3905), 7, + [18471] = 2, + ACTIONS(3685), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88384,7 +88339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3903), 43, + ACTIONS(3683), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88428,8 +88383,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18597] = 2, - ACTIONS(3860), 7, + [18526] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88437,11 +88392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3858), 43, + ACTIONS(3799), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -88481,8 +88436,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18652] = 2, - ACTIONS(3909), 7, + [18581] = 2, + ACTIONS(3829), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88490,7 +88445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3907), 43, + ACTIONS(3827), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88534,8 +88489,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18707] = 2, - ACTIONS(3913), 7, + [18636] = 2, + ACTIONS(3845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88543,7 +88498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3911), 43, + ACTIONS(3843), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88587,8 +88542,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18762] = 2, - ACTIONS(3917), 7, + [18691] = 2, + ACTIONS(3882), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88596,7 +88551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3915), 43, + ACTIONS(3880), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88640,8 +88595,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18817] = 2, - ACTIONS(3921), 7, + [18746] = 2, + ACTIONS(3849), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88649,7 +88604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3919), 43, + ACTIONS(3847), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88693,8 +88648,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18872] = 2, - ACTIONS(1836), 7, + [18801] = 4, + ACTIONS(3632), 1, + sym__last_token_punctuation, + ACTIONS(3884), 1, + anon_sym_LBRACK, + ACTIONS(2938), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88702,7 +88661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1834), 43, + ACTIONS(2698), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88727,8 +88686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -88746,8 +88703,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18927] = 2, - ACTIONS(3925), 7, + [18860] = 2, + ACTIONS(3888), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88755,7 +88712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3923), 43, + ACTIONS(3886), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88799,8 +88756,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [18982] = 2, - ACTIONS(1844), 7, + [18915] = 2, + ACTIONS(3892), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88808,7 +88765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1842), 43, + ACTIONS(3890), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88852,8 +88809,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19037] = 2, - ACTIONS(3929), 7, + [18970] = 4, + ACTIONS(2409), 1, + sym__last_token_punctuation, + ACTIONS(3894), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(2862), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88861,18 +88823,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3927), 43, + ACTIONS(2068), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -88886,7 +88846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -88905,8 +88864,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19092] = 2, - ACTIONS(1852), 7, + [19029] = 2, + ACTIONS(3693), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88914,7 +88873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1850), 43, + ACTIONS(3691), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -88958,8 +88917,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19147] = 2, - ACTIONS(3933), 7, + [19084] = 2, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -88967,7 +88926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3931), 43, + ACTIONS(3634), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89011,8 +88970,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19202] = 2, - ACTIONS(2989), 7, + [19139] = 2, + ACTIONS(3736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89020,7 +88979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2987), 43, + ACTIONS(3734), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89064,8 +89023,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19257] = 2, - ACTIONS(3937), 7, + [19194] = 2, + ACTIONS(2039), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89073,11 +89032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3935), 43, + ACTIONS(2037), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89117,8 +89076,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19312] = 2, - ACTIONS(3871), 7, + [19249] = 2, + ACTIONS(2039), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89126,7 +89085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3869), 43, + ACTIONS(2037), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89170,8 +89129,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19367] = 2, - ACTIONS(3875), 7, + [19304] = 2, + ACTIONS(3899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89179,11 +89138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3873), 43, + ACTIONS(3897), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89223,8 +89182,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19422] = 2, - ACTIONS(2062), 7, + [19359] = 2, + ACTIONS(3732), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89232,11 +89191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2060), 43, + ACTIONS(3730), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89276,8 +89235,65 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, + [19414] = 6, + ACTIONS(3668), 1, + sym__last_token_punctuation, + ACTIONS(3901), 1, + anon_sym_SLASH, + ACTIONS(3904), 1, + sym__word_no_digit, + STATE(1799), 1, + sym__tag_name, + ACTIONS(2989), 7, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(2432), 39, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__digits, + aux_sym__newline_token1, [19477] = 2, - ACTIONS(2016), 7, + ACTIONS(3909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89285,11 +89301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2014), 43, + ACTIONS(3907), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89330,7 +89346,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [19532] = 2, - ACTIONS(3889), 7, + ACTIONS(3837), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89338,7 +89354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3887), 43, + ACTIONS(3835), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89383,7 +89399,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [19587] = 2, - ACTIONS(3893), 7, + ACTIONS(2029), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89391,7 +89407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3891), 43, + ACTIONS(2027), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89436,7 +89452,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [19642] = 2, - ACTIONS(3897), 7, + ACTIONS(3909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89444,7 +89460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3895), 43, + ACTIONS(3907), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89489,7 +89505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [19697] = 2, - ACTIONS(3941), 7, + ACTIONS(3913), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89497,11 +89513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3939), 43, + ACTIONS(3911), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89542,7 +89558,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [19752] = 2, - ACTIONS(3945), 7, + ACTIONS(3917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89550,7 +89566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3943), 43, + ACTIONS(3915), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89595,7 +89611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [19807] = 2, - ACTIONS(3949), 7, + ACTIONS(3921), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89603,7 +89619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3947), 43, + ACTIONS(3919), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89648,7 +89664,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [19862] = 2, - ACTIONS(3953), 7, + ACTIONS(2087), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89656,11 +89672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3951), 43, + ACTIONS(2085), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89700,10 +89716,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19917] = 3, - ACTIONS(3955), 1, - sym__emphasis_close_star, - ACTIONS(3733), 7, + [19917] = 2, + ACTIONS(2081), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89711,10 +89725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3731), 42, + ACTIONS(2079), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89754,8 +89769,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [19974] = 2, - ACTIONS(3901), 7, + [19972] = 2, + ACTIONS(3899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89763,7 +89778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3899), 43, + ACTIONS(3897), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -89807,8 +89822,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20029] = 2, - ACTIONS(3733), 7, + [20027] = 2, + ACTIONS(3917), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89816,11 +89831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3731), 43, + ACTIONS(3915), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89860,12 +89875,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20084] = 4, - ACTIONS(2430), 1, - sym__last_token_punctuation, - ACTIONS(3957), 1, - anon_sym_LBRACK, - ACTIONS(2959), 7, + [20082] = 2, + ACTIONS(3774), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89873,62 +89884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(938), 41, + ACTIONS(3772), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [20143] = 2, - ACTIONS(2066), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(2064), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -89968,8 +89928,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20198] = 2, - ACTIONS(3829), 7, + [20137] = 2, + ACTIONS(3864), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -89977,7 +89937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3827), 43, + ACTIONS(3862), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90021,8 +89981,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20253] = 2, - ACTIONS(3905), 7, + [20192] = 2, + ACTIONS(3809), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90030,11 +89990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3903), 43, + ACTIONS(3807), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90074,8 +90034,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20308] = 2, - ACTIONS(3909), 7, + [20247] = 2, + ACTIONS(3825), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90083,11 +90043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3907), 43, + ACTIONS(3823), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90127,8 +90087,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20363] = 2, - ACTIONS(3913), 7, + [20302] = 2, + ACTIONS(3921), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90136,7 +90096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3911), 43, + ACTIONS(3919), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90180,8 +90140,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20418] = 2, - ACTIONS(3725), 7, + [20357] = 2, + ACTIONS(1971), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90189,7 +90149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3723), 43, + ACTIONS(1969), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90233,8 +90193,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20473] = 2, - ACTIONS(3823), 7, + [20412] = 2, + ACTIONS(3002), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90242,7 +90202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3821), 43, + ACTIONS(3000), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90286,8 +90246,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20528] = 2, - ACTIONS(3962), 7, + [20467] = 4, + ACTIONS(3673), 1, + sym__last_token_punctuation, + ACTIONS(3923), 1, + anon_sym_LBRACK, + ACTIONS(2955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90295,7 +90259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3960), 43, + ACTIONS(2800), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90320,8 +90284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -90339,8 +90301,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20583] = 2, - ACTIONS(3966), 7, + [20526] = 2, + ACTIONS(1741), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90348,7 +90310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3964), 43, + ACTIONS(1739), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90392,8 +90354,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20638] = 2, - ACTIONS(3970), 7, + [20581] = 2, + ACTIONS(3927), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90401,7 +90363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3968), 43, + ACTIONS(3925), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90445,8 +90407,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20693] = 2, - ACTIONS(3921), 7, + [20636] = 2, + ACTIONS(3931), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90454,7 +90416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3919), 43, + ACTIONS(3929), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90498,61 +90460,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20748] = 2, - ACTIONS(3974), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3972), 43, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, + [20691] = 4, + ACTIONS(2353), 1, + sym__last_token_punctuation, + ACTIONS(3933), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [20803] = 2, - ACTIONS(3974), 7, + ACTIONS(2898), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90560,7 +90473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3972), 43, + ACTIONS(1122), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90585,7 +90498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -90603,9 +90515,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [20858] = 2, - ACTIONS(3652), 7, + [20750] = 2, + ACTIONS(3938), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90613,7 +90524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 43, + ACTIONS(3936), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90657,8 +90568,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20913] = 2, - ACTIONS(1848), 7, + [20805] = 2, + ACTIONS(3892), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90666,11 +90577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1846), 43, + ACTIONS(3890), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90710,8 +90621,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [20968] = 2, - ACTIONS(396), 7, + [20860] = 2, + ACTIONS(3872), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90719,11 +90630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(394), 43, + ACTIONS(3870), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90763,8 +90674,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21023] = 2, - ACTIONS(3970), 7, + [20915] = 2, + ACTIONS(3778), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90772,11 +90683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3968), 43, + ACTIONS(3776), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90816,8 +90727,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21078] = 2, - ACTIONS(2989), 7, + [20970] = 2, + ACTIONS(3942), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90825,7 +90736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2987), 43, + ACTIONS(3940), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90869,8 +90780,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21133] = 2, - ACTIONS(3966), 7, + [21025] = 2, + ACTIONS(2173), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90878,11 +90789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3964), 43, + ACTIONS(2171), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -90922,8 +90833,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21188] = 2, - ACTIONS(1968), 7, + [21080] = 2, + ACTIONS(2025), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90931,7 +90842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1966), 43, + ACTIONS(2023), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -90975,8 +90886,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21243] = 2, - ACTIONS(3925), 7, + [21135] = 2, + ACTIONS(1837), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -90984,7 +90895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3923), 43, + ACTIONS(1835), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91028,8 +90939,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21298] = 2, - ACTIONS(3929), 7, + [21190] = 2, + ACTIONS(2177), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91037,11 +90948,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3927), 43, + ACTIONS(2175), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91081,8 +90992,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21353] = 2, - ACTIONS(3745), 7, + [21245] = 2, + ACTIONS(3931), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91090,11 +91001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3743), 43, + ACTIONS(3929), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91134,8 +91045,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21408] = 2, - ACTIONS(3962), 7, + [21300] = 2, + ACTIONS(3868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91143,11 +91054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3960), 43, + ACTIONS(3866), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91187,8 +91098,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21463] = 2, - ACTIONS(1852), 7, + [21355] = 2, + ACTIONS(3689), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91196,11 +91107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1850), 43, + ACTIONS(3687), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91240,8 +91151,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21518] = 2, - ACTIONS(3933), 7, + [21410] = 2, + ACTIONS(3882), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91249,11 +91160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3931), 43, + ACTIONS(3880), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91293,8 +91204,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21573] = 2, - ACTIONS(3837), 7, + [21465] = 2, + ACTIONS(3813), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91302,11 +91213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3835), 43, + ACTIONS(3811), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91346,77 +91257,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21628] = 6, - ACTIONS(3976), 1, + [21520] = 6, + ACTIONS(3944), 1, sym__whitespace_ge_2, - ACTIONS(3979), 1, + ACTIONS(3947), 1, aux_sym__whitespace_token1, - ACTIONS(3982), 1, + ACTIONS(3950), 1, aux_sym__newline_token1, - STATE(1509), 2, + STATE(1540), 2, sym__whitespace, sym__newline, - ACTIONS(2997), 6, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - ACTIONS(2509), 39, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - [21691] = 2, - ACTIONS(3941), 7, + ACTIONS(2989), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3939), 43, + ACTIONS(2432), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91437,7 +91298,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -91452,12 +91312,10 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [21746] = 2, - ACTIONS(3833), 7, + [21583] = 2, + ACTIONS(3927), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91465,7 +91323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3831), 43, + ACTIONS(3925), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91509,16 +91367,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21801] = 6, - ACTIONS(3662), 1, + [21638] = 6, + ACTIONS(3673), 1, sym__last_token_punctuation, - ACTIONS(3985), 1, + ACTIONS(3953), 1, anon_sym_SLASH, - ACTIONS(3988), 1, + ACTIONS(3956), 1, sym__word_no_digit, - STATE(1816), 1, + STATE(1800), 1, sym__tag_name, - ACTIONS(2997), 7, + ACTIONS(2955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91526,10 +91384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2509), 39, + ACTIONS(2800), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91549,7 +91408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -91566,10 +91424,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__digits, aux_sym__newline_token1, - [21864] = 3, - STATE(905), 1, - sym__newline, - ACTIONS(3652), 7, + [21701] = 2, + ACTIONS(3942), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91577,10 +91433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 42, + ACTIONS(3940), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91620,12 +91477,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21921] = 4, - ACTIONS(3662), 1, - sym__last_token_punctuation, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(2997), 7, + [21756] = 2, + ACTIONS(3697), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91633,10 +91486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2509), 41, + ACTIONS(3695), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91657,6 +91511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -91675,8 +91530,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [21980] = 2, - ACTIONS(3937), 7, + [21811] = 2, + ACTIONS(3913), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91684,7 +91539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3935), 43, + ACTIONS(3911), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91728,8 +91583,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22035] = 2, - ACTIONS(3917), 7, + [21866] = 2, + ACTIONS(3961), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91737,11 +91592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3915), 43, + ACTIONS(3959), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91781,8 +91636,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22090] = 2, - ACTIONS(3945), 7, + [21921] = 2, + ACTIONS(3705), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91790,7 +91645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3943), 43, + ACTIONS(3703), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91834,10 +91689,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22145] = 3, - ACTIONS(3993), 1, - sym__emphasis_close_underscore, - ACTIONS(3739), 7, + [21976] = 2, + ACTIONS(3965), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91845,10 +91698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3737), 42, + ACTIONS(3963), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91888,8 +91742,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22202] = 2, - ACTIONS(3949), 7, + [22031] = 2, + ACTIONS(3888), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91897,7 +91751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3947), 43, + ACTIONS(3886), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -91941,8 +91795,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22257] = 2, - ACTIONS(3953), 7, + [22086] = 2, + ACTIONS(3961), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -91950,11 +91804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3951), 43, + ACTIONS(3959), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -91994,8 +91848,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22312] = 2, - ACTIONS(1844), 7, + [22141] = 2, + ACTIONS(3763), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92003,11 +91857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1842), 43, + ACTIONS(3761), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92047,10 +91901,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22367] = 3, - ACTIONS(3995), 1, - sym__emphasis_close_underscore, - ACTIONS(3739), 7, + [22196] = 2, + ACTIONS(3767), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92058,10 +91910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3737), 42, + ACTIONS(3765), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92101,8 +91954,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22424] = 2, - ACTIONS(3729), 7, + [22251] = 2, + ACTIONS(3938), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92110,10 +91963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3727), 42, + ACTIONS(3936), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92153,19 +92007,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22478] = 2, - ACTIONS(3717), 7, + [22306] = 6, + ACTIONS(3967), 1, + sym__whitespace_ge_2, + ACTIONS(3970), 1, + aux_sym__whitespace_token1, + ACTIONS(3973), 1, + aux_sym__newline_token1, + STATE(1547), 2, + sym__whitespace, + sym__newline, + ACTIONS(2955), 6, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3715), 42, + ACTIONS(2800), 39, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92186,8 +92049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -92201,12 +92062,10 @@ static const uint16_t ts_small_parse_table[] = { sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [22532] = 2, - ACTIONS(3999), 7, + [22369] = 2, + ACTIONS(3833), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92214,11 +92073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3997), 42, + ACTIONS(3831), 43, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92257,8 +92116,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22586] = 2, - ACTIONS(4003), 7, + aux_sym__newline_token1, + [22424] = 2, + ACTIONS(3778), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92266,11 +92126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4001), 42, + ACTIONS(3776), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92309,25 +92168,43 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22640] = 2, - ACTIONS(4007), 7, - anon_sym_AMP, + aux_sym__newline_token1, + [22478] = 8, + ACTIONS(3980), 1, + anon_sym_RBRACK, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4005), 42, + STATE(900), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3982), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92343,8 +92220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -92352,17 +92227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [22694] = 2, - ACTIONS(4011), 7, + [22544] = 4, + ACTIONS(3748), 1, + anon_sym_LPAREN, + ACTIONS(3990), 1, + anon_sym_LBRACK, + ACTIONS(3746), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92370,18 +92240,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4009), 42, + ACTIONS(3744), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -92395,7 +92263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -92413,8 +92280,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22748] = 2, - ACTIONS(4015), 7, + aux_sym__newline_token1, + [22602] = 2, + ACTIONS(3837), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92422,11 +92290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4013), 42, + ACTIONS(3835), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92465,24 +92332,43 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [22802] = 2, - ACTIONS(3925), 7, - anon_sym_AMP, + aux_sym__newline_token1, + [22656] = 8, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(3992), 1, + anon_sym_RBRACK, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3923), 42, + STATE(850), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3994), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92498,8 +92384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -92507,18 +92391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [22856] = 2, - ACTIONS(3929), 7, + [22722] = 2, + ACTIONS(3709), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92526,7 +92400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3927), 42, + ACTIONS(3707), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92569,22 +92443,36 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [22910] = 4, - STATE(832), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(522), 3, + [22776] = 8, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(3996), 1, + anon_sym_RBRACK, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(520), 43, - sym__split_token, - sym__soft_line_break_marker, + STATE(850), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3994), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92606,7 +92494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -92614,51 +92501,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [22842] = 2, + ACTIONS(2177), 7, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [22968] = 8, - ACTIONS(4024), 1, - anon_sym_RBRACK, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4022), 2, - anon_sym_LT, - anon_sym_BSLASH, - STATE(838), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4026), 10, + ACTIONS(2175), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4020), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92674,6 +92534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -92681,8 +92543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [23034] = 2, - ACTIONS(3933), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [22896] = 2, + ACTIONS(4000), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92690,10 +92562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3931), 42, + ACTIONS(3998), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92732,9 +92605,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23088] = 2, - ACTIONS(3725), 7, + [22950] = 2, + ACTIONS(4004), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92742,10 +92614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3723), 42, + ACTIONS(4002), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92784,13 +92657,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23142] = 4, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_LBRACK, - ACTIONS(3760), 7, + [23004] = 2, + ACTIONS(4008), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92798,7 +92666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3758), 40, + ACTIONS(4006), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -92809,6 +92677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -92822,6 +92691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -92838,9 +92709,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23200] = 2, - ACTIONS(3941), 7, + [23058] = 2, + ACTIONS(4012), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92848,10 +92718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3939), 42, + ACTIONS(4010), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -92890,43 +92761,25 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23254] = 8, - ACTIONS(4042), 1, - anon_sym_RBRACK, - ACTIONS(4047), 1, - sym__whitespace_ge_2, - ACTIONS(4050), 1, - aux_sym__whitespace_token1, - ACTIONS(4053), 1, - aux_sym__newline_token1, - ACTIONS(4039), 2, + [23112] = 2, + ACTIONS(4016), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(838), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4044), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4036), 28, + aux_sym__whitespace_token1, + ACTIONS(4014), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92942,6 +92795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -92949,8 +92804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [23320] = 2, - ACTIONS(3913), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [23166] = 2, + ACTIONS(2173), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -92958,7 +92822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3911), 42, + ACTIONS(2171), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93001,8 +92865,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23374] = 2, - ACTIONS(3945), 7, + [23220] = 2, + ACTIONS(3821), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93010,7 +92874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3943), 42, + ACTIONS(3819), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93053,8 +92917,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23428] = 2, - ACTIONS(3949), 7, + [23274] = 3, + ACTIONS(4022), 1, + sym__emphasis_close_underscore, + ACTIONS(4020), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93062,7 +92928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3947), 42, + ACTIONS(4018), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93104,11 +92970,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23482] = 3, - ACTIONS(3648), 1, - sym__last_token_punctuation, - ACTIONS(2921), 7, + [23330] = 3, + ACTIONS(4028), 1, + sym__emphasis_close_star, + ACTIONS(4026), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93116,11 +92981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2825), 41, + ACTIONS(4024), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93141,6 +93005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -93157,9 +93023,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [23538] = 2, - ACTIONS(4058), 7, + [23386] = 2, + ACTIONS(3774), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93167,11 +93032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4056), 42, + ACTIONS(3772), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93210,24 +93074,43 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [23592] = 2, - ACTIONS(3953), 7, - anon_sym_AMP, + aux_sym__newline_token1, + [23440] = 8, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(4030), 1, + anon_sym_RBRACK, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(3951), 42, + STATE(930), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4032), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93243,8 +93126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -93252,18 +93133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [23646] = 2, - ACTIONS(3652), 7, + [23506] = 2, + ACTIONS(1971), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93271,7 +93142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3650), 42, + ACTIONS(1969), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93314,8 +93185,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23700] = 2, - ACTIONS(3745), 7, + [23560] = 2, + ACTIONS(3817), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93323,7 +93194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3743), 42, + ACTIONS(3815), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93366,8 +93237,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23754] = 2, - ACTIONS(396), 7, + [23614] = 2, + ACTIONS(3813), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93375,7 +93246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(394), 42, + ACTIONS(3811), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93418,8 +93289,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23808] = 2, - ACTIONS(3999), 7, + [23668] = 2, + ACTIONS(3805), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93427,7 +93298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3997), 42, + ACTIONS(3803), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93470,25 +93341,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [23862] = 8, - ACTIONS(4028), 1, + [23722] = 8, + ACTIONS(3984), 1, sym__whitespace_ge_2, - ACTIONS(4030), 1, + ACTIONS(3986), 1, aux_sym__whitespace_token1, - ACTIONS(4032), 1, + ACTIONS(3988), 1, aux_sym__newline_token1, - ACTIONS(4060), 1, + ACTIONS(4034), 1, anon_sym_RBRACK, - ACTIONS(4022), 2, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - STATE(878), 5, + STATE(900), 5, sym__whitespace, sym__word, sym__newline, sym__text_inline_no_link, aux_sym_link_label_repeat1, - ACTIONS(4062), 10, + ACTIONS(3982), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93499,7 +93370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(4020), 28, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93528,129 +93399,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [23928] = 2, - ACTIONS(4003), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4001), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, + [23788] = 8, + ACTIONS(3984), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [23982] = 2, - ACTIONS(4007), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, + ACTIONS(3986), 1, aux_sym__whitespace_token1, - ACTIONS(4005), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [24036] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, + ACTIONS(3988), 1, aux_sym__newline_token1, - ACTIONS(4064), 1, + ACTIONS(4036), 1, anon_sym_RBRACK, - ACTIONS(4022), 2, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - STATE(878), 5, + STATE(930), 5, sym__whitespace, sym__word, sym__newline, sym__text_inline_no_link, aux_sym_link_label_repeat1, - ACTIONS(4062), 10, + ACTIONS(4032), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93661,7 +93428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(4020), 28, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -93690,10 +93457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [24102] = 3, - ACTIONS(4070), 1, - sym__emphasis_close_star, - ACTIONS(4068), 7, + [23854] = 2, + ACTIONS(3864), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93701,7 +93466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4066), 41, + ACTIONS(3862), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93743,10 +93508,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24158] = 3, - ACTIONS(4076), 1, - sym__emphasis_close_underscore, - ACTIONS(4074), 7, + aux_sym__newline_token1, + [23908] = 2, + ACTIONS(3809), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93754,7 +93518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4072), 41, + ACTIONS(3807), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -93796,131 +93560,43 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [24214] = 2, - ACTIONS(4011), 7, - anon_sym_AMP, + aux_sym__newline_token1, + [23962] = 8, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(4038), 1, + anon_sym_RBRACK, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4009), 42, + STATE(900), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3982), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [24268] = 2, - ACTIONS(4015), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4013), 42, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24322] = 3, - ACTIONS(3699), 1, - sym__last_token_punctuation, - ACTIONS(2940), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(2641), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_star, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93943,18 +93619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [24378] = 2, - ACTIONS(3962), 7, + [24028] = 2, + ACTIONS(2029), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -93962,7 +93628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3960), 42, + ACTIONS(2027), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94005,8 +93671,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24432] = 2, - ACTIONS(3909), 7, + [24082] = 2, + ACTIONS(2039), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94014,7 +93680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3907), 42, + ACTIONS(2037), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94057,8 +93723,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24486] = 2, - ACTIONS(3966), 7, + [24136] = 2, + ACTIONS(4026), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94066,10 +93732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3964), 42, + ACTIONS(4024), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94108,9 +93775,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24540] = 2, - ACTIONS(3905), 7, + [24190] = 2, + ACTIONS(3882), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94118,7 +93784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3903), 42, + ACTIONS(3880), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94161,8 +93827,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24594] = 2, - ACTIONS(3901), 7, + [24244] = 3, + ACTIONS(3668), 1, + sym__last_token_punctuation, + ACTIONS(2989), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94170,7 +93838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3899), 42, + ACTIONS(2432), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94194,7 +93862,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -94213,8 +93880,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24648] = 2, - ACTIONS(3897), 7, + [24300] = 2, + ACTIONS(4042), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94222,10 +93889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3895), 42, + ACTIONS(4040), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94264,9 +93932,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24702] = 2, - ACTIONS(3775), 7, + [24354] = 2, + ACTIONS(4042), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94274,7 +93941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3773), 42, + ACTIONS(4040), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94317,8 +93984,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24756] = 2, - ACTIONS(3779), 7, + [24408] = 3, + ACTIONS(4044), 1, + sym__emphasis_close_star, + ACTIONS(4026), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94326,7 +93995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3777), 42, + ACTIONS(4024), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94368,9 +94037,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [24810] = 2, - ACTIONS(3893), 7, + [24464] = 2, + ACTIONS(3705), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94378,7 +94046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3891), 42, + ACTIONS(3703), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94421,8 +94089,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24864] = 2, - ACTIONS(3889), 7, + [24518] = 2, + ACTIONS(3636), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94430,7 +94098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3887), 42, + ACTIONS(3634), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94473,8 +94141,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24918] = 2, - ACTIONS(1852), 7, + [24572] = 2, + ACTIONS(3736), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94482,7 +94150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1850), 42, + ACTIONS(3734), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94525,12 +94193,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [24972] = 4, - ACTIONS(3762), 1, + [24626] = 4, + ACTIONS(3748), 1, anon_sym_LPAREN, - ACTIONS(4034), 1, + ACTIONS(3990), 1, anon_sym_LBRACK, - ACTIONS(3760), 7, + ACTIONS(3746), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94538,10 +94206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3758), 40, + ACTIONS(3744), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94561,7 +94230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -94579,8 +94247,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25030] = 2, - ACTIONS(3974), 7, + [24684] = 2, + ACTIONS(4020), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94588,10 +94256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3972), 42, + ACTIONS(4018), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94630,9 +94299,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [25084] = 2, - ACTIONS(3749), 7, + [24738] = 3, + ACTIONS(4046), 1, + sym__emphasis_close_underscore, + ACTIONS(4020), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94640,7 +94310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3747), 42, + ACTIONS(4018), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94682,9 +94352,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [25138] = 2, - ACTIONS(3721), 7, + [24794] = 2, + ACTIONS(4016), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94692,10 +94361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3719), 42, + ACTIONS(4014), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94734,11 +94404,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [25192] = 3, - ACTIONS(4078), 1, - sym__emphasis_close_underscore, - ACTIONS(4074), 7, + [24848] = 2, + ACTIONS(3701), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94746,7 +94413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4072), 41, + ACTIONS(3699), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94788,8 +94455,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25248] = 2, - ACTIONS(4074), 7, + aux_sym__newline_token1, + [24902] = 2, + ACTIONS(4050), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94797,11 +94465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4072), 42, + ACTIONS(4048), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94840,8 +94507,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25302] = 2, - ACTIONS(2066), 7, + aux_sym__newline_token1, + [24956] = 2, + ACTIONS(3685), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94849,7 +94517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2064), 42, + ACTIONS(3683), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -94892,8 +94560,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25356] = 2, - ACTIONS(4068), 7, + [25010] = 2, + ACTIONS(3801), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94901,11 +94569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4066), 42, + ACTIONS(3799), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -94944,11 +94611,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25410] = 3, - ACTIONS(3755), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3753), 7, + aux_sym__newline_token1, + [25064] = 2, + ACTIONS(4012), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -94956,16 +94621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3751), 40, + ACTIONS(4010), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -94979,6 +94646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -94996,43 +94664,24 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [25466] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4080), 1, - anon_sym_RBRACK, - ACTIONS(4022), 2, + [25118] = 2, + ACTIONS(3917), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(838), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4026), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4020), 28, + aux_sym__whitespace_token1, + ACTIONS(3915), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95048,6 +94697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -95055,8 +94706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [25532] = 2, - ACTIONS(3970), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [25172] = 2, + ACTIONS(3921), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95064,7 +94725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3968), 42, + ACTIONS(3919), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95107,11 +94768,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25586] = 3, - ACTIONS(3762), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3760), 7, + [25226] = 2, + ACTIONS(3829), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95119,7 +94777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3758), 40, + ACTIONS(3827), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95129,6 +94787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -95142,6 +94801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -95160,8 +94820,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25642] = 2, - ACTIONS(3767), 7, + [25280] = 2, + ACTIONS(3845), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95169,7 +94829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3765), 42, + ACTIONS(3843), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95212,10 +94872,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25696] = 3, - ACTIONS(4082), 1, - sym__emphasis_close_star, - ACTIONS(4068), 7, + [25334] = 2, + ACTIONS(4008), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95223,10 +94881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4066), 41, + ACTIONS(4006), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95265,8 +94924,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [25752] = 2, - ACTIONS(2058), 7, + [25388] = 2, + ACTIONS(3927), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95274,7 +94933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2056), 42, + ACTIONS(3925), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95317,42 +94976,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25806] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4084), 1, - anon_sym_RBRACK, - ACTIONS(4022), 2, + [25442] = 2, + ACTIONS(3931), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(912), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4086), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4020), 28, + aux_sym__whitespace_token1, + ACTIONS(3929), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95368,6 +95009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -95375,8 +95018,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [25872] = 2, - ACTIONS(4058), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [25496] = 3, + ACTIONS(3673), 1, + sym__last_token_punctuation, + ACTIONS(2955), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95384,10 +95039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4056), 42, + ACTIONS(2800), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95408,8 +95064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -95427,42 +95081,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [25926] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4088), 1, - anon_sym_RBRACK, - ACTIONS(4022), 2, + [25552] = 2, + ACTIONS(3697), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(912), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4086), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4020), 28, + aux_sym__whitespace_token1, + ACTIONS(3695), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95478,6 +95114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -95485,8 +95123,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [25992] = 2, - ACTIONS(3823), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [25606] = 2, + ACTIONS(4004), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95494,7 +95142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3821), 42, + ACTIONS(4002), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95537,10 +95185,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26046] = 3, - ACTIONS(4090), 1, - sym__emphasis_close_star, - ACTIONS(4068), 7, + [25660] = 4, + ACTIONS(3748), 1, + anon_sym_LPAREN, + ACTIONS(3990), 1, + anon_sym_LBRACK, + ACTIONS(3746), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95548,17 +95198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4066), 41, + ACTIONS(3744), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -95572,8 +95222,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -95590,8 +95238,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26102] = 2, - ACTIONS(3829), 7, + aux_sym__newline_token1, + [25718] = 2, + ACTIONS(3763), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95599,7 +95248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3827), 42, + ACTIONS(3761), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95642,10 +95291,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26156] = 3, - ACTIONS(4092), 1, - sym__emphasis_close_underscore, - ACTIONS(4074), 7, + [25772] = 2, + ACTIONS(3767), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95653,7 +95300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4072), 41, + ACTIONS(3765), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95695,12 +95342,117 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [26212] = 4, - ACTIONS(3762), 1, + aux_sym__newline_token1, + [25826] = 4, + STATE(889), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4052), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(484), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(482), 43, + sym__split_token, + sym__soft_line_break_marker, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_LBRACK, - ACTIONS(3760), 7, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [25884] = 4, + STATE(905), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4054), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(484), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(482), 43, + sym__split_token, + sym__soft_line_break_marker, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [25942] = 2, + ACTIONS(4058), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95708,17 +95460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3758), 40, + ACTIONS(4056), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -95732,6 +95484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -95749,8 +95503,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26270] = 2, - ACTIONS(1848), 7, + [25996] = 2, + ACTIONS(4004), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95758,10 +95512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1846), 42, + ACTIONS(4002), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -95800,9 +95555,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [26324] = 2, - ACTIONS(4096), 7, + [26050] = 2, + ACTIONS(3833), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95810,7 +95564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4094), 42, + ACTIONS(3831), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95853,17 +95607,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26378] = 4, - STATE(924), 1, + [26104] = 4, + STATE(905), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4098), 2, + ACTIONS(4054), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 3, + ACTIONS(494), 3, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(512), 43, + ACTIONS(492), 43, sym__split_token, sym__soft_line_break_marker, sym__code_span_start, @@ -95907,8 +95661,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26436] = 2, - ACTIONS(3833), 7, + [26162] = 2, + ACTIONS(3785), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95916,7 +95670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3831), 42, + ACTIONS(3783), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -95959,8 +95713,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26490] = 2, - ACTIONS(3837), 7, + [26216] = 2, + ACTIONS(4000), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -95968,10 +95722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3835), 42, + ACTIONS(3998), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96010,29 +95765,27 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [26544] = 4, - STATE(832), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4100), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(514), 3, + [26270] = 3, + ACTIONS(3632), 1, + sym__last_token_punctuation, + ACTIONS(2938), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(512), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(2698), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96048,7 +95801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -96056,17 +95808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26602] = 2, - ACTIONS(1802), 7, + [26326] = 2, + ACTIONS(3825), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96074,7 +95827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1800), 42, + ACTIONS(3823), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96117,8 +95870,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26656] = 2, - ACTIONS(4104), 7, + [26380] = 2, + ACTIONS(383), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96126,7 +95879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4102), 42, + ACTIONS(381), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96169,8 +95922,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26710] = 2, - ACTIONS(4108), 7, + [26434] = 2, + ACTIONS(3899), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96178,7 +95931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4106), 42, + ACTIONS(3897), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96221,8 +95974,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26764] = 2, - ACTIONS(3875), 7, + [26488] = 2, + ACTIONS(3849), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96230,7 +95983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3873), 42, + ACTIONS(3847), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96273,42 +96026,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26818] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4110), 1, - anon_sym_RBRACK, - ACTIONS(4022), 2, + [26542] = 2, + ACTIONS(3938), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(833), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4112), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4020), 28, + aux_sym__whitespace_token1, + ACTIONS(3936), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96324,6 +96059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -96331,8 +96068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [26884] = 2, - ACTIONS(3937), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [26596] = 2, + ACTIONS(3942), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96340,7 +96087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3935), 42, + ACTIONS(3940), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96383,8 +96130,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26938] = 2, - ACTIONS(1836), 7, + [26650] = 2, + ACTIONS(3888), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96392,7 +96139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1834), 42, + ACTIONS(3886), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96435,8 +96182,66 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [26992] = 2, - ACTIONS(1844), 7, + [26704] = 8, + ACTIONS(4066), 1, + anon_sym_RBRACK, + ACTIONS(4071), 1, + sym__whitespace_ge_2, + ACTIONS(4074), 1, + aux_sym__whitespace_token1, + ACTIONS(4077), 1, + aux_sym__newline_token1, + ACTIONS(4063), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(900), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4068), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(4060), 28, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [26770] = 2, + ACTIONS(3721), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96444,7 +96249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1842), 42, + ACTIONS(3719), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96487,8 +96292,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27046] = 2, - ACTIONS(3871), 7, + [26824] = 2, + ACTIONS(1741), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96496,7 +96301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3869), 42, + ACTIONS(1739), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96539,8 +96344,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27100] = 2, - ACTIONS(3917), 7, + [26878] = 2, + ACTIONS(4000), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96548,7 +96353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3915), 42, + ACTIONS(3998), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96591,36 +96396,74 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27154] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4114), 1, - anon_sym_RBRACK, - ACTIONS(4022), 2, + [26932] = 2, + ACTIONS(4082), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(833), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4112), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4080), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4020), 28, + aux_sym__newline_token1, + [26986] = 4, + STATE(905), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4084), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(475), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(473), 43, + sym__split_token, + sym__soft_line_break_marker, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -96642,6 +96485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -96649,8 +96493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [27220] = 2, - ACTIONS(3860), 7, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [27044] = 2, + ACTIONS(1837), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96658,7 +96511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3858), 42, + ACTIONS(1835), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96701,8 +96554,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27274] = 2, - ACTIONS(3921), 7, + [27098] = 2, + ACTIONS(2025), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96710,7 +96563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3919), 42, + ACTIONS(2023), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96753,8 +96606,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27328] = 2, - ACTIONS(3844), 7, + [27152] = 2, + ACTIONS(3872), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96762,7 +96615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3842), 42, + ACTIONS(3870), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96805,42 +96658,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27382] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4116), 1, - anon_sym_RBRACK, - ACTIONS(4022), 2, + [27206] = 2, + ACTIONS(3892), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(838), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4026), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4020), 28, + aux_sym__whitespace_token1, + ACTIONS(3890), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96856,6 +96691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -96863,8 +96700,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [27448] = 2, - ACTIONS(2989), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [27260] = 2, + ACTIONS(3002), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96872,7 +96719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2987), 42, + ACTIONS(3000), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96915,8 +96762,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27502] = 2, - ACTIONS(1968), 7, + [27314] = 2, + ACTIONS(4089), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96924,7 +96771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(1966), 42, + ACTIONS(4087), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -96967,8 +96814,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27556] = 2, - ACTIONS(4015), 7, + [27368] = 2, + ACTIONS(4093), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -96976,11 +96823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4013), 42, + ACTIONS(4091), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97019,8 +96865,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27610] = 2, - ACTIONS(4011), 7, + aux_sym__newline_token1, + [27422] = 2, + ACTIONS(3753), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97028,11 +96875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4009), 42, + ACTIONS(3751), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97071,8 +96917,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27664] = 2, - ACTIONS(4007), 7, + aux_sym__newline_token1, + [27476] = 3, + ACTIONS(3748), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3746), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97080,18 +96930,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4005), 42, + ACTIONS(3744), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -97105,7 +96953,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -97123,8 +96970,12 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27718] = 2, - ACTIONS(3713), 7, + aux_sym__newline_token1, + [27532] = 3, + ACTIONS(3727), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3725), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97132,7 +96983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3711), 42, + ACTIONS(3723), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97142,7 +96993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -97156,7 +97006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -97175,8 +97024,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27772] = 2, - ACTIONS(3813), 7, + [27588] = 2, + ACTIONS(3713), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97184,7 +97033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3811), 42, + ACTIONS(3711), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97227,8 +97076,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27826] = 2, - ACTIONS(4003), 7, + [27642] = 2, + ACTIONS(3693), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97236,11 +97085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4001), 42, + ACTIONS(3691), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97279,8 +97127,9 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27880] = 2, - ACTIONS(3999), 7, + aux_sym__newline_token1, + [27696] = 2, + ACTIONS(4042), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97288,7 +97137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3997), 42, + ACTIONS(4040), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97331,8 +97180,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [27934] = 2, - ACTIONS(3771), 7, + [27750] = 2, + ACTIONS(2081), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97340,7 +97189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3769), 42, + ACTIONS(2079), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97383,8 +97232,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [27988] = 2, - ACTIONS(3706), 7, + [27804] = 2, + ACTIONS(2087), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97392,7 +97241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3704), 42, + ACTIONS(2085), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97435,19 +97284,18 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28042] = 4, - STATE(832), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4100), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(529), 3, + [27858] = 3, + ACTIONS(4095), 1, + sym__emphasis_close_underscore, + ACTIONS(4020), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(527), 43, - sym__split_token, - sym__soft_line_break_marker, + ACTIONS(4018), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97456,7 +97304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97472,6 +97319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -97480,17 +97328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [28100] = 2, - ACTIONS(4058), 7, + [27914] = 3, + ACTIONS(4097), 1, + sym__emphasis_close_star, + ACTIONS(4026), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97498,11 +97348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4056), 42, + ACTIONS(4024), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -97541,8 +97390,8 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [28154] = 2, - ACTIONS(2062), 7, + [27970] = 2, + ACTIONS(3717), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97550,7 +97399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2060), 42, + ACTIONS(3715), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97593,8 +97442,124 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28208] = 2, - ACTIONS(2016), 7, + [28024] = 8, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(4099), 1, + anon_sym_RBRACK, + ACTIONS(3978), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(824), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4101), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28090] = 8, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(4103), 1, + anon_sym_RBRACK, + ACTIONS(3978), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(824), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4101), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28156] = 2, + ACTIONS(3732), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97602,7 +97567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2014), 42, + ACTIONS(3730), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97645,8 +97610,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28262] = 2, - ACTIONS(4120), 7, + [28210] = 2, + ACTIONS(3961), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97654,7 +97619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4118), 42, + ACTIONS(3959), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97697,8 +97662,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28316] = 2, - ACTIONS(3856), 7, + [28264] = 2, + ACTIONS(3909), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97706,7 +97671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3854), 42, + ACTIONS(3907), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97749,8 +97714,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28370] = 2, - ACTIONS(3879), 7, + [28318] = 2, + ACTIONS(3913), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97758,7 +97723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3877), 42, + ACTIONS(3911), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97801,8 +97766,66 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28424] = 2, - ACTIONS(3852), 7, + [28372] = 8, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(4105), 1, + anon_sym_RBRACK, + ACTIONS(3978), 2, + anon_sym_LT, + anon_sym_BSLASH, + STATE(900), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(3982), 10, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [28438] = 2, + ACTIONS(3689), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97810,7 +97833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3850), 42, + ACTIONS(3687), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97853,8 +97876,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28478] = 2, - ACTIONS(3848), 7, + [28492] = 2, + ACTIONS(3868), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97862,7 +97885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(3846), 42, + ACTIONS(3866), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97905,42 +97928,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28532] = 8, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, - aux_sym__newline_token1, - ACTIONS(4122), 1, - anon_sym_RBRACK, - ACTIONS(4022), 2, + [28546] = 2, + ACTIONS(4016), 7, + anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, - STATE(838), 5, - sym__whitespace, - sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4026), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, anon_sym_LT_BANG_DASH_DASH, anon_sym_LT_QMARK, aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4020), 28, + aux_sym__whitespace_token1, + ACTIONS(4014), 42, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97956,6 +97961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -97963,10 +97970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28598] = 3, - ACTIONS(3662), 1, - sym__last_token_punctuation, - ACTIONS(2997), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [28600] = 2, + ACTIONS(4012), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -97974,7 +97989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(2509), 41, + ACTIONS(4010), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -97998,6 +98013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -98017,7 +98033,7 @@ static const uint16_t ts_small_parse_table[] = { sym__digits, aux_sym__newline_token1, [28654] = 2, - ACTIONS(4126), 7, + ACTIONS(4008), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98025,11 +98041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4124), 41, + ACTIONS(4006), 42, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98050,6 +98065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -98067,62 +98084,62 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [28707] = 21, - ACTIONS(396), 1, + [28708] = 21, + ACTIONS(421), 1, aux_sym__whitespace_token1, - ACTIONS(611), 1, - sym__setext_h1_underline, - ACTIONS(613), 1, - sym__setext_h2_underline, - ACTIONS(3682), 1, - sym__setext_h2_underline_or_thematic_break, - ACTIONS(3688), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(3690), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4128), 1, + ACTIONS(4107), 1, aux_sym__html_block_1_token1, - ACTIONS(4130), 1, + ACTIONS(4109), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4132), 1, + ACTIONS(4111), 1, anon_sym_LT_QMARK, - ACTIONS(4134), 1, + ACTIONS(4113), 1, aux_sym__html_block_4_token1, - ACTIONS(4136), 1, + ACTIONS(4115), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4138), 1, + ACTIONS(4117), 1, aux_sym__html_block_6_token1, - ACTIONS(4140), 1, + ACTIONS(4119), 1, aux_sym__html_block_6_token2, - ACTIONS(4142), 1, + ACTIONS(4121), 1, sym__block_quote_start, - ACTIONS(4146), 1, + ACTIONS(4125), 1, + sym__setext_h1_underline, + ACTIONS(4127), 1, + sym__setext_h2_underline, + ACTIONS(4129), 1, + sym__setext_h2_underline_or_thematic_break, + ACTIONS(4131), 1, sym__thematic_break, - ACTIONS(4148), 1, + ACTIONS(4135), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(4137), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4139), 1, sym__blank_line_start, - ACTIONS(410), 2, + ACTIONS(397), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(394), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(419), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(3686), 5, + ACTIONS(4133), 5, sym__list_marker_minus, sym__list_marker_plus, sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - ACTIONS(4144), 6, + ACTIONS(4123), 6, sym_atx_h1_marker, sym_atx_h2_marker, sym_atx_h3_marker, sym_atx_h4_marker, sym_atx_h5_marker, sym_atx_h6_marker, - STATE(1808), 14, + STATE(2028), 14, sym__block_interrupt_paragraph, sym__blank_line, sym_block_quote, @@ -98136,51 +98153,32 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_3, sym__html_block_4, sym__html_block_5, - sym__html_block_6, - [28798] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4152), 1, - anon_sym_DQUOTE, - ACTIONS(4156), 1, - anon_sym_SQUOTE, - ACTIONS(4158), 1, - anon_sym_LPAREN, - ACTIONS(4160), 1, - anon_sym_RPAREN, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - STATE(1947), 1, - sym_link_destination, - STATE(1984), 1, - sym_link_title, - STATE(2122), 1, - sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, + sym__html_block_6, + [28799] = 5, + ACTIONS(4141), 1, + sym__line_ending, + STATE(986), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4143), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(463), 3, + anon_sym_LT, anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(977), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 25, + aux_sym__whitespace_token1, + ACTIONS(461), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -98193,7 +98191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -98202,50 +98199,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28879] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4152), 1, - anon_sym_DQUOTE, - ACTIONS(4156), 1, - anon_sym_SQUOTE, - ACTIONS(4158), 1, - anon_sym_LPAREN, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4170), 1, - anon_sym_RPAREN, - STATE(1943), 1, - sym_link_title, - STATE(1946), 1, - sym_link_destination, - STATE(2122), 1, - sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(966), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + aux_sym__newline_token1, + [28858] = 3, + ACTIONS(4149), 1, + sym__emphasis_close_star, + ACTIONS(4147), 7, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4145), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -98258,8 +98243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -98267,46 +98250,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [28960] = 16, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [28913] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(4153), 1, anon_sym_DQUOTE, - ACTIONS(4156), 1, + ACTIONS(4157), 1, anon_sym_SQUOTE, - ACTIONS(4158), 1, + ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(4161), 1, + anon_sym_RPAREN, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4172), 1, - anon_sym_RPAREN, - STATE(1998), 1, + STATE(1923), 1, sym_link_title, - STATE(2000), 1, + STATE(1987), 1, sym_link_destination, - STATE(2122), 1, + STATE(2104), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - STATE(976), 3, + STATE(1089), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + ACTIONS(4151), 25, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -98332,8 +98325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29041] = 2, - ACTIONS(4176), 7, + [28994] = 2, + ACTIONS(4173), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98341,7 +98334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4174), 41, + ACTIONS(4171), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -98383,78 +98376,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29094] = 21, - ACTIONS(438), 1, - aux_sym__whitespace_token1, - ACTIONS(611), 1, - sym__setext_h1_underline, - ACTIONS(613), 1, - sym__setext_h2_underline, - ACTIONS(3682), 1, - sym__setext_h2_underline_or_thematic_break, - ACTIONS(3688), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(3690), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4128), 1, - aux_sym__html_block_1_token1, - ACTIONS(4130), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4132), 1, - anon_sym_LT_QMARK, - ACTIONS(4134), 1, - aux_sym__html_block_4_token1, - ACTIONS(4136), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4138), 1, - aux_sym__html_block_6_token1, - ACTIONS(4140), 1, - aux_sym__html_block_6_token2, - ACTIONS(4142), 1, - sym__block_quote_start, - ACTIONS(4146), 1, - sym__thematic_break, - ACTIONS(4148), 1, - sym__blank_line_start, - ACTIONS(410), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(436), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(3694), 5, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - ACTIONS(4144), 6, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - STATE(1797), 14, - sym__block_interrupt_paragraph, - sym__blank_line, - sym_block_quote, - sym_atx_heading, - sym_setext_h1_underline, - sym_setext_h2_underline, - sym_thematic_break, - sym_fenced_code_block, - sym__html_block_1, - sym__html_block_2, - sym__html_block_3, - sym__html_block_4, - sym__html_block_5, - sym__html_block_6, - [29185] = 2, - ACTIONS(4180), 7, + [29047] = 2, + ACTIONS(4177), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98462,7 +98385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4178), 41, + ACTIONS(4175), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -98504,8 +98427,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29238] = 2, - ACTIONS(4180), 7, + [29100] = 2, + ACTIONS(4181), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98513,11 +98436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4178), 41, + ACTIONS(4179), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98555,50 +98478,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29291] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4152), 1, - anon_sym_DQUOTE, - ACTIONS(4156), 1, - anon_sym_SQUOTE, - ACTIONS(4158), 1, - anon_sym_LPAREN, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4182), 1, - anon_sym_RPAREN, - STATE(1957), 1, - sym_link_title, - STATE(1958), 1, - sym_link_destination, - STATE(2122), 1, - sym__newline, - ACTIONS(4154), 2, + [29153] = 2, + ACTIONS(4185), 7, anon_sym_AMP, + anon_sym_LT, anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1080), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 25, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4183), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -98611,7 +98511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -98620,8 +98519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29372] = 2, - ACTIONS(4186), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [29206] = 2, + ACTIONS(4189), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98629,7 +98538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4184), 41, + ACTIONS(4187), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -98671,8 +98580,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29425] = 2, - ACTIONS(4190), 7, + [29259] = 2, + ACTIONS(4193), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98680,11 +98589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4188), 41, + ACTIONS(4191), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -98722,10 +98631,138 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29478] = 3, - ACTIONS(4196), 1, - sym__emphasis_close_star, - ACTIONS(4194), 7, + [29312] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4153), 1, + anon_sym_DQUOTE, + ACTIONS(4157), 1, + anon_sym_SQUOTE, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, + aux_sym__whitespace_token1, + ACTIONS(4195), 1, + anon_sym_RPAREN, + STATE(1975), 1, + sym_link_title, + STATE(1982), 1, + sym_link_destination, + STATE(2104), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1089), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 25, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29393] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4153), 1, + anon_sym_DQUOTE, + ACTIONS(4157), 1, + anon_sym_SQUOTE, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, + aux_sym__whitespace_token1, + ACTIONS(4197), 1, + anon_sym_RPAREN, + STATE(1999), 1, + sym_link_title, + STATE(2002), 1, + sym_link_destination, + STATE(2104), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(939), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 25, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29474] = 2, + ACTIONS(4201), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98733,7 +98770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4192), 40, + ACTIONS(4199), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -98757,6 +98794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -98774,62 +98812,62 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29533] = 21, - ACTIONS(438), 1, + [29527] = 21, + ACTIONS(383), 1, aux_sym__whitespace_token1, - ACTIONS(4198), 1, + ACTIONS(4107), 1, aux_sym__html_block_1_token1, - ACTIONS(4200), 1, + ACTIONS(4109), 1, anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4202), 1, + ACTIONS(4111), 1, anon_sym_LT_QMARK, - ACTIONS(4204), 1, + ACTIONS(4113), 1, aux_sym__html_block_4_token1, - ACTIONS(4206), 1, + ACTIONS(4115), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4208), 1, + ACTIONS(4117), 1, aux_sym__html_block_6_token1, - ACTIONS(4210), 1, + ACTIONS(4119), 1, aux_sym__html_block_6_token2, - ACTIONS(4212), 1, + ACTIONS(4121), 1, sym__block_quote_start, - ACTIONS(4216), 1, + ACTIONS(4125), 1, sym__setext_h1_underline, - ACTIONS(4218), 1, + ACTIONS(4127), 1, sym__setext_h2_underline, - ACTIONS(4220), 1, + ACTIONS(4129), 1, sym__setext_h2_underline_or_thematic_break, - ACTIONS(4222), 1, + ACTIONS(4131), 1, sym__thematic_break, - ACTIONS(4226), 1, + ACTIONS(4135), 1, sym__fenced_code_block_start_backtick, - ACTIONS(4228), 1, + ACTIONS(4137), 1, sym__fenced_code_block_start_tilde, - ACTIONS(4230), 1, + ACTIONS(4139), 1, sym__blank_line_start, - ACTIONS(410), 2, + ACTIONS(397), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(436), 5, + ACTIONS(381), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(4224), 5, + ACTIONS(4203), 5, sym__list_marker_minus, sym__list_marker_plus, sym__list_marker_star, sym__list_marker_parenthesis, sym__list_marker_dot, - ACTIONS(4214), 6, + ACTIONS(4123), 6, sym_atx_h1_marker, sym_atx_h2_marker, sym_atx_h3_marker, sym_atx_h4_marker, sym_atx_h5_marker, sym_atx_h6_marker, - STATE(2017), 14, + STATE(2026), 14, sym__block_interrupt_paragraph, sym__blank_line, sym_block_quote, @@ -98844,31 +98882,50 @@ static const uint16_t ts_small_parse_table[] = { sym__html_block_4, sym__html_block_5, sym__html_block_6, - [29624] = 5, - ACTIONS(4232), 1, - sym__line_ending, - STATE(996), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4234), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(386), 3, + [29618] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4153), 1, + anon_sym_DQUOTE, + ACTIONS(4157), 1, + anon_sym_SQUOTE, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, anon_sym_LT, - anon_sym_BSLASH, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(384), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4205), 1, + anon_sym_RPAREN, + STATE(1994), 1, + sym_link_destination, + STATE(1995), 1, + sym_link_title, + STATE(2104), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(946), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 25, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -98881,6 +98938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -98889,17 +98947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [29683] = 2, - ACTIONS(4238), 7, + [29699] = 3, + ACTIONS(4211), 1, + sym__emphasis_close_underscore, + ACTIONS(4209), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -98907,7 +98958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4236), 41, + ACTIONS(4207), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -98931,7 +98982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -98949,116 +98999,111 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [29736] = 21, - ACTIONS(396), 1, - aux_sym__whitespace_token1, - ACTIONS(4198), 1, - aux_sym__html_block_1_token1, - ACTIONS(4200), 1, - anon_sym_LT_BANG_DASH_DASH, - ACTIONS(4202), 1, - anon_sym_LT_QMARK, - ACTIONS(4204), 1, - aux_sym__html_block_4_token1, - ACTIONS(4206), 1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - ACTIONS(4208), 1, - aux_sym__html_block_6_token1, - ACTIONS(4210), 1, - aux_sym__html_block_6_token2, - ACTIONS(4212), 1, - sym__block_quote_start, - ACTIONS(4216), 1, - sym__setext_h1_underline, - ACTIONS(4218), 1, - sym__setext_h2_underline, - ACTIONS(4220), 1, - sym__setext_h2_underline_or_thematic_break, - ACTIONS(4222), 1, - sym__thematic_break, - ACTIONS(4226), 1, - sym__fenced_code_block_start_backtick, - ACTIONS(4228), 1, - sym__fenced_code_block_start_tilde, - ACTIONS(4230), 1, - sym__blank_line_start, - ACTIONS(410), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(394), 5, + [29754] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4153), 1, anon_sym_DQUOTE, + ACTIONS(4157), 1, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(4240), 5, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - ACTIONS(4214), 6, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - STATE(2015), 14, - sym__block_interrupt_paragraph, - sym__blank_line, - sym_block_quote, - sym_atx_heading, - sym_setext_h1_underline, - sym_setext_h2_underline, - sym_thematic_break, - sym_fenced_code_block, - sym__html_block_1, - sym__html_block_2, - sym__html_block_3, - sym__html_block_4, - sym__html_block_5, - sym__html_block_6, - [29827] = 16, + ACTIONS(4169), 1, + aux_sym__whitespace_token1, + ACTIONS(4213), 1, + anon_sym_RPAREN, + STATE(1956), 1, + sym_link_destination, + STATE(1959), 1, + sym_link_title, + STATE(2104), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1089), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 25, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29835] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(4153), 1, anon_sym_DQUOTE, - ACTIONS(4156), 1, + ACTIONS(4157), 1, anon_sym_SQUOTE, - ACTIONS(4158), 1, + ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4242), 1, + ACTIONS(4215), 1, anon_sym_RPAREN, - STATE(1960), 1, + STATE(1924), 1, sym_link_title, - STATE(1961), 1, + STATE(1992), 1, sym_link_destination, - STATE(2122), 1, + STATE(2104), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - STATE(1080), 3, + STATE(962), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + ACTIONS(4151), 25, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -99084,40 +99129,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29908] = 7, - ACTIONS(4028), 1, - sym__whitespace_ge_2, - ACTIONS(4030), 1, - aux_sym__whitespace_token1, - ACTIONS(4032), 1, + [29916] = 16, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4022), 2, + ACTIONS(4153), 1, + anon_sym_DQUOTE, + ACTIONS(4157), 1, + anon_sym_SQUOTE, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, anon_sym_LT, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, + aux_sym__whitespace_token1, + ACTIONS(4217), 1, + anon_sym_RPAREN, + STATE(1961), 1, + sym_link_destination, + STATE(1964), 1, + sym_link_title, + STATE(2104), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, anon_sym_BSLASH, - STATE(933), 5, - sym__whitespace, + STATE(1253), 2, + sym__link_destination_parenthesis, sym__word, - sym__newline, - sym__text_inline_no_link, - aux_sym_link_label_repeat1, - ACTIONS(4244), 10, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + STATE(1089), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4165), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4020), 28, + ACTIONS(4151), 25, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [29997] = 3, + ACTIONS(4219), 1, + sym__emphasis_close_underscore, + ACTIONS(4209), 7, anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4207), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99140,8 +99236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [29971] = 2, - ACTIONS(4126), 7, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [30052] = 2, + ACTIONS(4209), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99149,10 +99255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4124), 41, + ACTIONS(4207), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99173,7 +99280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -99191,13 +99297,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30024] = 3, - ACTIONS(4252), 4, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - ACTIONS(4249), 7, + [30105] = 2, + ACTIONS(4147), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99205,10 +99306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4246), 37, + ACTIONS(4145), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99229,7 +99331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -99239,12 +99340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30079] = 2, - ACTIONS(4256), 7, + [30158] = 3, + ACTIONS(4221), 1, + sym__emphasis_close_star, + ACTIONS(4147), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99252,11 +99359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4254), 41, + ACTIONS(4145), 40, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99294,26 +99400,40 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30132] = 3, - ACTIONS(4262), 1, - sym__emphasis_close_underscore, - ACTIONS(4260), 7, - anon_sym_AMP, + [30213] = 7, + ACTIONS(3984), 1, + sym__whitespace_ge_2, + ACTIONS(3986), 1, + aux_sym__whitespace_token1, + ACTIONS(3988), 1, + aux_sym__newline_token1, + ACTIONS(3978), 2, anon_sym_LT, anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4258), 40, + STATE(846), 5, + sym__whitespace, + sym__word, + sym__newline, + sym__text_inline_no_link, + aux_sym_link_label_repeat1, + ACTIONS(4223), 10, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(3976), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99336,39 +99456,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [30276] = 21, + ACTIONS(383), 1, + aux_sym__whitespace_token1, + ACTIONS(577), 1, + sym__setext_h1_underline, + ACTIONS(579), 1, + sym__setext_h2_underline, + ACTIONS(3656), 1, + sym__setext_h2_underline_or_thematic_break, + ACTIONS(3662), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(3664), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4225), 1, + aux_sym__html_block_1_token1, + ACTIONS(4227), 1, + anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4229), 1, + anon_sym_LT_QMARK, + ACTIONS(4231), 1, + aux_sym__html_block_4_token1, + ACTIONS(4233), 1, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4235), 1, + aux_sym__html_block_6_token1, + ACTIONS(4237), 1, + aux_sym__html_block_6_token2, + ACTIONS(4239), 1, + sym__block_quote_start, + ACTIONS(4243), 1, + sym__thematic_break, + ACTIONS(4245), 1, + sym__blank_line_start, + ACTIONS(397), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(381), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, aux_sym__newline_token1, - [30187] = 3, - ACTIONS(4264), 1, - sym__emphasis_close_underscore, - ACTIONS(4260), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, + ACTIONS(3681), 5, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + ACTIONS(4241), 6, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + STATE(1808), 14, + sym__block_interrupt_paragraph, + sym__blank_line, + sym_block_quote, + sym_atx_heading, + sym_setext_h1_underline, + sym_setext_h2_underline, + sym_thematic_break, + sym_fenced_code_block, + sym__html_block_1, + sym__html_block_2, + sym__html_block_3, + sym__html_block_4, + sym__html_block_5, + sym__html_block_6, + [30367] = 21, + ACTIONS(421), 1, + aux_sym__whitespace_token1, + ACTIONS(577), 1, + sym__setext_h1_underline, + ACTIONS(579), 1, + sym__setext_h2_underline, + ACTIONS(3656), 1, + sym__setext_h2_underline_or_thematic_break, + ACTIONS(3662), 1, + sym__fenced_code_block_start_backtick, + ACTIONS(3664), 1, + sym__fenced_code_block_start_tilde, + ACTIONS(4225), 1, + aux_sym__html_block_1_token1, + ACTIONS(4227), 1, anon_sym_LT_BANG_DASH_DASH, + ACTIONS(4229), 1, anon_sym_LT_QMARK, + ACTIONS(4231), 1, aux_sym__html_block_4_token1, + ACTIONS(4233), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + ACTIONS(4235), 1, + aux_sym__html_block_6_token1, + ACTIONS(4237), 1, + aux_sym__html_block_6_token2, + ACTIONS(4239), 1, + sym__block_quote_start, + ACTIONS(4243), 1, + sym__thematic_break, + ACTIONS(4245), 1, + sym__blank_line_start, + ACTIONS(397), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(419), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(3660), 5, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + ACTIONS(4241), 6, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + STATE(1813), 14, + sym__block_interrupt_paragraph, + sym__blank_line, + sym_block_quote, + sym_atx_heading, + sym_setext_h1_underline, + sym_setext_h2_underline, + sym_thematic_break, + sym_fenced_code_block, + sym__html_block_1, + sym__html_block_2, + sym__html_block_3, + sym__html_block_4, + sym__html_block_5, + sym__html_block_6, + [30458] = 16, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4153), 1, + anon_sym_DQUOTE, + ACTIONS(4157), 1, + anon_sym_SQUOTE, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4258), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4247), 1, + anon_sym_RPAREN, + STATE(1983), 1, + sym_link_destination, + STATE(1985), 1, + sym_link_title, + STATE(2104), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + STATE(1089), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 25, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -99381,6 +99652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -99388,18 +99661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, + [30539] = 3, + ACTIONS(4255), 4, sym_uri_autolink, sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [30242] = 2, - ACTIONS(4238), 7, + ACTIONS(4252), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99407,11 +99675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4236), 41, + ACTIONS(4249), 37, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99432,6 +99699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -99441,16 +99709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30295] = 2, - ACTIONS(4268), 7, + [30594] = 2, + ACTIONS(4259), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99458,7 +99722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4266), 41, + ACTIONS(4257), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -99500,10 +99764,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30348] = 3, - ACTIONS(4270), 1, - sym__emphasis_close_underscore, - ACTIONS(4260), 7, + [30647] = 2, + ACTIONS(4263), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99511,7 +99773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4258), 40, + ACTIONS(4261), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -99535,6 +99797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -99552,46 +99815,46 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30403] = 16, + [30700] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(4153), 1, anon_sym_DQUOTE, - ACTIONS(4156), 1, + ACTIONS(4157), 1, anon_sym_SQUOTE, - ACTIONS(4158), 1, + ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4272), 1, + ACTIONS(4265), 1, anon_sym_RPAREN, - STATE(1970), 1, + STATE(1921), 1, sym_link_title, STATE(1976), 1, sym_link_destination, - STATE(2122), 1, + STATE(2104), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - STATE(1080), 3, + STATE(1089), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + ACTIONS(4151), 25, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -99617,8 +99880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30484] = 2, - ACTIONS(4186), 7, + [30781] = 2, + ACTIONS(4189), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99626,11 +99889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4184), 41, + ACTIONS(4187), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_star, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99668,10 +99931,59 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30537] = 3, - ACTIONS(4274), 1, - sym__emphasis_close_star, - ACTIONS(4194), 7, + [30834] = 2, + ACTIONS(4185), 7, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4183), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + sym__emphasis_close_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [30887] = 2, + ACTIONS(4177), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99679,10 +99991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4192), 40, + ACTIONS(4175), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, + sym__emphasis_close_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -99720,8 +100033,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30592] = 2, - ACTIONS(4260), 7, + [30940] = 2, + ACTIONS(4173), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99729,7 +100042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4258), 41, + ACTIONS(4171), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -99771,46 +100084,46 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30645] = 16, + [30993] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(4153), 1, anon_sym_DQUOTE, - ACTIONS(4156), 1, + ACTIONS(4157), 1, anon_sym_SQUOTE, - ACTIONS(4158), 1, + ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4276), 1, + ACTIONS(4267), 1, anon_sym_RPAREN, - STATE(1938), 1, + STATE(1933), 1, sym_link_destination, - STATE(1968), 1, + STATE(1942), 1, sym_link_title, - STATE(2122), 1, + STATE(2104), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - STATE(1080), 3, + STATE(952), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + ACTIONS(4151), 25, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -99836,60 +100149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30726] = 3, - ACTIONS(4278), 1, - sym__emphasis_close_star, - ACTIONS(4194), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4192), 40, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [30781] = 2, - ACTIONS(4194), 7, + [31074] = 2, + ACTIONS(4173), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -99897,7 +100158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4192), 41, + ACTIONS(4171), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -99939,46 +100200,46 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [30834] = 16, + [31127] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(4153), 1, anon_sym_DQUOTE, - ACTIONS(4156), 1, + ACTIONS(4157), 1, anon_sym_SQUOTE, - ACTIONS(4158), 1, + ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4280), 1, + ACTIONS(4269), 1, anon_sym_RPAREN, - STATE(1953), 1, - sym_link_title, - STATE(1956), 1, + STATE(1950), 1, sym_link_destination, - STATE(2122), 1, + STATE(1951), 1, + sym_link_title, + STATE(2104), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - STATE(962), 3, + STATE(954), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + ACTIONS(4151), 25, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -100004,8 +100265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [30915] = 2, - ACTIONS(4126), 7, + [31208] = 2, + ACTIONS(4177), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100013,62 +100274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4124), 41, + ACTIONS(4175), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym_uri_autolink, - sym_email_autolink, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [30968] = 2, - ACTIONS(4238), 7, - anon_sym_AMP, - anon_sym_LT, - anon_sym_BSLASH, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - aux_sym__whitespace_token1, - ACTIONS(4236), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100106,8 +100316,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [31021] = 2, - ACTIONS(4186), 7, + [31261] = 2, + ACTIONS(4185), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100115,11 +100325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4184), 41, + ACTIONS(4183), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100157,8 +100367,8 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [31074] = 2, - ACTIONS(4180), 7, + [31314] = 2, + ACTIONS(4189), 7, anon_sym_AMP, anon_sym_LT, anon_sym_BSLASH, @@ -100166,11 +100376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_QMARK, aux_sym__html_block_4_token1, aux_sym__whitespace_token1, - ACTIONS(4178), 41, + ACTIONS(4187), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, - sym__emphasis_close_underscore, + sym__emphasis_close_star, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100208,46 +100418,46 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [31127] = 16, + [31367] = 16, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4152), 1, + ACTIONS(4153), 1, anon_sym_DQUOTE, - ACTIONS(4156), 1, + ACTIONS(4157), 1, anon_sym_SQUOTE, - ACTIONS(4158), 1, + ACTIONS(4159), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4282), 1, + ACTIONS(4271), 1, anon_sym_RPAREN, - STATE(1978), 1, + STATE(1996), 1, sym_link_title, - STATE(1979), 1, + STATE(1997), 1, sym_link_destination, - STATE(2122), 1, + STATE(2104), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - STATE(952), 3, + STATE(966), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + ACTIONS(4151), 25, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -100273,50 +100483,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31208] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4152), 1, + [31448] = 3, + ACTIONS(4273), 1, + sym__emphasis_close_star, + ACTIONS(4147), 7, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4145), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, anon_sym_DQUOTE, - ACTIONS(4156), 1, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_SQUOTE, - ACTIONS(4158), 1, anon_sym_LPAREN, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4284), 1, anon_sym_RPAREN, - STATE(1971), 1, - sym_link_title, - STATE(1973), 1, - sym_link_destination, - STATE(2122), 1, - sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(944), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + aux_sym__newline_token1, + [31503] = 3, + ACTIONS(4275), 1, + sym__emphasis_close_underscore, + ACTIONS(4209), 7, + anon_sym_AMP, + anon_sym_LT, + anon_sym_BSLASH, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + aux_sym__whitespace_token1, + ACTIONS(4207), 40, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -100329,8 +100570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -100338,50 +100577,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31289] = 16, - ACTIONS(41), 1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym_uri_autolink, + sym_email_autolink, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(4152), 1, - anon_sym_DQUOTE, - ACTIONS(4156), 1, - anon_sym_SQUOTE, - ACTIONS(4158), 1, - anon_sym_LPAREN, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + [31558] = 12, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4286), 1, - anon_sym_RPAREN, - STATE(1948), 1, - sym_link_destination, - STATE(1949), 1, - sym_link_title, - STATE(2122), 1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4287), 1, + sym__block_close, + STATE(1420), 1, + aux_sym__ignore_matching_tokens, + STATE(1561), 1, sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1080), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2404), 1, + sym__blank_line, + ACTIONS(4283), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, + STATE(1295), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -100390,11 +100632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -100403,50 +100647,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31370] = 16, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4152), 1, - anon_sym_DQUOTE, - ACTIONS(4156), 1, - anon_sym_SQUOTE, - ACTIONS(4158), 1, - anon_sym_LPAREN, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + [31630] = 12, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4288), 1, - anon_sym_RPAREN, - STATE(1927), 1, - sym_link_destination, - STATE(1933), 1, - sym_link_title, - STATE(2122), 1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4293), 1, + sym__block_close, + STATE(1420), 1, + aux_sym__ignore_matching_tokens, + STATE(1561), 1, sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - STATE(1080), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2372), 1, + sym__blank_line, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(4291), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 25, + STATE(1308), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -100455,11 +100692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -100468,34 +100707,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31451] = 12, - ACTIONS(1726), 1, + [31702] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4300), 1, + ACTIONS(4297), 1, sym__block_close, - STATE(988), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2436), 1, + STATE(2308), 1, sym__blank_line, - ACTIONS(4296), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4302), 2, + ACTIONS(4289), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1296), 3, + ACTIONS(4295), 2, + sym__word_no_digit, + sym__digits, + STATE(1285), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100528,34 +100767,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31523] = 12, - ACTIONS(1726), 1, + [31774] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4306), 1, + ACTIONS(4301), 1, sym__block_close, - STATE(1453), 1, + STATE(980), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2414), 1, + STATE(2402), 1, sym__blank_line, - ACTIONS(4304), 2, + ACTIONS(4299), 2, sym__word_no_digit, sym__digits, - ACTIONS(4308), 2, + ACTIONS(4303), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1321), 3, + STATE(1398), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100588,34 +100827,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31595] = 12, - ACTIONS(1726), 1, + [31846] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4312), 1, + ACTIONS(4307), 1, sym__block_close, - STATE(1453), 1, + STATE(1002), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, STATE(2350), 1, sym__blank_line, - ACTIONS(4308), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(4310), 2, + ACTIONS(4305), 2, sym__word_no_digit, sym__digits, - STATE(1389), 3, + ACTIONS(4309), 2, + sym__block_continuation, + sym__last_token_whitespace, + STATE(1397), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100648,94 +100887,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31667] = 12, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4316), 1, - sym__block_close, - STATE(980), 1, + [31918] = 4, + STATE(991), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, - sym__newline, - STATE(2348), 1, - sym__blank_line, - ACTIONS(4314), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4318), 2, + ACTIONS(4311), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1392), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, + ACTIONS(484), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [31739] = 12, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4322), 1, - sym__block_close, - STATE(979), 1, - aux_sym__ignore_matching_tokens, - STATE(1575), 1, - sym__newline, - STATE(2412), 1, - sym__blank_line, - ACTIONS(4320), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4324), 2, - sym__block_continuation, - sym__last_token_whitespace, - STATE(1323), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(482), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100753,13 +100918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -100768,34 +100930,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31811] = 12, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(4292), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(4328), 1, - sym__block_close, - STATE(1453), 1, + [31974] = 4, + STATE(1001), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, - sym__newline, - STATE(2363), 1, - sym__blank_line, - ACTIONS(4308), 2, + ACTIONS(4313), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(4326), 2, - sym__word_no_digit, - sym__digits, - STATE(1379), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(484), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(482), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100813,13 +100970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -100828,34 +100982,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31883] = 12, - ACTIONS(1726), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [32030] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4332), 1, + ACTIONS(4317), 1, sym__block_close, - STATE(985), 1, + STATE(988), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2387), 1, + STATE(2426), 1, sym__blank_line, - ACTIONS(4330), 2, + ACTIONS(4315), 2, sym__word_no_digit, sym__digits, - ACTIONS(4334), 2, + ACTIONS(4319), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1353), 3, + STATE(1326), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100888,34 +101051,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [31955] = 12, - ACTIONS(1726), 1, + [32102] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4338), 1, + ACTIONS(4323), 1, sym__block_close, - STATE(1453), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2389), 1, + STATE(2428), 1, sym__blank_line, - ACTIONS(4308), 2, + ACTIONS(4289), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(4336), 2, + ACTIONS(4321), 2, sym__word_no_digit, sym__digits, - STATE(1351), 3, + STATE(1324), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -100948,34 +101111,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32027] = 12, - ACTIONS(1726), 1, + [32174] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4342), 1, + ACTIONS(4327), 1, sym__block_close, - STATE(983), 1, + STATE(982), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2361), 1, + STATE(2301), 1, sym__blank_line, - ACTIONS(4340), 2, + ACTIONS(4325), 2, sym__word_no_digit, sym__digits, - ACTIONS(4344), 2, + ACTIONS(4329), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1381), 3, + STATE(1332), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101008,34 +101171,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32099] = 12, - ACTIONS(1726), 1, + [32246] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4348), 1, + ACTIONS(4333), 1, sym__block_close, - STATE(1453), 1, + STATE(995), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2306), 1, + STATE(2376), 1, sym__blank_line, - ACTIONS(4308), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(4346), 2, + ACTIONS(4331), 2, sym__word_no_digit, sym__digits, - STATE(1421), 3, + ACTIONS(4335), 2, + sym__block_continuation, + sym__last_token_whitespace, + STATE(1473), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101068,94 +101231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32171] = 12, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4352), 1, - sym__block_close, - STATE(1453), 1, + [32318] = 4, + STATE(1001), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, - sym__newline, - STATE(2438), 1, - sym__blank_line, - ACTIONS(4308), 2, + ACTIONS(4313), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(4350), 2, - sym__word_no_digit, - sym__digits, - STATE(1294), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, + ACTIONS(494), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [32243] = 12, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4356), 1, - sym__block_close, - STATE(1453), 1, - aux_sym__ignore_matching_tokens, - STATE(1575), 1, - sym__newline, - STATE(2376), 1, - sym__blank_line, - ACTIONS(4308), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(4354), 2, - sym__word_no_digit, - sym__digits, - STATE(1363), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(492), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101173,13 +101262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -101188,34 +101274,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32315] = 12, - ACTIONS(1726), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [32374] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4360), 1, + ACTIONS(4339), 1, sym__block_close, - STATE(989), 1, + STATE(1009), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2374), 1, + STATE(2438), 1, sym__blank_line, - ACTIONS(4358), 2, + ACTIONS(4337), 2, sym__word_no_digit, sym__digits, - ACTIONS(4362), 2, + ACTIONS(4341), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1365), 3, + STATE(1372), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101248,43 +101343,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32387] = 12, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(4292), 1, + [32446] = 14, + ACTIONS(4345), 1, + anon_sym_DQUOTE, + ACTIONS(4349), 1, + anon_sym_LPAREN, + ACTIONS(4351), 1, + anon_sym_RPAREN, + ACTIONS(4356), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4359), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4362), 1, aux_sym__newline_token1, - ACTIONS(4366), 1, - sym__block_close, - STATE(994), 1, - aux_sym__ignore_matching_tokens, - STATE(1575), 1, + ACTIONS(4365), 1, + sym__last_token_punctuation, + STATE(1455), 1, sym__newline, - STATE(2298), 1, - sym__blank_line, - ACTIONS(4364), 2, + STATE(1588), 1, + sym__word, + ACTIONS(4347), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1099), 2, + sym__whitespace, + aux_sym_link_title_repeat1, + STATE(1149), 2, + sym__link_destination_parenthesis, + aux_sym_link_destination_repeat2, + ACTIONS(4354), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4368), 2, - sym__block_continuation, - sym__last_token_whitespace, - STATE(1429), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4343), 27, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -101299,7 +101397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -101308,17 +101405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32459] = 4, - STATE(992), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4370), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(522), 3, + [32522] = 5, + ACTIONS(545), 1, + sym__soft_line_break_marker, + ACTIONS(4371), 1, + sym__split_token, + STATE(2115), 1, + aux_sym__soft_line_break_repeat1, + ACTIONS(4369), 3, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(520), 41, + ACTIONS(4367), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -101360,34 +101458,34 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [32515] = 12, - ACTIONS(1726), 1, + [32580] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, ACTIONS(4375), 1, sym__block_close, - STATE(987), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2299), 1, + STATE(2378), 1, sym__blank_line, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, ACTIONS(4373), 2, sym__word_no_digit, sym__digits, - ACTIONS(4377), 2, - sym__block_continuation, - sym__last_token_whitespace, - STATE(1427), 3, + STATE(1283), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101420,34 +101518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32587] = 12, - ACTIONS(1726), 1, + [32652] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4381), 1, + ACTIONS(4379), 1, sym__block_close, - STATE(1453), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2305), 1, + STATE(2365), 1, sym__blank_line, - ACTIONS(4308), 2, + ACTIONS(4289), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(4379), 2, + ACTIONS(4377), 2, sym__word_no_digit, sym__digits, - STATE(1423), 3, + STATE(1359), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101480,124 +101578,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32659] = 4, - STATE(992), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4383), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(529), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(527), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, + [32724] = 12, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(4279), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, aux_sym__newline_token1, - [32715] = 4, - STATE(992), 1, + ACTIONS(4383), 1, + sym__block_close, + STATE(1000), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4383), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(514), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(512), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, + STATE(1561), 1, + sym__newline, + STATE(2445), 1, + sym__blank_line, + ACTIONS(4381), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [32771] = 4, - STATE(995), 1, - aux_sym__ignore_matching_tokens, ACTIONS(4385), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(514), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(512), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + STATE(1363), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101615,10 +101623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -101627,44 +101638,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [32827] = 14, - ACTIONS(4391), 1, + [32796] = 14, + ACTIONS(4345), 1, anon_sym_SQUOTE, - ACTIONS(4393), 1, - anon_sym_LPAREN, - ACTIONS(4395), 1, - anon_sym_RPAREN, - ACTIONS(4400), 1, + ACTIONS(4356), 1, sym__whitespace_ge_2, - ACTIONS(4403), 1, + ACTIONS(4359), 1, aux_sym__whitespace_token1, - ACTIONS(4406), 1, + ACTIONS(4362), 1, aux_sym__newline_token1, - ACTIONS(4409), 1, + ACTIONS(4365), 1, sym__last_token_punctuation, - STATE(1347), 1, + ACTIONS(4391), 1, + anon_sym_LPAREN, + ACTIONS(4393), 1, + anon_sym_RPAREN, + STATE(1389), 1, sym__newline, - STATE(1563), 1, + STATE(1639), 1, sym__word, ACTIONS(4389), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1097), 2, + STATE(1104), 2, sym__whitespace, aux_sym_link_title_repeat2, - STATE(1167), 2, + STATE(1149), 2, sym__link_destination_parenthesis, aux_sym_link_destination_repeat2, - ACTIONS(4398), 5, + ACTIONS(4396), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, @@ -101698,96 +101700,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [32903] = 14, - ACTIONS(4391), 1, - anon_sym_DQUOTE, - ACTIONS(4400), 1, - sym__whitespace_ge_2, - ACTIONS(4403), 1, - aux_sym__whitespace_token1, - ACTIONS(4406), 1, - aux_sym__newline_token1, - ACTIONS(4409), 1, - sym__last_token_punctuation, - ACTIONS(4415), 1, - anon_sym_LPAREN, - ACTIONS(4417), 1, - anon_sym_RPAREN, - STATE(1346), 1, - sym__newline, - STATE(1601), 1, - sym__word, - ACTIONS(4413), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1100), 2, - sym__whitespace, - aux_sym_link_title_repeat1, - STATE(1167), 2, - sym__link_destination_parenthesis, - aux_sym_link_destination_repeat2, - ACTIONS(4420), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4411), 27, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [32979] = 12, - ACTIONS(1726), 1, + [32872] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4424), 1, + ACTIONS(4400), 1, sym__block_close, - STATE(1003), 1, + STATE(1006), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2424), 1, + STATE(2300), 1, sym__blank_line, - ACTIONS(4422), 2, + ACTIONS(4398), 2, sym__word_no_digit, sym__digits, - ACTIONS(4426), 2, + ACTIONS(4402), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1311), 3, + STATE(1378), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101820,34 +101760,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33051] = 12, - ACTIONS(1726), 1, + [32944] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4430), 1, + ACTIONS(4406), 1, sym__block_close, - STATE(1453), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2329), 1, + STATE(2446), 1, sym__blank_line, - ACTIONS(4308), 2, + ACTIONS(4289), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(4428), 2, + ACTIONS(4404), 2, sym__word_no_digit, sym__digits, - STATE(1375), 3, + STATE(1388), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101880,34 +101820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33123] = 12, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4434), 1, - sym__block_close, - STATE(1453), 1, + [33016] = 4, + STATE(1001), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, - sym__newline, - STATE(2444), 1, - sym__blank_line, - ACTIONS(4308), 2, + ACTIONS(4408), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(4432), 2, - sym__word_no_digit, - sym__digits, - STATE(1282), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(475), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(473), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -101925,13 +101851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -101940,34 +101863,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33195] = 12, - ACTIONS(1726), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [33072] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4438), 1, + ACTIONS(4413), 1, sym__block_close, - STATE(1453), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2426), 1, + STATE(2352), 1, sym__blank_line, - ACTIONS(4308), 2, + ACTIONS(4289), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(4436), 2, + ACTIONS(4411), 2, sym__word_no_digit, sym__digits, - STATE(1309), 3, + STATE(1394), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102000,34 +101932,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33267] = 12, - ACTIONS(1726), 1, + [33144] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4442), 1, + ACTIONS(4417), 1, sym__block_close, - STATE(1453), 1, + STATE(1010), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2326), 1, + STATE(2319), 1, sym__blank_line, - ACTIONS(4308), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(4440), 2, + ACTIONS(4415), 2, sym__word_no_digit, sym__digits, - STATE(1372), 3, + ACTIONS(4419), 2, + sym__block_continuation, + sym__last_token_whitespace, + STATE(1428), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102060,34 +101992,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33339] = 12, - ACTIONS(1726), 1, + [33216] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4446), 1, + ACTIONS(4423), 1, sym__block_close, - STATE(1002), 1, + STATE(981), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2443), 1, + STATE(2318), 1, sym__blank_line, - ACTIONS(4444), 2, + ACTIONS(4421), 2, sym__word_no_digit, sym__digits, - ACTIONS(4448), 2, + ACTIONS(4425), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1284), 3, + STATE(1414), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102120,34 +102052,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33411] = 12, - ACTIONS(1726), 1, + [33288] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4452), 1, + ACTIONS(4429), 1, sym__block_close, - STATE(1001), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2366), 1, + STATE(2416), 1, sym__blank_line, - ACTIONS(4450), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4454), 2, + ACTIONS(4289), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1342), 3, + ACTIONS(4427), 2, + sym__word_no_digit, + sym__digits, + STATE(1352), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102180,34 +102112,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33483] = 12, - ACTIONS(1726), 1, + [33360] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4458), 1, + ACTIONS(4433), 1, sym__block_close, - STATE(1004), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2369), 1, + STATE(2307), 1, sym__blank_line, - ACTIONS(4456), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4460), 2, + ACTIONS(4289), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1341), 3, + ACTIONS(4431), 2, + sym__word_no_digit, + sym__digits, + STATE(1317), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102240,34 +102172,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33555] = 12, - ACTIONS(1726), 1, + [33432] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4464), 1, + ACTIONS(4437), 1, sym__block_close, - STATE(1009), 1, + STATE(1005), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2400), 1, + STATE(2414), 1, sym__blank_line, - ACTIONS(4462), 2, + ACTIONS(4435), 2, sym__word_no_digit, sym__digits, - ACTIONS(4466), 2, + ACTIONS(4439), 2, sym__block_continuation, sym__last_token_whitespace, - STATE(1337), 3, + STATE(1362), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102300,34 +102232,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33627] = 12, - ACTIONS(1726), 1, + [33504] = 12, + ACTIONS(1715), 1, sym__blank_line_start, - ACTIONS(4292), 1, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4470), 1, + ACTIONS(4443), 1, sym__block_close, - STATE(1453), 1, + STATE(996), 1, aux_sym__ignore_matching_tokens, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - STATE(2402), 1, + STATE(2363), 1, sym__blank_line, - ACTIONS(4308), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(4468), 2, + ACTIONS(4441), 2, sym__word_no_digit, sym__digits, - STATE(1335), 3, + ACTIONS(4445), 2, + sym__block_continuation, + sym__last_token_whitespace, + STATE(1361), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102360,90 +102292,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33699] = 5, - ACTIONS(550), 1, - sym__soft_line_break_marker, - ACTIONS(4476), 1, - sym__split_token, - STATE(2095), 1, - aux_sym__soft_line_break_repeat1, - ACTIONS(4474), 3, - anon_sym_LT, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4472), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [33757] = 9, - ACTIONS(4166), 1, + [33576] = 12, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - STATE(1044), 1, + ACTIONS(4449), 1, + sym__block_close, + STATE(1420), 1, + aux_sym__ignore_matching_tokens, + STATE(1561), 1, sym__newline, - STATE(2130), 1, - sym_info_string, - ACTIONS(4480), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1091), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4482), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2440), 1, + sym__blank_line, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(4447), 2, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + STATE(1425), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102461,6 +102343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -102469,37 +102352,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33822] = 9, - ACTIONS(4166), 1, + [33648] = 12, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - STATE(1075), 1, + ACTIONS(4453), 1, + sym__block_close, + STATE(1420), 1, + aux_sym__ignore_matching_tokens, + STATE(1561), 1, sym__newline, - STATE(2124), 1, - sym_info_string, - ACTIONS(4480), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1091), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4482), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2375), 1, + sym__blank_line, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(4451), 2, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + STATE(1314), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102517,6 +102403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -102525,37 +102412,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33887] = 9, - ACTIONS(4166), 1, + [33720] = 12, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - STATE(1045), 1, + ACTIONS(4457), 1, + sym__block_close, + STATE(1012), 1, + aux_sym__ignore_matching_tokens, + STATE(1561), 1, sym__newline, - STATE(2163), 1, - sym_info_string, - ACTIONS(4480), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1091), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4482), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2389), 1, + sym__blank_line, + ACTIONS(4455), 2, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4459), 2, + sym__block_continuation, + sym__last_token_whitespace, + STATE(1296), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102573,6 +102463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -102581,37 +102472,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [33952] = 9, - ACTIONS(4166), 1, + [33792] = 12, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - STATE(1050), 1, + ACTIONS(4463), 1, + sym__block_close, + STATE(1420), 1, + aux_sym__ignore_matching_tokens, + STATE(1561), 1, sym__newline, - STATE(2173), 1, - sym_info_string, - ACTIONS(4480), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1091), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4482), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + STATE(2391), 1, + sym__blank_line, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(4461), 2, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + STATE(1303), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102629,6 +102523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -102637,32 +102532,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34017] = 9, - ACTIONS(4166), 1, + [33864] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(1049), 1, + STATE(1042), 1, sym__newline, - STATE(2123), 1, + STATE(2148), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102693,32 +102588,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34082] = 9, - ACTIONS(4166), 1, + [33929] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1060), 1, + STATE(1072), 1, sym__newline, - STATE(2197), 1, + STATE(2209), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102749,32 +102644,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34147] = 9, - ACTIONS(4166), 1, + [33994] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(1068), 1, + STATE(1065), 1, sym__newline, - STATE(2181), 1, + STATE(2202), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102805,32 +102700,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34212] = 9, - ACTIONS(4166), 1, + [34059] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1067), 1, + STATE(1068), 1, sym__newline, - STATE(2206), 1, + STATE(2180), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102861,32 +102756,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34277] = 9, - ACTIONS(4166), 1, + [34124] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1040), 1, + STATE(1073), 1, sym__newline, - STATE(2160), 1, + STATE(2165), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -102917,92 +102812,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34342] = 13, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(4494), 1, - anon_sym_RPAREN, - ACTIONS(4500), 1, - aux_sym__newline_token1, - STATE(1511), 1, - sym__newline, - STATE(1578), 1, - sym__word, - ACTIONS(4490), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4498), 2, - sym_entity_reference, - sym_numeric_character_reference, - STATE(1173), 2, - sym__whitespace, - aux_sym_link_title_repeat3, - STATE(1988), 2, - sym__link_destination_parenthesis, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4496), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - ACTIONS(4488), 28, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [34415] = 9, - ACTIONS(4166), 1, + [34189] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1038), 1, + STATE(1067), 1, sym__newline, - STATE(2184), 1, + STATE(2254), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103033,32 +102868,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34480] = 9, - ACTIONS(4166), 1, + [34254] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(1047), 1, + STATE(1063), 1, sym__newline, - STATE(2182), 1, + STATE(2167), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103089,32 +102924,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34545] = 9, - ACTIONS(4166), 1, + [34319] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1063), 1, + STATE(1059), 1, sym__newline, - STATE(2169), 1, + STATE(2159), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103145,32 +102980,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34610] = 9, - ACTIONS(4166), 1, + [34384] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(1057), 1, + STATE(1070), 1, sym__newline, - STATE(2143), 1, + STATE(2183), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103201,40 +103036,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34675] = 9, - ACTIONS(4166), 1, + [34449] = 13, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_RPAREN, + ACTIONS(4487), 1, aux_sym__newline_token1, - STATE(1064), 1, + STATE(1544), 1, sym__newline, - STATE(2171), 1, - sym_info_string, - ACTIONS(4480), 2, + STATE(1571), 1, + sym__word, + ACTIONS(4477), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4482), 5, - sym_backslash_escape, + ACTIONS(4485), 2, sym_entity_reference, sym_numeric_character_reference, + STATE(1142), 2, + sym__whitespace, + aux_sym_link_title_repeat3, + STATE(1957), 2, + sym__link_destination_parenthesis, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4483), 3, + sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4475), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -103257,32 +103096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34740] = 9, - ACTIONS(4166), 1, + [34522] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(1058), 1, + STATE(1074), 1, sym__newline, - STATE(2154), 1, + STATE(2216), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103313,32 +103152,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34805] = 9, - ACTIONS(4166), 1, + [34587] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(1032), 1, + STATE(1080), 1, sym__newline, - STATE(2141), 1, + STATE(2126), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103369,32 +103208,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34870] = 9, - ACTIONS(4166), 1, + [34652] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4484), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1062), 1, + STATE(1064), 1, sym__newline, - STATE(2151), 1, + STATE(2201), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103425,32 +103264,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [34935] = 9, - ACTIONS(4166), 1, + [34717] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1077), 1, + STATE(1040), 1, sym__newline, - STATE(2258), 1, + STATE(2147), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103481,32 +103320,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35000] = 9, - ACTIONS(4166), 1, + [34782] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1059), 1, + STATE(1052), 1, sym__newline, - STATE(2198), 1, + STATE(2192), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103537,32 +103376,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35065] = 9, - ACTIONS(4166), 1, + [34847] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4486), 1, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1046), 1, + STATE(1038), 1, sym__newline, - STATE(2134), 1, + STATE(2185), 1, sym_info_string, - ACTIONS(4480), 2, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1091), 4, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, aux_sym_info_string_repeat1, - ACTIONS(4482), 5, + ACTIONS(4469), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4478), 30, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103593,35 +103432,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35130] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, + [34912] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4510), 1, - sym__block_close, - ACTIONS(4512), 1, - sym__fenced_code_block_end_tilde, - STATE(2166), 1, - sym_code_fence_content, - ACTIONS(4508), 2, - sym__word_no_digit, - sym__digits, - STATE(1094), 5, + ACTIONS(4471), 1, + aux_sym__newline_token1, + STATE(1066), 1, + sym__newline, + STATE(2184), 1, + sym_info_string, + ACTIONS(4467), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + aux_sym_info_string_repeat1, + ACTIONS(4469), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103639,7 +103480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -103648,35 +103488,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35194] = 9, - ACTIONS(4486), 1, - aux_sym__newline_token1, - ACTIONS(4516), 1, + [34977] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4522), 1, - sym__block_close, - ACTIONS(4524), 1, - sym__fenced_code_block_end_backtick, - STATE(2174), 1, - sym_code_fence_content, - ACTIONS(4520), 2, - sym__word_no_digit, - sym__digits, - STATE(1087), 5, + ACTIONS(4471), 1, + aux_sym__newline_token1, + STATE(1051), 1, + sym__newline, + STATE(2193), 1, + sym_info_string, + ACTIONS(4467), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + aux_sym_info_string_repeat1, + ACTIONS(4469), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103694,7 +103536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -103703,35 +103544,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35258] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, + [35042] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4526), 1, - sym__block_close, - ACTIONS(4528), 1, - sym__fenced_code_block_end_tilde, - STATE(2230), 1, - sym_code_fence_content, - ACTIONS(4508), 2, - sym__word_no_digit, - sym__digits, - STATE(1094), 5, + ACTIONS(4471), 1, + aux_sym__newline_token1, + STATE(1046), 1, + sym__newline, + STATE(2138), 1, + sym_info_string, + ACTIONS(4467), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + aux_sym_info_string_repeat1, + ACTIONS(4469), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103749,7 +103592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -103758,35 +103600,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35322] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, + [35107] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4530), 1, - sym__block_close, - ACTIONS(4532), 1, - sym__fenced_code_block_end_tilde, - STATE(2180), 1, - sym_code_fence_content, - ACTIONS(4508), 2, - sym__word_no_digit, - sym__digits, - STATE(1094), 5, + ACTIONS(4473), 1, + aux_sym__newline_token1, + STATE(1048), 1, + sym__newline, + STATE(2137), 1, + sym_info_string, + ACTIONS(4467), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + aux_sym_info_string_repeat1, + ACTIONS(4469), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103804,7 +103648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -103813,35 +103656,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35386] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, + [35172] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4534), 1, - sym__block_close, - ACTIONS(4536), 1, - sym__fenced_code_block_end_tilde, - STATE(2139), 1, - sym_code_fence_content, - ACTIONS(4508), 2, - sym__word_no_digit, - sym__digits, - STATE(1094), 5, + ACTIONS(4471), 1, + aux_sym__newline_token1, + STATE(1061), 1, + sym__newline, + STATE(2160), 1, + sym_info_string, + ACTIONS(4467), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1088), 4, sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + aux_sym_info_string_repeat1, + ACTIONS(4469), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103859,7 +103704,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -103868,29 +103712,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35450] = 9, - ACTIONS(4486), 1, + [35237] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4530), 1, + ACTIONS(4497), 1, sym__block_close, - ACTIONS(4532), 1, + ACTIONS(4499), 1, sym__fenced_code_block_end_backtick, - STATE(2183), 1, + STATE(2179), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -103923,93 +103767,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35514] = 9, - ACTIONS(4486), 1, + [35301] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4538), 1, - sym__block_close, - ACTIONS(4540), 1, - sym__fenced_code_block_end_backtick, - STATE(2217), 1, - sym_code_fence_content, - ACTIONS(4520), 2, - sym__word_no_digit, - sym__digits, - STATE(1087), 5, - sym__text, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1448), 1, sym__whitespace, - sym__word, + STATE(1452), 1, + sym__soft_line_break, + STATE(2063), 1, + sym_link_destination, + STATE(2109), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + ACTIONS(4155), 2, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [35578] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, - sym__whitespace_ge_2, - ACTIONS(4506), 1, - aux_sym__whitespace_token1, - ACTIONS(4542), 1, - sym__block_close, - ACTIONS(4544), 1, - sym__fenced_code_block_end_tilde, - STATE(2220), 1, - sym_code_fence_content, - ACTIONS(4508), 2, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1094), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -104018,13 +103813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -104033,29 +103826,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35642] = 9, - ACTIONS(4484), 1, + [35373] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4546), 1, + ACTIONS(4501), 1, sym__block_close, - ACTIONS(4548), 1, - sym__fenced_code_block_end_tilde, - STATE(2192), 1, + ACTIONS(4503), 1, + sym__fenced_code_block_end_backtick, + STATE(2176), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104088,29 +103881,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35706] = 9, - ACTIONS(4486), 1, + [35437] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4550), 1, + ACTIONS(4513), 1, sym__block_close, - ACTIONS(4552), 1, - sym__fenced_code_block_end_backtick, - STATE(2137), 1, + ACTIONS(4515), 1, + sym__fenced_code_block_end_tilde, + STATE(2194), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104143,29 +103936,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35770] = 9, - ACTIONS(4486), 1, + [35501] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4542), 1, + ACTIONS(4517), 1, sym__block_close, - ACTIONS(4544), 1, - sym__fenced_code_block_end_backtick, - STATE(2219), 1, + ACTIONS(4519), 1, + sym__fenced_code_block_end_tilde, + STATE(2249), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104198,29 +103991,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35834] = 9, - ACTIONS(4484), 1, + [35565] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4550), 1, + ACTIONS(4513), 1, sym__block_close, - ACTIONS(4552), 1, - sym__fenced_code_block_end_tilde, - STATE(2138), 1, + ACTIONS(4515), 1, + sym__fenced_code_block_end_backtick, + STATE(2175), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104253,29 +104046,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35898] = 9, - ACTIONS(4484), 1, + [35629] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4554), 1, + ACTIONS(4521), 1, sym__block_close, - ACTIONS(4556), 1, + ACTIONS(4523), 1, sym__fenced_code_block_end_tilde, - STATE(2211), 1, + STATE(2168), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104308,29 +104101,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [35962] = 9, - ACTIONS(4486), 1, + [35693] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4501), 1, + sym__block_close, + ACTIONS(4503), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4546), 1, - sym__block_close, - ACTIONS(4548), 1, - sym__fenced_code_block_end_backtick, - STATE(2195), 1, + STATE(2177), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104363,29 +104156,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36026] = 9, - ACTIONS(4486), 1, + [35757] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4554), 1, + ACTIONS(4521), 1, sym__block_close, - ACTIONS(4556), 1, + ACTIONS(4523), 1, sym__fenced_code_block_end_backtick, - STATE(2209), 1, + STATE(2166), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104418,29 +104211,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36090] = 9, - ACTIONS(4484), 1, + [35821] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4538), 1, + ACTIONS(4525), 1, sym__block_close, - ACTIONS(4540), 1, - sym__fenced_code_block_end_tilde, - STATE(2218), 1, + ACTIONS(4527), 1, + sym__fenced_code_block_end_backtick, + STATE(2212), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104473,38 +104266,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36154] = 13, + [35885] = 13, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4162), 1, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - STATE(1316), 1, + STATE(1416), 1, sym__soft_line_break, - STATE(1317), 1, + STATE(1419), 1, sym__whitespace, - STATE(2040), 1, + STATE(2045), 1, sym_link_destination, - STATE(2108), 1, + STATE(2109), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104532,29 +104325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36226] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, - sym__whitespace_ge_2, - ACTIONS(4506), 1, + [35957] = 3, + ACTIONS(4529), 1, + sym__last_token_whitespace, + ACTIONS(2885), 3, + anon_sym_LT, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4558), 1, - sym__block_close, - ACTIONS(4560), 1, - sym__fenced_code_block_end_tilde, - STATE(2252), 1, - sym_code_fence_content, - ACTIONS(4508), 2, - sym__word_no_digit, - sym__digits, - STATE(1094), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(2883), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104572,13 +104353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -104587,29 +104365,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36290] = 9, - ACTIONS(4486), 1, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [36009] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4562), 1, + ACTIONS(4531), 1, sym__block_close, - ACTIONS(4564), 1, + ACTIONS(4533), 1, sym__fenced_code_block_end_backtick, - STATE(2250), 1, + STATE(2211), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104642,29 +104429,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36354] = 9, - ACTIONS(4484), 1, + [36073] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4566), 1, + ACTIONS(4535), 1, sym__block_close, - ACTIONS(4568), 1, - sym__fenced_code_block_end_tilde, - STATE(2185), 1, + ACTIONS(4537), 1, + sym__fenced_code_block_end_backtick, + STATE(2259), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104697,29 +104484,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36418] = 9, - ACTIONS(4486), 1, + [36137] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4566), 1, + ACTIONS(4531), 1, sym__block_close, - ACTIONS(4568), 1, - sym__fenced_code_block_end_backtick, - STATE(2187), 1, + ACTIONS(4533), 1, + sym__fenced_code_block_end_tilde, + STATE(2213), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104752,17 +104539,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36482] = 3, - ACTIONS(4570), 1, - sym__last_token_punctuation, - ACTIONS(2997), 3, - anon_sym_LT, - anon_sym_BSLASH, + [36201] = 9, + ACTIONS(4473), 1, + aux_sym__newline_token1, + ACTIONS(4507), 1, + sym__whitespace_ge_2, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(2509), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4539), 1, + sym__block_close, + ACTIONS(4541), 1, + sym__fenced_code_block_end_tilde, + STATE(2222), 1, + sym_code_fence_content, + ACTIONS(4511), 2, + sym__word_no_digit, + sym__digits, + STATE(1081), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104780,10 +104579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -104792,38 +104594,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + [36265] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - [36534] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4572), 1, + ACTIONS(4535), 1, sym__block_close, - ACTIONS(4574), 1, + ACTIONS(4537), 1, sym__fenced_code_block_end_tilde, - STATE(2241), 1, + STATE(2256), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104856,29 +104649,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36598] = 9, - ACTIONS(4486), 1, + [36329] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4572), 1, + ACTIONS(4543), 1, sym__block_close, - ACTIONS(4574), 1, + ACTIONS(4545), 1, sym__fenced_code_block_end_backtick, - STATE(2244), 1, + STATE(2215), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -104911,44 +104704,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36662] = 13, - ACTIONS(41), 1, + [36393] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1358), 1, - sym__soft_line_break, - STATE(1359), 1, - sym__whitespace, - STATE(2045), 1, - sym_link_destination, - STATE(2108), 1, - sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4543), 1, + sym__block_close, + ACTIONS(4545), 1, + sym__fenced_code_block_end_tilde, + STATE(2214), 1, + sym_code_fence_content, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + STATE(1081), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -104957,11 +104744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -104970,29 +104759,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36734] = 9, - ACTIONS(4486), 1, + [36457] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4510), 1, - sym__block_close, - ACTIONS(4512), 1, - sym__fenced_code_block_end_backtick, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - STATE(2164), 1, + ACTIONS(4547), 1, + sym__block_close, + ACTIONS(4549), 1, + sym__fenced_code_block_end_tilde, + STATE(2144), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105025,29 +104814,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36798] = 9, - ACTIONS(4486), 1, + [36521] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4576), 1, + ACTIONS(4547), 1, sym__block_close, - ACTIONS(4578), 1, + ACTIONS(4549), 1, sym__fenced_code_block_end_backtick, - STATE(2131), 1, + STATE(2143), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105080,29 +104869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36862] = 9, - ACTIONS(4486), 1, + [36585] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4580), 1, + ACTIONS(4551), 1, sym__block_close, - ACTIONS(4582), 1, - sym__fenced_code_block_end_backtick, - STATE(2172), 1, + ACTIONS(4553), 1, + sym__fenced_code_block_end_tilde, + STATE(2237), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105135,29 +104924,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36926] = 9, - ACTIONS(4484), 1, + [36649] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4580), 1, + ACTIONS(4551), 1, sym__block_close, - ACTIONS(4582), 1, - sym__fenced_code_block_end_tilde, - STATE(2191), 1, + ACTIONS(4553), 1, + sym__fenced_code_block_end_backtick, + STATE(2163), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105190,44 +104979,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [36990] = 13, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1274), 1, - sym__whitespace, - STATE(1275), 1, - sym__soft_line_break, - STATE(2056), 1, - sym_link_destination, - STATE(2108), 1, - sym__newline, - ACTIONS(4154), 2, + [36713] = 5, + ACTIONS(4555), 1, + sym__line_ending, + STATE(1086), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4557), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(463), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 27, + aux_sym__whitespace_token1, + ACTIONS(461), 38, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -105236,6 +105009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -105249,29 +105023,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37062] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4506), 1, - aux_sym__whitespace_token1, - ACTIONS(4576), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [36769] = 9, + ACTIONS(4473), 1, + aux_sym__newline_token1, + ACTIONS(4497), 1, sym__block_close, - ACTIONS(4578), 1, + ACTIONS(4499), 1, sym__fenced_code_block_end_tilde, - STATE(2133), 1, + ACTIONS(4507), 1, + sym__whitespace_ge_2, + ACTIONS(4509), 1, + aux_sym__whitespace_token1, + STATE(2178), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105304,29 +105085,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37126] = 9, - ACTIONS(4484), 1, + [36833] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4584), 1, + ACTIONS(4559), 1, sym__block_close, - ACTIONS(4586), 1, + ACTIONS(4561), 1, sym__fenced_code_block_end_tilde, - STATE(2227), 1, + STATE(2141), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105359,29 +105140,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37190] = 9, - ACTIONS(4486), 1, + [36897] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4584), 1, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1328), 1, + sym__soft_line_break, + STATE(1467), 1, + sym__whitespace, + STATE(2056), 1, + sym_link_destination, + STATE(2109), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [36969] = 9, + ACTIONS(4471), 1, + aux_sym__newline_token1, + ACTIONS(4491), 1, + sym__whitespace_ge_2, + ACTIONS(4493), 1, + aux_sym__whitespace_token1, + ACTIONS(4559), 1, sym__block_close, - ACTIONS(4586), 1, + ACTIONS(4561), 1, sym__fenced_code_block_end_backtick, - STATE(2253), 1, + STATE(2140), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105414,29 +105254,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37254] = 9, - ACTIONS(4486), 1, + [37033] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4588), 1, + ACTIONS(4563), 1, sym__block_close, - ACTIONS(4590), 1, - sym__fenced_code_block_end_backtick, - STATE(2225), 1, + ACTIONS(4565), 1, + sym__fenced_code_block_end_tilde, + STATE(2246), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105469,29 +105309,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37318] = 9, - ACTIONS(4484), 1, + [37097] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4522), 1, + ACTIONS(4567), 1, sym__block_close, - ACTIONS(4524), 1, - sym__fenced_code_block_end_tilde, - STATE(2175), 1, + ACTIONS(4569), 1, + sym__fenced_code_block_end_backtick, + STATE(2158), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105524,29 +105364,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37382] = 9, - ACTIONS(4486), 1, + [37161] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4558), 1, + ACTIONS(4571), 1, sym__block_close, - ACTIONS(4560), 1, - sym__fenced_code_block_end_backtick, - STATE(2249), 1, + ACTIONS(4573), 1, + sym__fenced_code_block_end_tilde, + STATE(2239), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105579,29 +105419,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37446] = 9, - ACTIONS(4484), 1, + [37225] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4562), 1, + ACTIONS(4571), 1, sym__block_close, - ACTIONS(4564), 1, - sym__fenced_code_block_end_tilde, - STATE(2243), 1, + ACTIONS(4573), 1, + sym__fenced_code_block_end_backtick, + STATE(2240), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105634,29 +105474,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37510] = 9, - ACTIONS(4484), 1, + [37289] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4588), 1, + ACTIONS(4517), 1, sym__block_close, - ACTIONS(4590), 1, - sym__fenced_code_block_end_tilde, - STATE(2229), 1, + ACTIONS(4519), 1, + sym__fenced_code_block_end_backtick, + STATE(2248), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105689,29 +105529,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37574] = 9, - ACTIONS(4486), 1, + [37353] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4526), 1, + ACTIONS(4575), 1, sym__block_close, - ACTIONS(4528), 1, - sym__fenced_code_block_end_backtick, - STATE(2223), 1, + ACTIONS(4577), 1, + sym__fenced_code_block_end_tilde, + STATE(2208), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105744,29 +105584,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37638] = 9, - ACTIONS(4486), 1, + [37417] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4534), 1, + ACTIONS(4579), 1, sym__block_close, - ACTIONS(4536), 1, - sym__fenced_code_block_end_backtick, - STATE(2146), 1, + ACTIONS(4581), 1, + sym__fenced_code_block_end_tilde, + STATE(2181), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105799,29 +105639,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37702] = 9, - ACTIONS(4484), 1, + [37481] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4592), 1, + ACTIONS(4563), 1, sym__block_close, - ACTIONS(4594), 1, - sym__fenced_code_block_end_tilde, - STATE(2207), 1, + ACTIONS(4565), 1, + sym__fenced_code_block_end_backtick, + STATE(2253), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -105854,44 +105694,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37766] = 13, - ACTIONS(41), 1, + [37545] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1272), 1, - sym__whitespace, - STATE(1273), 1, - sym__soft_line_break, - STATE(2043), 1, - sym_link_destination, - STATE(2108), 1, - sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4579), 1, + sym__block_close, + ACTIONS(4581), 1, + sym__fenced_code_block_end_backtick, + STATE(2182), 1, + sym_code_fence_content, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + STATE(1106), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -105900,11 +105734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -105913,25 +105749,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37838] = 5, - ACTIONS(4596), 1, - sym__line_ending, - STATE(1084), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4598), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(386), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [37609] = 9, + ACTIONS(4471), 1, + aux_sym__newline_token1, + ACTIONS(4491), 1, + sym__whitespace_ge_2, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(384), 38, - sym__blank_line_start, + ACTIONS(4539), 1, + sym__block_close, + ACTIONS(4541), 1, + sym__fenced_code_block_end_backtick, + STATE(2221), 1, + sym_code_fence_content, + ACTIONS(4495), 2, + sym__word_no_digit, + sym__digits, + STATE(1106), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105949,6 +105795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -105957,36 +105804,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + [37673] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - [37894] = 9, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4600), 1, + ACTIONS(4583), 1, sym__block_close, - ACTIONS(4602), 1, + ACTIONS(4585), 1, sym__fenced_code_block_end_tilde, - STATE(2231), 1, + STATE(2260), 1, sym_code_fence_content, - ACTIONS(4508), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1094), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106019,29 +105859,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [37958] = 9, - ACTIONS(4486), 1, + [37737] = 9, + ACTIONS(4473), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4592), 1, + ACTIONS(4567), 1, sym__block_close, - ACTIONS(4594), 1, - sym__fenced_code_block_end_backtick, - STATE(2205), 1, + ACTIONS(4569), 1, + sym__fenced_code_block_end_tilde, + STATE(2155), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1081), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106074,29 +105914,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38022] = 9, - ACTIONS(4486), 1, + [37801] = 9, + ACTIONS(4471), 1, aux_sym__newline_token1, - ACTIONS(4516), 1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4518), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4600), 1, + ACTIONS(4583), 1, sym__block_close, - ACTIONS(4602), 1, + ACTIONS(4585), 1, sym__fenced_code_block_end_backtick, - STATE(2236), 1, + STATE(2238), 1, sym_code_fence_content, - ACTIONS(4520), 2, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - STATE(1087), 5, + STATE(1106), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106129,17 +105969,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38086] = 3, - ACTIONS(4604), 1, - sym__last_token_whitespace, - ACTIONS(2906), 3, - anon_sym_LT, - anon_sym_BSLASH, + [37865] = 9, + ACTIONS(4473), 1, + aux_sym__newline_token1, + ACTIONS(4507), 1, + sym__whitespace_ge_2, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(2904), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4525), 1, + sym__block_close, + ACTIONS(4527), 1, + sym__fenced_code_block_end_tilde, + STATE(2210), 1, + sym_code_fence_content, + ACTIONS(4511), 2, + sym__word_no_digit, + sym__digits, + STATE(1081), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106157,10 +106009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106169,40 +106024,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + [37929] = 13, + ACTIONS(41), 1, aux_sym__newline_token1, - [38138] = 8, - ACTIONS(4409), 1, - sym__last_token_punctuation, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(4614), 1, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4608), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym__whitespace, + STATE(1276), 1, + sym__soft_line_break, + STATE(2036), 1, + sym_link_destination, + STATE(2109), 1, + sym__newline, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(4610), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1167), 3, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4612), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4606), 28, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106217,7 +106070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -106231,28 +106083,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38199] = 7, - ACTIONS(4620), 1, - sym__whitespace_ge_2, - ACTIONS(4623), 1, - aux_sym__whitespace_token1, - ACTIONS(4626), 1, - aux_sym__newline_token1, - STATE(2122), 1, - sym__newline, - ACTIONS(4618), 2, - anon_sym_AMP, + [38001] = 3, + ACTIONS(4587), 1, + sym__last_token_punctuation, + ACTIONS(2989), 3, + anon_sym_LT, anon_sym_BSLASH, - STATE(1080), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - ACTIONS(4616), 35, + aux_sym__whitespace_token1, + ACTIONS(2432), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106264,12 +106111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106278,40 +106123,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [38258] = 9, - ACTIONS(4166), 1, + aux_sym__newline_token1, + [38053] = 9, + ACTIONS(4471), 1, + aux_sym__newline_token1, + ACTIONS(4491), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(4500), 1, - aux_sym__newline_token1, - ACTIONS(4631), 1, - anon_sym_DQUOTE, - STATE(1346), 1, - sym__newline, - ACTIONS(4633), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1100), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4635), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4589), 1, + sym__block_close, + ACTIONS(4591), 1, + sym__fenced_code_block_end_backtick, + STATE(2154), 1, + sym_code_fence_content, + ACTIONS(4495), 2, sym__word_no_digit, sym__digits, - ACTIONS(4629), 29, + STATE(1106), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4489), 32, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106329,6 +106178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106337,36 +106187,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38321] = 9, - ACTIONS(4166), 1, + [38117] = 9, + ACTIONS(4473), 1, + aux_sym__newline_token1, + ACTIONS(4507), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4509), 1, aux_sym__whitespace_token1, - ACTIONS(4500), 1, - aux_sym__newline_token1, - ACTIONS(4631), 1, - anon_sym_SQUOTE, - STATE(1347), 1, - sym__newline, - ACTIONS(4639), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1097), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4641), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4589), 1, + sym__block_close, + ACTIONS(4591), 1, + sym__fenced_code_block_end_tilde, + STATE(2125), 1, + sym_code_fence_content, + ACTIONS(4511), 2, sym__word_no_digit, sym__digits, - ACTIONS(4637), 29, + STATE(1081), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -106383,6 +106233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106391,23 +106242,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38384] = 4, - STATE(1088), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4643), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(514), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [38181] = 9, + ACTIONS(4471), 1, + aux_sym__newline_token1, + ACTIONS(4491), 1, + sym__whitespace_ge_2, + ACTIONS(4493), 1, aux_sym__whitespace_token1, - ACTIONS(512), 38, - sym__blank_line_start, + ACTIONS(4575), 1, + sym__block_close, + ACTIONS(4577), 1, + sym__fenced_code_block_end_backtick, + STATE(2217), 1, + sym_code_fence_content, + ACTIONS(4495), 2, + sym__word_no_digit, + sym__digits, + STATE(1106), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106425,6 +106288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106433,30 +106297,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [38245] = 7, + ACTIONS(4473), 1, + aux_sym__newline_token1, + ACTIONS(4507), 1, sym__whitespace_ge_2, + ACTIONS(4509), 1, + aux_sym__whitespace_token1, + ACTIONS(4593), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [38437] = 4, - STATE(1086), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4645), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(514), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(512), 38, - sym__blank_line_start, + ACTIONS(4595), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(1090), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4505), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106474,6 +106340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106482,42 +106349,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [38490] = 9, - ACTIONS(4650), 1, - anon_sym_DQUOTE, - ACTIONS(4658), 1, + [38304] = 8, + ACTIONS(4600), 1, sym__whitespace_ge_2, - ACTIONS(4661), 1, + ACTIONS(4603), 1, aux_sym__whitespace_token1, - ACTIONS(4664), 1, + ACTIONS(4609), 1, aux_sym__newline_token1, - STATE(1346), 1, + ACTIONS(4612), 1, + sym__code_span_close, + STATE(2107), 1, sym__newline, - ACTIONS(4652), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1085), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat1, - ACTIONS(4655), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4606), 2, sym__word_no_digit, sym__digits, - ACTIONS(4647), 29, + STATE(1082), 5, + sym__soft_line_break, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_repeat1, + ACTIONS(4597), 32, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106535,6 +106393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106543,17 +106402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38553] = 4, - STATE(1086), 1, + [38365] = 4, + STATE(1083), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4667), 2, + ACTIONS(4614), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(522), 3, + ACTIONS(475), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(520), 38, + ACTIONS(473), 38, sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, @@ -106592,69 +106451,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [38606] = 7, - ACTIONS(4486), 1, - aux_sym__newline_token1, - ACTIONS(4516), 1, - sym__whitespace_ge_2, - ACTIONS(4518), 1, - aux_sym__whitespace_token1, - ACTIONS(4670), 2, - sym__word_no_digit, - sym__digits, - ACTIONS(4672), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(1095), 5, - sym__text, - sym__whitespace, - sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4514), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [38665] = 4, - STATE(1086), 1, + [38418] = 4, + STATE(1083), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4645), 2, + ACTIONS(4617), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(529), 3, + ACTIONS(494), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(527), 38, + ACTIONS(492), 38, sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, @@ -106693,27 +106500,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [38718] = 8, + [38471] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4674), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4676), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4680), 1, + ACTIONS(4625), 1, sym__code_span_close, - STATE(2113), 1, + STATE(2107), 1, sym__newline, - ACTIONS(4678), 2, + ACTIONS(4623), 2, sym__word_no_digit, sym__digits, - STATE(1104), 5, + STATE(1082), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(2919), 32, + ACTIONS(2936), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106746,80 +106553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38779] = 7, - ACTIONS(4691), 1, - sym__whitespace_ge_2, - ACTIONS(4694), 1, - aux_sym__whitespace_token1, - ACTIONS(4697), 1, - aux_sym__newline_token1, - ACTIONS(4685), 2, + [38532] = 4, + STATE(1083), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4617), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(484), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1090), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4688), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4682), 30, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [38838] = 7, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, aux_sym__whitespace_token1, - ACTIONS(4701), 1, - aux_sym__newline_token1, - ACTIONS(4480), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1090), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym_info_string_repeat1, - ACTIONS(4699), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4478), 30, + ACTIONS(482), 38, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -106850,33 +106595,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38897] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4674), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4676), 1, - aux_sym__whitespace_token1, - ACTIONS(4703), 1, - sym__code_span_close, - STATE(2113), 1, - sym__newline, - ACTIONS(4678), 2, sym__word_no_digit, sym__digits, - STATE(1104), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_repeat1, - ACTIONS(2919), 32, + aux_sym__newline_token1, + [38585] = 4, + STATE(1084), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4627), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(484), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(482), 38, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106894,7 +106636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -106903,32 +106644,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [38958] = 7, - ACTIONS(4709), 1, - anon_sym_LPAREN, - ACTIONS(4712), 1, - anon_sym_RPAREN, - ACTIONS(4718), 1, - sym__last_token_punctuation, - ACTIONS(4707), 3, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [38638] = 7, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, + aux_sym__whitespace_token1, + ACTIONS(4631), 1, + aux_sym__newline_token1, + ACTIONS(4467), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4715), 3, + STATE(1107), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym_info_string_repeat1, + ACTIONS(4629), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1988), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4705), 32, + ACTIONS(4465), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -106951,36 +106703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_entity_reference, - sym_numeric_character_reference, + [38697] = 7, + ACTIONS(4637), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - [39017] = 7, - ACTIONS(4484), 1, - aux_sym__newline_token1, - ACTIONS(4504), 1, - sym__whitespace_ge_2, - ACTIONS(4506), 1, + ACTIONS(4640), 1, aux_sym__whitespace_token1, - ACTIONS(4672), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(4720), 2, - sym__word_no_digit, - sym__digits, - STATE(1101), 5, - sym__text, - sym__whitespace, - sym__word, + ACTIONS(4643), 1, + aux_sym__newline_token1, + STATE(2104), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4502), 32, + ACTIONS(4635), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1089), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + ACTIONS(4633), 35, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106998,7 +106742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -107007,26 +106750,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39076] = 7, - ACTIONS(4725), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + [38756] = 7, + ACTIONS(4649), 1, sym__whitespace_ge_2, - ACTIONS(4728), 1, + ACTIONS(4652), 1, aux_sym__whitespace_token1, - ACTIONS(4734), 1, + ACTIONS(4658), 1, aux_sym__newline_token1, - ACTIONS(4731), 2, + ACTIONS(4655), 2, sym__word_no_digit, sym__digits, - ACTIONS(4737), 2, + ACTIONS(4661), 2, sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(1095), 5, + sym__fenced_code_block_end_tilde, + STATE(1090), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym_code_fence_content_repeat1, - ACTIONS(4722), 32, + ACTIONS(4646), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107059,36 +106807,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39135] = 9, - ACTIONS(4745), 1, + [38815] = 2, + ACTIONS(3002), 3, + anon_sym_LT, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3000), 41, + sym__code_span_start, + sym__emphasis_open_star, + sym__emphasis_open_underscore, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, - ACTIONS(4750), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_LT_BANG_DASH_DASH, + anon_sym_LT_QMARK, + aux_sym__html_block_4_token1, + anon_sym_LT_BANG_LBRACKCDATA_LBRACK, + sym_backslash_escape, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [38864] = 9, + ACTIONS(4666), 1, + anon_sym_DQUOTE, + ACTIONS(4674), 1, sym__whitespace_ge_2, - ACTIONS(4753), 1, + ACTIONS(4677), 1, aux_sym__whitespace_token1, - ACTIONS(4756), 1, + ACTIONS(4680), 1, aux_sym__newline_token1, - STATE(1347), 1, + STATE(1455), 1, sym__newline, - ACTIONS(4742), 2, + ACTIONS(4668), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1096), 3, + STATE(1092), 3, sym__whitespace, sym__word, - aux_sym_link_title_repeat2, - ACTIONS(4747), 5, + aux_sym_link_title_repeat1, + ACTIONS(4671), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4739), 29, + ACTIONS(4663), 29, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -107113,31 +106908,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39198] = 9, - ACTIONS(4166), 1, + [38927] = 9, + ACTIONS(4689), 1, + anon_sym_SQUOTE, + ACTIONS(4694), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4697), 1, aux_sym__whitespace_token1, - ACTIONS(4500), 1, + ACTIONS(4700), 1, aux_sym__newline_token1, - ACTIONS(4759), 1, - anon_sym_SQUOTE, - STATE(1347), 1, + STATE(1389), 1, sym__newline, - ACTIONS(4639), 2, + ACTIONS(4686), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1096), 3, + STATE(1093), 3, sym__whitespace, sym__word, aux_sym_link_title_repeat2, - ACTIONS(4761), 5, + ACTIONS(4691), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4637), 29, + ACTIONS(4683), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107167,15 +106962,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39261] = 2, - ACTIONS(4268), 3, - anon_sym_LT, - anon_sym_BSLASH, + [38990] = 7, + ACTIONS(4706), 1, + sym__whitespace_ge_2, + ACTIONS(4709), 1, aux_sym__whitespace_token1, - ACTIONS(4266), 41, - sym__code_span_start, - sym__emphasis_open_star, - sym__emphasis_open_underscore, + ACTIONS(4715), 1, + aux_sym__newline_token1, + ACTIONS(4661), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(4712), 2, + sym__word_no_digit, + sym__digits, + STATE(1094), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym_code_fence_content_repeat1, + ACTIONS(4703), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107193,10 +106999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -107205,35 +107014,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_LT_BANG_DASH_DASH, - anon_sym_LT_QMARK, - aux_sym__html_block_4_token1, - anon_sym_LT_BANG_LBRACKCDATA_LBRACK, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [39310] = 7, - ACTIONS(4767), 1, - anon_sym_LPAREN, - ACTIONS(4770), 1, - anon_sym_RPAREN, - ACTIONS(4776), 1, + [39049] = 8, + ACTIONS(4365), 1, sym__last_token_punctuation, - ACTIONS(4765), 3, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4726), 1, + aux_sym__whitespace_token1, + ACTIONS(4720), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4773), 3, + ACTIONS(4722), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1149), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4724), 5, sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1988), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - ACTIONS(4763), 32, + ACTIONS(4718), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107262,35 +107067,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_entity_reference, - sym_numeric_character_reference, + [39110] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - [39369] = 9, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4500), 1, + ACTIONS(4487), 1, aux_sym__newline_token1, - ACTIONS(4759), 1, + ACTIONS(4730), 1, anon_sym_DQUOTE, - STATE(1346), 1, + STATE(1455), 1, sym__newline, - ACTIONS(4633), 2, + ACTIONS(4732), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1085), 3, + STATE(1099), 3, sym__whitespace, sym__word, aux_sym_link_title_repeat1, - ACTIONS(4778), 5, + ACTIONS(4734), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4629), 29, + ACTIONS(4728), 29, anon_sym_BANG, anon_sym_POUND, anon_sym_DOLLAR, @@ -107320,33 +107121,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39432] = 7, - ACTIONS(4783), 1, + [39173] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4786), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4792), 1, + ACTIONS(4487), 1, aux_sym__newline_token1, - ACTIONS(4737), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(4789), 2, - sym__word_no_digit, - sym__digits, - STATE(1101), 5, - sym__text, + ACTIONS(4730), 1, + anon_sym_SQUOTE, + STATE(1389), 1, + sym__newline, + ACTIONS(4738), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1104), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym_code_fence_content_repeat1, - ACTIONS(4780), 32, + aux_sym_link_title_repeat2, + ACTIONS(4740), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4736), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -107363,7 +107167,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -107372,36 +107175,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39491] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4674), 1, - sym__whitespace_ge_2, - ACTIONS(4676), 1, + [39236] = 7, + ACTIONS(4746), 1, + anon_sym_LPAREN, + ACTIONS(4749), 1, + anon_sym_RPAREN, + ACTIONS(4755), 1, + sym__last_token_punctuation, + ACTIONS(4744), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4795), 1, - sym__code_span_close, - STATE(2113), 1, - sym__newline, - ACTIONS(4678), 2, + ACTIONS(4752), 3, + sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1104), 5, - sym__soft_line_break, - sym__text, - sym__whitespace, + STATE(1957), 3, + sym__link_destination_parenthesis, sym__word, - aux_sym__code_span_repeat1, - ACTIONS(2919), 32, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4742), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -107416,7 +107215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -107425,21 +107223,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39552] = 5, - ACTIONS(4797), 1, - sym__line_ending, - STATE(1144), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4799), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(386), 3, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [39295] = 9, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, + aux_sym__whitespace_token1, + ACTIONS(4487), 1, + aux_sym__newline_token1, + ACTIONS(4757), 1, + anon_sym_DQUOTE, + STATE(1455), 1, + sym__newline, + ACTIONS(4732), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(384), 37, + STATE(1092), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat1, + ACTIONS(4759), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4728), 29, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -107468,34 +107281,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + [39358] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - [39607] = 8, - ACTIONS(4804), 1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4807), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4813), 1, - aux_sym__newline_token1, - ACTIONS(4816), 1, + ACTIONS(4761), 1, sym__code_span_close, - STATE(2113), 1, + STATE(2107), 1, sym__newline, - ACTIONS(4810), 2, + ACTIONS(4623), 2, sym__word_no_digit, sym__digits, - STATE(1104), 5, + STATE(1082), 5, sym__soft_line_break, sym__text, sym__whitespace, sym__word, aux_sym__code_span_repeat1, - ACTIONS(4801), 32, + ACTIONS(2936), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107528,12 +107334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39668] = 2, - ACTIONS(2989), 3, + [39419] = 2, + ACTIONS(4201), 3, anon_sym_LT, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2987), 41, + ACTIONS(4199), 41, sym__code_span_start, sym__emphasis_open_star, sym__emphasis_open_underscore, @@ -107575,78 +107381,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [39717] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, - sym__whitespace_ge_2, - ACTIONS(4826), 1, - aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(4832), 1, - sym__block_close, - ACTIONS(4828), 2, - sym__word_no_digit, - sym__digits, - STATE(1155), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [39779] = 5, - ACTIONS(4834), 1, + [39468] = 5, + ACTIONS(4763), 1, sym__line_ending, - STATE(1472), 1, + STATE(1174), 1, aux_sym__ignore_matching_tokens, - ACTIONS(386), 2, - anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(4836), 2, + ACTIONS(4765), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(384), 37, - sym__block_close, + ACTIONS(463), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(461), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107658,12 +107410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -107672,33 +107424,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [39833] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + [39523] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(4852), 1, - sym__block_close, - ACTIONS(4848), 2, + ACTIONS(4767), 1, + sym__code_span_close, + STATE(2107), 1, + sym__newline, + ACTIONS(4623), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1082), 5, + sym__soft_line_break, + sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__code_span_repeat1, + ACTIONS(2936), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107716,6 +107469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -107730,35 +107484,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39895] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + [39584] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4487), 1, aux_sym__newline_token1, - ACTIONS(4856), 1, - sym__block_close, - ACTIONS(4854), 2, - sym__word_no_digit, - sym__digits, - STATE(1118), 4, + ACTIONS(4757), 1, + anon_sym_SQUOTE, + STATE(1389), 1, + sym__newline, + ACTIONS(4738), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1093), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym_link_title_repeat2, + ACTIONS(4769), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4736), 29, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -107769,12 +107524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -107783,40 +107538,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [39957] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, - sym__whitespace_ge_2, - ACTIONS(4866), 1, + [39647] = 7, + ACTIONS(4775), 1, + anon_sym_LPAREN, + ACTIONS(4778), 1, + anon_sym_RPAREN, + ACTIONS(4784), 1, + sym__last_token_punctuation, + ACTIONS(4773), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(4872), 1, - sym__block_close, - ACTIONS(4868), 2, + ACTIONS(4781), 3, + sym_backslash_escape, sym__word_no_digit, sym__digits, - STATE(1120), 4, - sym__whitespace, + STATE(1957), 3, + sym__link_destination_parenthesis, sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__link_destination_parenthesis_repeat1, + ACTIONS(4771), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -107827,7 +107578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -107836,28 +107586,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40019] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4826), 1, - aux_sym__whitespace_token1, - ACTIONS(4830), 1, aux_sym__newline_token1, - ACTIONS(4876), 1, + [39706] = 7, + ACTIONS(4471), 1, + aux_sym__newline_token1, + ACTIONS(4491), 1, + sym__whitespace_ge_2, + ACTIONS(4493), 1, + aux_sym__whitespace_token1, + ACTIONS(4595), 2, sym__block_close, - ACTIONS(4874), 2, + sym__fenced_code_block_end_backtick, + ACTIONS(4786), 2, sym__word_no_digit, sym__digits, - STATE(1122), 4, + STATE(1094), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym_code_fence_content_repeat1, + ACTIONS(4489), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107878,6 +107630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -107889,34 +107642,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40081] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [39765] = 7, + ACTIONS(4797), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4800), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4803), 1, aux_sym__newline_token1, - ACTIONS(4892), 1, - sym__block_close, - ACTIONS(4888), 2, - sym__word_no_digit, - sym__digits, - STATE(1124), 4, + ACTIONS(4791), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1107), 4, + sym__text, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym_info_string_repeat1, + ACTIONS(4794), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4788), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -107934,7 +107686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -107942,28 +107694,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40143] = 9, - ACTIONS(4860), 1, + [39824] = 9, + ACTIONS(4807), 1, anon_sym_DASH, - ACTIONS(4862), 1, + ACTIONS(4809), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(4896), 1, + ACTIONS(4819), 1, sym__block_close, - ACTIONS(4894), 2, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, + STATE(1148), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -107995,81 +107747,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40205] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, - sym__whitespace_ge_2, - ACTIONS(4826), 1, - aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(4898), 1, - sym__block_close, - ACTIONS(4828), 2, - sym__word_no_digit, - sym__digits, - STATE(1155), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, + [39886] = 9, + ACTIONS(4823), 1, anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [40267] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(4900), 1, + ACTIONS(4835), 1, sym__block_close, - ACTIONS(4828), 2, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, + STATE(1246), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108090,10 +107789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -108101,28 +107800,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40329] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [39948] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(4904), 1, + ACTIONS(4837), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1148), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108135,7 +107834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108147,6 +107845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -108154,28 +107853,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40391] = 9, - ACTIONS(1754), 1, + [40010] = 9, + ACTIONS(1705), 1, aux_sym__newline_token1, - ACTIONS(4908), 1, + ACTIONS(4841), 1, anon_sym_DASH, - ACTIONS(4910), 1, + ACTIONS(4843), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4912), 1, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4918), 1, + ACTIONS(4851), 1, sym__last_token_punctuation, - ACTIONS(4916), 2, + ACTIONS(4849), 2, sym__word_no_digit, sym__digits, - STATE(1328), 4, + STATE(1400), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108207,28 +107906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40453] = 9, - ACTIONS(4840), 1, + [40072] = 9, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4857), 1, aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(4920), 1, + ACTIONS(4867), 1, sym__block_close, - ACTIONS(4848), 2, + ACTIONS(4863), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1156), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108260,28 +107959,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40515] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [40134] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(4922), 1, + ACTIONS(4883), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108302,10 +108001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -108313,28 +108012,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40577] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + [40196] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(4924), 1, + ACTIONS(4885), 1, sym__block_close, - ACTIONS(4894), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108347,6 +108046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108354,7 +108054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -108366,19 +108065,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40639] = 5, - ACTIONS(386), 1, + [40258] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, + sym__whitespace_ge_2, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4926), 1, - sym__line_ending, - STATE(1475), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4928), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 38, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(4887), 1, sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(4831), 2, + sym__word_no_digit, + sym__digits, + STATE(1246), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108403,7 +108111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -108411,32 +108118,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [40693] = 9, - ACTIONS(4820), 1, + [40320] = 9, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4822), 1, + ACTIONS(4873), 1, anon_sym_QMARK_GT, - ACTIONS(4824), 1, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(4930), 1, + ACTIONS(4891), 1, sym__block_close, - ACTIONS(4828), 2, + ACTIONS(4889), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, + STATE(1261), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108468,28 +108171,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40755] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + [40382] = 7, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(4932), 1, + ACTIONS(4899), 1, sym__block_close, - ACTIONS(4894), 2, + ACTIONS(4895), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, + STATE(1252), 5, + sym__text, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__indented_chunk_repeat1, + ACTIONS(4893), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108502,6 +108202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108521,28 +108222,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40817] = 9, - ACTIONS(4880), 1, + [40440] = 9, + ACTIONS(4823), 1, anon_sym_RBRACK, - ACTIONS(4882), 1, + ACTIONS(4825), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(4934), 1, + ACTIONS(4901), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1246), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108574,28 +108275,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40879] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + [40502] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(4936), 1, + ACTIONS(4905), 1, sym__block_close, - ACTIONS(4828), 2, + ACTIONS(4903), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, + STATE(1135), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108608,7 +108309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108616,6 +108316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -108627,31 +108328,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [40941] = 5, - ACTIONS(4938), 1, - sym__line_ending, - STATE(1467), 1, + [40564] = 4, + STATE(1266), 1, aux_sym__ignore_matching_tokens, - ACTIONS(386), 2, - anon_sym_DASH, - aux_sym__whitespace_token1, - ACTIONS(4940), 2, + ACTIONS(4907), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(384), 37, - sym__block_close, + ACTIONS(484), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(482), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108662,7 +108361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -108671,24 +108369,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [40995] = 5, - ACTIONS(4942), 1, - sym__line_ending, - STATE(1464), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(386), 2, - anon_sym_QMARK, + [40616] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, + sym__whitespace_ge_2, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4944), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 37, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(4911), 1, sym__block_close, + ACTIONS(4909), 2, + sym__word_no_digit, + sym__digits, + STATE(1139), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108706,9 +108415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -108720,24 +108429,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [40678] = 9, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, + ACTIONS(4847), 1, + aux_sym__whitespace_token1, + ACTIONS(4913), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4917), 1, + sym__last_token_punctuation, + ACTIONS(4915), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [41049] = 5, - ACTIONS(4946), 1, - sym__line_ending, - STATE(1460), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(386), 2, + STATE(1459), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [40740] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, + sym__whitespace_ge_2, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4948), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 37, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(4921), 1, sym__block_close, + ACTIONS(4919), 2, + sym__word_no_digit, + sym__digits, + STATE(1134), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108755,13 +108521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -108769,24 +108535,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [40802] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [41103] = 5, - ACTIONS(386), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4950), 1, - sym__line_ending, - STATE(1456), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4952), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 38, + ACTIONS(4817), 1, + aux_sym__newline_token1, + ACTIONS(4925), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(4923), 2, + sym__word_no_digit, + sym__digits, + STATE(1193), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108799,7 +108569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108819,43 +108588,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [40864] = 9, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, + ACTIONS(4847), 1, + aux_sym__whitespace_token1, + ACTIONS(4927), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4931), 1, + sym__last_token_punctuation, + ACTIONS(4929), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [41157] = 7, - ACTIONS(4492), 1, + STATE(1418), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_LPAREN, - ACTIONS(4614), 1, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [40926] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, + sym__whitespace_ge_2, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4608), 2, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(4935), 1, + sym__block_close, + ACTIONS(4933), 2, + sym__word_no_digit, + sym__digits, + STATE(1136), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(4610), 3, + anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [40988] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, aux_sym__newline_token1, - STATE(1167), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(4612), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4939), 1, + sym__block_close, + ACTIONS(4937), 2, sym__word_no_digit, sym__digits, - ACTIONS(4606), 28, + STATE(1140), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108866,6 +108738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -108874,28 +108747,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41215] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [41050] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(4956), 1, + ACTIONS(4943), 1, sym__block_close, - ACTIONS(4954), 2, + ACTIONS(4941), 2, sym__word_no_digit, sym__digits, - STATE(1116), 4, + STATE(1137), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108908,7 +108781,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -108920,6 +108792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -108927,28 +108800,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41277] = 9, - ACTIONS(4820), 1, + [41112] = 9, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4822), 1, + ACTIONS(4873), 1, anon_sym_QMARK_GT, - ACTIONS(4824), 1, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(4960), 1, + ACTIONS(4947), 1, sym__block_close, - ACTIONS(4958), 2, + ACTIONS(4945), 2, sym__word_no_digit, sym__digits, - STATE(1115), 4, + STATE(1145), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -108980,28 +108853,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41339] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + [41174] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(4964), 1, + ACTIONS(4951), 1, sym__block_close, - ACTIONS(4962), 2, + ACTIONS(4949), 2, sym__word_no_digit, sym__digits, - STATE(1113), 4, + STATE(1138), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109014,6 +108887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -109021,7 +108895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -109033,28 +108906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41401] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + [41236] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(4968), 1, + ACTIONS(4955), 1, sym__block_close, - ACTIONS(4966), 2, + ACTIONS(4953), 2, sym__word_no_digit, sym__digits, - STATE(1108), 4, + STATE(1146), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109072,13 +108945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -109086,28 +108959,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41463] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + [41298] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(4972), 1, + ACTIONS(4959), 1, sym__block_close, - ACTIONS(4970), 2, + ACTIONS(4957), 2, sym__word_no_digit, sym__digits, - STATE(1156), 4, + STATE(1144), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109125,13 +108998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -109139,28 +109012,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41525] = 9, - ACTIONS(4977), 1, + [41360] = 9, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4980), 1, + ACTIONS(4857), 1, aux_sym__html_block_1_token2, - ACTIONS(4983), 1, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4986), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4992), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(4995), 1, + ACTIONS(4963), 1, sym__block_close, - ACTIONS(4989), 2, + ACTIONS(4961), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1143), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4974), 31, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109192,28 +109065,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41587] = 9, - ACTIONS(4840), 1, + [41422] = 9, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4857), 1, aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(4997), 1, + ACTIONS(4967), 1, sym__block_close, - ACTIONS(4848), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109245,28 +109118,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41649] = 9, - ACTIONS(4840), 1, + [41484] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, + sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, + aux_sym__newline_token1, + ACTIONS(4969), 1, + sym__block_close, + ACTIONS(4815), 2, + sym__word_no_digit, + sym__digits, + STATE(1148), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [41546] = 9, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4857), 1, aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5001), 1, + ACTIONS(4971), 1, sym__block_close, - ACTIONS(4999), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1176), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109298,28 +109224,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41711] = 9, - ACTIONS(4860), 1, + [41608] = 9, + ACTIONS(4807), 1, anon_sym_DASH, - ACTIONS(4862), 1, + ACTIONS(4809), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(5005), 1, + ACTIONS(4973), 1, sym__block_close, - ACTIONS(5003), 2, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - STATE(1160), 4, + STATE(1148), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109351,28 +109277,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41773] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + [41670] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5007), 1, + ACTIONS(4975), 1, sym__block_close, - ACTIONS(4894), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109385,6 +109311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -109392,7 +109319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -109404,28 +109330,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41835] = 9, - ACTIONS(4840), 1, + [41732] = 9, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4857), 1, aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5009), 1, + ACTIONS(4977), 1, sym__block_close, - ACTIONS(4848), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109457,29 +109383,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [41897] = 4, - STATE(1145), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5011), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(514), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [41794] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, + sym__whitespace_ge_2, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(512), 37, + ACTIONS(4817), 1, + aux_sym__newline_token1, + ACTIONS(4979), 1, + sym__block_close, + ACTIONS(4815), 2, + sym__word_no_digit, + sym__digits, + STATE(1148), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -109490,6 +109427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -109498,35 +109436,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [41949] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [41856] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5015), 1, + ACTIONS(4981), 1, sym__block_close, - ACTIONS(5013), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1157), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109544,13 +109475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -109558,25 +109489,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42011] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(514), 3, + [41918] = 9, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, + aux_sym__whitespace_token1, + ACTIONS(4487), 1, + aux_sym__newline_token1, + ACTIONS(4757), 1, + anon_sym_RPAREN, + STATE(1544), 1, + sym__newline, + ACTIONS(4477), 2, anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(512), 37, + STATE(1196), 3, + sym__whitespace, + sym__word, + aux_sym_link_title_repeat3, + ACTIONS(4983), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4475), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -109599,29 +109542,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [41980] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, + ACTIONS(4861), 1, + aux_sym__whitespace_token1, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(4985), 1, + sym__block_close, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [42063] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(529), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(527), 37, + STATE(1220), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109633,12 +109581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -109647,35 +109595,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [42115] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + [42042] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5021), 1, + ACTIONS(4987), 1, sym__block_close, - ACTIONS(5019), 2, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - STATE(1161), 4, + STATE(1246), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109696,10 +109637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -109707,22 +109648,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42177] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5023), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(522), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [42104] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, + sym__whitespace_ge_2, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(520), 37, + ACTIONS(4881), 1, + aux_sym__newline_token1, + ACTIONS(4989), 1, + sym__block_close, + ACTIONS(4879), 2, + sym__word_no_digit, + sym__digits, + STATE(1221), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -109737,9 +109690,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -109748,32 +109701,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [42229] = 7, - ACTIONS(4292), 1, + [42166] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5032), 1, + ACTIONS(4991), 1, sym__block_close, - ACTIONS(5028), 2, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - STATE(1195), 5, - sym__text, + STATE(1246), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5026), 32, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109798,7 +109747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -109806,19 +109754,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42287] = 5, - ACTIONS(386), 1, + [42228] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, + sym__whitespace_ge_2, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(5034), 1, - sym__line_ending, - STATE(1450), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5036), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 38, + ACTIONS(4881), 1, + aux_sym__newline_token1, + ACTIONS(4995), 1, sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(4993), 2, + sym__word_no_digit, + sym__digits, + STATE(1113), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109839,7 +109796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -109851,32 +109807,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [42290] = 9, + ACTIONS(5000), 1, + anon_sym_DASH, + ACTIONS(5003), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5006), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [42341] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, - sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(5009), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(5015), 1, aux_sym__newline_token1, - ACTIONS(5040), 1, + ACTIONS(5018), 1, sym__block_close, - ACTIONS(5038), 2, + ACTIONS(5012), 2, sym__word_no_digit, sym__digits, - STATE(1162), 4, + STATE(1148), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4997), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109889,7 +109841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -109901,6 +109852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -109908,28 +109860,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42403] = 9, - ACTIONS(4820), 1, + [42352] = 7, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(5024), 1, + aux_sym__whitespace_token1, + ACTIONS(4720), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5020), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1211), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5022), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4718), 28, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [42410] = 9, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4822), 1, + ACTIONS(4873), 1, anon_sym_QMARK_GT, - ACTIONS(4824), 1, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5044), 1, + ACTIONS(5028), 1, sym__block_close, - ACTIONS(5042), 2, + ACTIONS(5026), 2, sym__word_no_digit, sym__digits, - STATE(1125), 4, + STATE(1198), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -109961,40 +109964,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42465] = 9, - ACTIONS(5049), 1, - anon_sym_DASH, - ACTIONS(5052), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5055), 1, - sym__whitespace_ge_2, - ACTIONS(5058), 1, + [42472] = 7, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(5024), 1, aux_sym__whitespace_token1, - ACTIONS(5064), 1, + ACTIONS(4720), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5020), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5067), 1, - sym__block_close, - ACTIONS(5061), 2, + STATE(1213), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5030), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1152), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(5046), 31, + ACTIONS(4718), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [42530] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1126), 3, anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(1124), 37, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -110005,7 +110048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110014,40 +110056,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42527] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4866), 1, - aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5071), 1, - sym__block_close, - ACTIONS(5069), 2, sym__word_no_digit, sym__digits, - STATE(1140), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__newline_token1, + [42582] = 4, + STATE(1152), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5034), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(952), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(950), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -110058,7 +110096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110067,34 +110104,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42589] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4846), 1, - aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(5075), 1, - sym__block_close, - ACTIONS(5073), 2, sym__word_no_digit, sym__digits, - STATE(1141), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__newline_token1, + [42634] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(952), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(950), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110106,12 +110138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110120,34 +110152,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42651] = 9, - ACTIONS(5080), 1, - anon_sym_QMARK, - ACTIONS(5083), 1, - anon_sym_QMARK_GT, - ACTIONS(5086), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(5089), 1, - aux_sym__whitespace_token1, - ACTIONS(5095), 1, - aux_sym__newline_token1, - ACTIONS(5098), 1, - sym__block_close, - ACTIONS(5092), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(5077), 31, + aux_sym__newline_token1, + [42686] = 4, + STATE(1154), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5036), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(624), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(622), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110162,9 +110189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110173,28 +110200,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42713] = 9, - ACTIONS(4840), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [42738] = 9, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4857), 1, aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5100), 1, + ACTIONS(5038), 1, sym__block_close, - ACTIONS(4848), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110226,34 +110260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42775] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, - sym__whitespace_ge_2, - ACTIONS(4886), 1, + [42800] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(624), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4890), 1, - aux_sym__newline_token1, - ACTIONS(5102), 1, - sym__block_close, - ACTIONS(4902), 2, - sym__word_no_digit, - sym__digits, - STATE(1187), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + ACTIONS(622), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110271,7 +110293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -110279,25 +110301,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42837] = 7, - ACTIONS(5107), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [42852] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(5110), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(5116), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5119), 1, + ACTIONS(5042), 1, sym__block_close, - ACTIONS(5113), 2, + ACTIONS(5040), 2, sym__word_no_digit, sym__digits, - STATE(1158), 5, - sym__text, + STATE(1232), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5104), 32, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110322,7 +110354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -110330,34 +110361,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42895] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, - sym__whitespace_ge_2, - ACTIONS(4886), 1, + [42914] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(697), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4890), 1, - aux_sym__newline_token1, - ACTIONS(5121), 1, - sym__block_close, - ACTIONS(4902), 2, - sym__word_no_digit, - sym__digits, - STATE(1187), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + ACTIONS(695), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110375,7 +110394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -110383,40 +110402,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [42957] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4866), 1, - aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5123), 1, - sym__block_close, - ACTIONS(4894), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__newline_token1, + [42966] = 4, + STATE(1157), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5044), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(697), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(695), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -110427,7 +110442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110436,34 +110450,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43019] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4826), 1, - aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(5125), 1, - sym__block_close, - ACTIONS(4828), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__newline_token1, + [43018] = 4, + STATE(1159), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5046), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(752), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(750), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110478,9 +110487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110489,28 +110498,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43081] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [43070] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(5127), 1, + ACTIONS(5050), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(5048), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1265), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110523,7 +110539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -110535,6 +110550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -110542,34 +110558,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43143] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, - sym__whitespace_ge_2, - ACTIONS(4826), 1, + [43132] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(752), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(5129), 1, - sym__block_close, - ACTIONS(4828), 2, - sym__word_no_digit, - sym__digits, - STATE(1155), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(750), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110584,9 +110588,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110595,28 +110599,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43205] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4866), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [43184] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, + sym__whitespace_ge_2, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5131), 1, + ACTIONS(5054), 1, sym__block_close, - ACTIONS(4894), 2, + ACTIONS(5052), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, + STATE(1259), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110629,6 +110640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -110636,7 +110648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -110648,28 +110659,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43267] = 9, - ACTIONS(4840), 1, + [43246] = 9, + ACTIONS(4855), 1, anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4857), 1, aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5133), 1, + ACTIONS(5058), 1, sym__block_close, - ACTIONS(4848), 2, + ACTIONS(5056), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1180), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110701,39 +110712,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43329] = 7, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(5139), 1, - aux_sym__whitespace_token1, - ACTIONS(4608), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5135), 3, - anon_sym_RPAREN, + [43308] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, aux_sym__newline_token1, - STATE(1194), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5137), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5062), 1, + sym__block_close, + ACTIONS(5060), 2, sym__word_no_digit, sym__digits, - ACTIONS(4606), 28, + STATE(1181), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -110744,6 +110756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110752,35 +110765,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43387] = 7, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(5139), 1, - aux_sym__whitespace_token1, - ACTIONS(4608), 2, + [43370] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(758), 3, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5135), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1197), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5141), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4606), 28, + aux_sym__whitespace_token1, + ACTIONS(756), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -110803,87 +110806,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43445] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4886), 1, - aux_sym__whitespace_token1, - ACTIONS(4890), 1, - aux_sym__newline_token1, - ACTIONS(5145), 1, - sym__block_close, - ACTIONS(5143), 2, sym__word_no_digit, sym__digits, - STATE(1159), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + aux_sym__newline_token1, + [43422] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(762), 3, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [43507] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, - sym__whitespace_ge_2, - ACTIONS(4826), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(5149), 1, - sym__block_close, - ACTIONS(5147), 2, - sym__word_no_digit, - sym__digits, - STATE(1163), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(760), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110898,9 +110843,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -110909,28 +110854,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43569] = 9, - ACTIONS(4860), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [43474] = 9, + ACTIONS(4807), 1, anon_sym_DASH, - ACTIONS(4862), 1, + ACTIONS(4809), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(5153), 1, + ACTIONS(5064), 1, sym__block_close, - ACTIONS(5151), 2, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - STATE(1164), 4, + STATE(1148), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -110962,28 +110914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43631] = 9, - ACTIONS(4840), 1, + [43536] = 5, + ACTIONS(5066), 1, + sym__line_ending, + STATE(1468), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(463), 2, anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, - sym__whitespace_ge_2, - ACTIONS(4846), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(5157), 1, + ACTIONS(5068), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 37, sym__block_close, - ACTIONS(5155), 2, - sym__word_no_digit, - sym__digits, - STATE(1165), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111015,28 +110958,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43693] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + aux_sym__html_block_1_token2, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [43590] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5159), 1, + ACTIONS(5072), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(5070), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1182), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111057,10 +111005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -111068,37 +111016,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43755] = 9, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4500), 1, - aux_sym__newline_token1, - ACTIONS(4759), 1, - anon_sym_RPAREN, - STATE(1511), 1, - sym__newline, - ACTIONS(4490), 2, + [43652] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(766), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1203), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5161), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4488), 28, + aux_sym__whitespace_token1, + ACTIONS(764), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -111121,34 +111057,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43817] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4826), 1, - aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(5163), 1, - sym__block_close, - ACTIONS(4828), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__newline_token1, + [43704] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(770), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(768), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111163,9 +111094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -111174,40 +111105,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43879] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4866), 1, - aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5165), 1, - sym__block_close, - ACTIONS(4894), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__newline_token1, + [43756] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(484), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(482), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -111218,7 +111145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -111227,34 +111153,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [43941] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4846), 1, - aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(5167), 1, - sym__block_close, - ACTIONS(4848), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__newline_token1, + [43808] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(774), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(772), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111266,12 +111187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -111280,28 +111201,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44003] = 9, - ACTIONS(4880), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [43860] = 9, + ACTIONS(4823), 1, anon_sym_RBRACK, - ACTIONS(4882), 1, + ACTIONS(4825), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5171), 1, + ACTIONS(5076), 1, sym__block_close, - ACTIONS(5169), 2, + ACTIONS(5074), 2, sym__word_no_digit, sym__digits, - STATE(1172), 4, + STATE(1109), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111333,34 +111261,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44065] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, - sym__whitespace_ge_2, - ACTIONS(4826), 1, + [43922] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(778), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(5175), 1, - sym__block_close, - ACTIONS(5173), 2, - sym__word_no_digit, - sym__digits, - STATE(1174), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(776), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111375,9 +111291,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -111386,28 +111302,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44127] = 9, - ACTIONS(4880), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [43974] = 9, + ACTIONS(4823), 1, anon_sym_RBRACK, - ACTIONS(4882), 1, + ACTIONS(4825), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5179), 1, + ACTIONS(5078), 1, sym__block_close, - ACTIONS(5177), 2, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - STATE(1119), 4, + STATE(1246), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111439,28 +111362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44189] = 9, - ACTIONS(4860), 1, + [44036] = 9, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5183), 1, - sym__block_close, - ACTIONS(5181), 2, + ACTIONS(5080), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5084), 1, + sym__last_token_punctuation, + ACTIONS(5082), 2, sym__word_no_digit, sym__digits, - STATE(1175), 4, + STATE(1472), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111492,28 +111415,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44251] = 9, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [44098] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(5185), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5189), 1, - sym__last_token_punctuation, - ACTIONS(5187), 2, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(5086), 1, + sym__block_close, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1437), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111526,11 +111449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -111545,28 +111468,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44313] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [44160] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(5191), 1, + ACTIONS(5088), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1148), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111579,7 +111502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -111591,46 +111513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [44375] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1108), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(1106), 37, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -111639,35 +111521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [44427] = 9, - ACTIONS(4820), 1, + [44222] = 9, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4822), 1, + ACTIONS(4873), 1, anon_sym_QMARK_GT, - ACTIONS(4824), 1, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5193), 1, + ACTIONS(5090), 1, sym__block_close, - ACTIONS(4828), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111699,28 +111574,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44489] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + [44284] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5197), 1, + ACTIONS(5092), 1, sym__block_close, - ACTIONS(5195), 2, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - STATE(1114), 4, + STATE(1246), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111741,10 +111616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -111752,40 +111627,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44551] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, - sym__whitespace_ge_2, - ACTIONS(4866), 1, + [44346] = 4, + STATE(1163), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5094), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(845), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5199), 1, - sym__block_close, - ACTIONS(4894), 2, - sym__word_no_digit, - sym__digits, - STATE(1152), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(843), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -111796,7 +111660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -111805,28 +111668,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44613] = 9, - ACTIONS(5204), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [44398] = 9, + ACTIONS(4823), 1, anon_sym_RBRACK, - ACTIONS(5207), 1, + ACTIONS(4825), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5210), 1, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(5213), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(5219), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5222), 1, + ACTIONS(5096), 1, sym__block_close, - ACTIONS(5216), 2, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1246), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(5201), 31, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111858,28 +111728,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44675] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [44460] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5226), 1, + ACTIONS(5098), 1, sym__block_close, - ACTIONS(5224), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1182), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111900,10 +111770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -111911,28 +111781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44737] = 9, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, - sym__whitespace_ge_2, - ACTIONS(4914), 1, + [44522] = 5, + ACTIONS(463), 1, aux_sym__whitespace_token1, - ACTIONS(5228), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5232), 1, - sym__last_token_punctuation, - ACTIONS(5230), 2, - sym__word_no_digit, - sym__digits, - STATE(1300), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(5100), 1, + sym__line_ending, + STATE(1415), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5102), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -111945,6 +111806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -111964,87 +111826,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44799] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, - aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5236), 1, - sym__block_close, - ACTIONS(5234), 2, sym__word_no_digit, sym__digits, - STATE(1123), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + aux_sym__newline_token1, + [44576] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(845), 3, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [44861] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, - sym__whitespace_ge_2, - ACTIONS(4826), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(5240), 1, - sym__block_close, - ACTIONS(5238), 2, - sym__word_no_digit, - sym__digits, - STATE(1184), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(843), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112059,9 +111860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -112070,28 +111871,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44923] = 9, - ACTIONS(4860), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [44628] = 9, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5244), 1, - sym__block_close, - ACTIONS(5242), 2, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5108), 1, + sym__last_token_punctuation, + ACTIONS(5106), 2, sym__word_no_digit, sym__digits, - STATE(1186), 4, + STATE(1405), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112123,82 +111931,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [44985] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + [44690] = 9, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4487), 1, aux_sym__newline_token1, - ACTIONS(5248), 1, - sym__block_close, - ACTIONS(5246), 2, - sym__word_no_digit, - sym__digits, - STATE(1215), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, + ACTIONS(4730), 1, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [45047] = 7, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(5252), 1, - aux_sym__whitespace_token1, - ACTIONS(4608), 2, + STATE(1544), 1, + sym__newline, + ACTIONS(4477), 2, anon_sym_AMP, anon_sym_BSLASH, - ACTIONS(5250), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - STATE(1197), 3, - sym__link_destination_parenthesis, + STATE(1142), 3, + sym__whitespace, sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5141), 5, + aux_sym_link_title_repeat3, + ACTIONS(4485), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4606), 28, + ACTIONS(4475), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112227,25 +111984,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45105] = 7, - ACTIONS(4292), 1, + [44752] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5256), 1, + ACTIONS(5112), 1, sym__block_close, - ACTIONS(5254), 2, + ACTIONS(5110), 2, sym__word_no_digit, sym__digits, - STATE(1158), 5, - sym__text, + STATE(1201), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5026), 32, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112263,7 +112023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -112278,25 +112037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45163] = 7, - ACTIONS(4292), 1, + [44814] = 7, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5260), 1, + ACTIONS(5114), 1, sym__block_close, - ACTIONS(5258), 2, + ACTIONS(4895), 2, sym__word_no_digit, sym__digits, - STATE(1211), 5, + STATE(1252), 5, sym__text, sym__whitespace, sym__word, sym__newline, aux_sym__indented_chunk_repeat1, - ACTIONS(5026), 32, + ACTIONS(4893), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112329,39 +112088,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45221] = 7, - ACTIONS(5268), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - aux_sym__whitespace_token1, - ACTIONS(5265), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(5271), 3, - anon_sym_RPAREN, + [44872] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, aux_sym__newline_token1, - STATE(1197), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym_link_destination_repeat2, - ACTIONS(5273), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5116), 1, + sym__block_close, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - ACTIONS(5262), 28, + STATE(1148), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -112372,6 +112132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -112380,28 +112141,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45279] = 9, - ACTIONS(4880), 1, + [44934] = 9, + ACTIONS(4823), 1, anon_sym_RBRACK, - ACTIONS(4882), 1, + ACTIONS(4825), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5278), 1, + ACTIONS(5120), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(5118), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1178), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112433,40 +112194,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45341] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, - sym__whitespace_ge_2, - ACTIONS(4866), 1, + [44996] = 4, + STATE(1167), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5122), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(851), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5280), 1, - sym__block_close, - ACTIONS(4894), 2, - sym__word_no_digit, - sym__digits, - STATE(1152), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(849), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -112477,7 +112227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -112486,37 +112235,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45403] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4846), 1, - aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(5282), 1, - sym__block_close, - ACTIONS(4848), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + aux_sym__newline_token1, + [45048] = 9, + ACTIONS(5130), 1, + anon_sym_RPAREN, + ACTIONS(5135), 1, + sym__whitespace_ge_2, + ACTIONS(5138), 1, + aux_sym__whitespace_token1, + ACTIONS(5141), 1, + aux_sym__newline_token1, + STATE(1544), 1, + sym__newline, + ACTIONS(5127), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1196), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym_link_title_repeat3, + ACTIONS(5132), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(5124), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -112525,12 +112281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -112539,17 +112295,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45465] = 4, - STATE(1183), 1, + [45110] = 4, + STATE(1251), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5284), 2, + ACTIONS(5032), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 3, + ACTIONS(851), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1141), 37, + ACTIONS(849), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112587,28 +112343,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [45517] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + [45162] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5288), 1, + ACTIONS(5144), 1, sym__block_close, - ACTIONS(5286), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1137), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112626,9 +112382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -112640,37 +112396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45579] = 9, - ACTIONS(5296), 1, - anon_sym_RPAREN, - ACTIONS(5301), 1, - sym__whitespace_ge_2, - ACTIONS(5304), 1, - aux_sym__whitespace_token1, - ACTIONS(5307), 1, - aux_sym__newline_token1, - STATE(1511), 1, - sym__newline, - ACTIONS(5293), 2, + [45224] = 4, + STATE(1168), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5146), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(857), 3, anon_sym_AMP, anon_sym_BSLASH, - STATE(1203), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(5298), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(5290), 28, + aux_sym__whitespace_token1, + ACTIONS(855), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -112693,28 +112437,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45641] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4886), 1, - aux_sym__whitespace_token1, - ACTIONS(4890), 1, - aux_sym__newline_token1, - ACTIONS(5312), 1, - sym__block_close, - ACTIONS(5310), 2, sym__word_no_digit, sym__digits, - STATE(1198), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__newline_token1, + [45276] = 5, + ACTIONS(463), 1, + aux_sym__whitespace_token1, + ACTIONS(5148), 1, + sym__line_ending, + STATE(1463), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5150), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 38, + sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112739,6 +112481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -112746,81 +112489,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45703] = 9, - ACTIONS(4166), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4500), 1, - aux_sym__newline_token1, - ACTIONS(4631), 1, - anon_sym_RPAREN, - STATE(1511), 1, - sym__newline, - ACTIONS(4490), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1173), 3, - sym__whitespace, - sym__word, - aux_sym_link_title_repeat3, - ACTIONS(4498), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4488), 28, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, + aux_sym__newline_token1, + [45330] = 9, + ACTIONS(4855), 1, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [45765] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5316), 1, + ACTIONS(5152), 1, sym__block_close, - ACTIONS(5314), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1106), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112838,9 +112532,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -112852,40 +112546,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45827] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, - sym__whitespace_ge_2, - ACTIONS(4866), 1, + [45392] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(857), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5320), 1, - sym__block_close, - ACTIONS(5318), 2, - sym__word_no_digit, - sym__digits, - STATE(1199), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(855), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -112896,7 +112579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -112905,28 +112587,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45889] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4846), 1, - aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(5324), 1, - sym__block_close, - ACTIONS(5322), 2, sym__word_no_digit, sym__digits, - STATE(1200), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__newline_token1, + [45444] = 5, + ACTIONS(5154), 1, + sym__line_ending, + STATE(1453), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(463), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5156), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -112939,11 +112619,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -112958,34 +112638,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [45951] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, - ACTIONS(4886), 1, - aux_sym__whitespace_token1, - ACTIONS(4890), 1, - aux_sym__newline_token1, - ACTIONS(5326), 1, - sym__block_close, - ACTIONS(4902), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__newline_token1, + [45498] = 4, + STATE(1172), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5158), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(863), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(861), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113003,7 +112676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -113011,34 +112684,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46013] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4826), 1, - aux_sym__whitespace_token1, - ACTIONS(4830), 1, - aux_sym__newline_token1, - ACTIONS(5328), 1, - sym__block_close, - ACTIONS(4828), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__newline_token1, + [45550] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(863), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(861), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113053,9 +112721,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113064,25 +112732,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46075] = 7, - ACTIONS(4292), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4294), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [45602] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, + sym__whitespace_ge_2, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4833), 1, aux_sym__newline_token1, - ACTIONS(5330), 1, + ACTIONS(5162), 1, sym__block_close, - ACTIONS(5254), 2, + ACTIONS(5160), 2, sym__word_no_digit, sym__digits, - STATE(1158), 5, - sym__text, + STATE(1118), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__indented_chunk_repeat1, - ACTIONS(5026), 32, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113107,7 +112785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -113115,40 +112792,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46133] = 9, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, - sym__whitespace_ge_2, - ACTIONS(4914), 1, + [45664] = 4, + STATE(1173), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5164), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(869), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5332), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5336), 1, - sym__last_token_punctuation, - ACTIONS(5334), 2, - sym__word_no_digit, - sym__digits, - STATE(1394), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(867), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -113159,7 +112825,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113168,40 +112833,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46195] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4866), 1, - aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5338), 1, - sym__block_close, - ACTIONS(4894), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + aux_sym__newline_token1, + [45716] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(869), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(867), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -113212,7 +112873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113221,34 +112881,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46257] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4846), 1, - aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(5340), 1, - sym__block_close, - ACTIONS(4848), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__newline_token1, + [45768] = 4, + STATE(1175), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5166), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(909), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(907), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113260,12 +112915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113274,34 +112929,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46319] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4846), 1, - aux_sym__whitespace_token1, - ACTIONS(4850), 1, - aux_sym__newline_token1, - ACTIONS(5342), 1, - sym__block_close, - ACTIONS(4848), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__newline_token1, + [45820] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(909), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(907), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113313,12 +112963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113327,37 +112977,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46381] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4826), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [45872] = 7, + ACTIONS(5174), 1, + anon_sym_LPAREN, + ACTIONS(5182), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(5171), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(5177), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(5346), 1, - sym__block_close, - ACTIONS(5344), 2, + STATE(1211), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5179), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1210), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(5168), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -113369,9 +113024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113380,40 +113035,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46443] = 9, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, - sym__whitespace_ge_2, - ACTIONS(4914), 1, + [45930] = 4, + STATE(1177), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5184), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(923), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5348), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5352), 1, - sym__last_token_punctuation, - ACTIONS(5350), 2, - sym__word_no_digit, - sym__digits, - STATE(1399), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(921), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -113424,7 +113068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113433,90 +113076,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46505] = 9, - ACTIONS(4860), 1, - anon_sym_DASH, - ACTIONS(4862), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4866), 1, - aux_sym__whitespace_token1, - ACTIONS(4870), 1, - aux_sym__newline_token1, - ACTIONS(5356), 1, - sym__block_close, - ACTIONS(5354), 2, sym__word_no_digit, sym__digits, - STATE(1213), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, + aux_sym__newline_token1, + [45982] = 7, + ACTIONS(4479), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(5188), 1, + aux_sym__whitespace_token1, + ACTIONS(4720), 2, + anon_sym_AMP, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [46567] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + ACTIONS(5186), 3, + anon_sym_RPAREN, sym__whitespace_ge_2, - ACTIONS(4846), 1, - aux_sym__whitespace_token1, - ACTIONS(4850), 1, aux_sym__newline_token1, - ACTIONS(5360), 1, - sym__block_close, - ACTIONS(5358), 2, + STATE(1211), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(5022), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1214), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + ACTIONS(4718), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -113525,12 +113120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113539,17 +113134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46629] = 4, - STATE(1263), 1, + [46040] = 4, + STATE(1251), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5362), 2, + ACTIONS(5032), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1423), 3, + ACTIONS(923), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1421), 37, + ACTIONS(921), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113587,28 +113182,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [46681] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [46092] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5366), 1, + ACTIONS(5190), 1, sym__block_close, - ACTIONS(5364), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1209), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113629,10 +113224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -113640,17 +113235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [46743] = 4, - STATE(1147), 1, + [46154] = 4, + STATE(1188), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, + ACTIONS(5192), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1143), 3, + ACTIONS(1025), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1141), 37, + ACTIONS(1023), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113688,17 +113283,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [46795] = 4, - STATE(1222), 1, + [46206] = 4, + STATE(1197), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5368), 2, + ACTIONS(5194), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 3, + ACTIONS(1031), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1379), 37, + ACTIONS(1029), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113736,17 +113331,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [46847] = 4, - STATE(1147), 1, + [46258] = 4, + STATE(1202), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, + ACTIONS(5196), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1381), 3, + ACTIONS(1037), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1379), 37, + ACTIONS(1035), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113784,17 +113379,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [46899] = 4, - STATE(1147), 1, + [46310] = 4, + STATE(1205), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, + ACTIONS(5198), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1026), 3, + ACTIONS(1043), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1024), 37, + ACTIONS(1041), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113832,28 +113427,28 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [46951] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [46362] = 9, + ACTIONS(5203), 1, + anon_sym_LT, + ACTIONS(5206), 1, + aux_sym__html_block_1_token2, + ACTIONS(5209), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(5212), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(5218), 1, aux_sym__newline_token1, - ACTIONS(5370), 1, + ACTIONS(5221), 1, sym__block_close, - ACTIONS(4902), 2, + ACTIONS(5215), 2, sym__word_no_digit, sym__digits, - STATE(1187), 4, + STATE(1220), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(5200), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113871,13 +113466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -113885,28 +113480,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47013] = 9, - ACTIONS(4820), 1, + [46424] = 9, + ACTIONS(5226), 1, anon_sym_QMARK, - ACTIONS(4822), 1, + ACTIONS(5229), 1, anon_sym_QMARK_GT, - ACTIONS(4824), 1, + ACTIONS(5232), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(5235), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(5241), 1, aux_sym__newline_token1, - ACTIONS(5372), 1, + ACTIONS(5244), 1, sym__block_close, - ACTIONS(4828), 2, + ACTIONS(5238), 2, sym__word_no_digit, sym__digits, - STATE(1155), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + ACTIONS(5223), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -113938,22 +113533,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47075] = 4, - STATE(1224), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5374), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1026), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [46486] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, + sym__whitespace_ge_2, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(1024), 37, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(5248), 1, + sym__block_close, + ACTIONS(5246), 2, + sym__word_no_digit, + sym__digits, + STATE(1229), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113965,12 +113572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -113979,24 +113586,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [46548] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, + aux_sym__newline_token1, + ACTIONS(5252), 1, + sym__block_close, + ACTIONS(5250), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47127] = 4, - STATE(1225), 1, + STATE(1108), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [46610] = 4, + STATE(1208), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5376), 2, + ACTIONS(5254), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(730), 3, + ACTIONS(1049), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(728), 37, + ACTIONS(1047), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114034,17 +113687,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47179] = 4, - STATE(1147), 1, + [46662] = 4, + STATE(1210), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, + ACTIONS(5256), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(730), 3, + ACTIONS(1055), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(728), 37, + ACTIONS(1053), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114082,17 +113735,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47231] = 4, - STATE(1147), 1, + [46714] = 4, + STATE(1214), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, + ACTIONS(5258), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(726), 3, + ACTIONS(1067), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(724), 37, + ACTIONS(1065), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114130,40 +113783,29 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47283] = 9, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, - sym__whitespace_ge_2, - ACTIONS(4914), 1, + [46766] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1067), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5378), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5382), 1, - sym__last_token_punctuation, - ACTIONS(5380), 2, - sym__word_no_digit, - sym__digits, - STATE(1432), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(1065), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -114174,7 +113816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114183,22 +113824,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [47345] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(710), 3, - anon_sym_AMP, - anon_sym_BSLASH, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [46818] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, + sym__whitespace_ge_2, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(708), 37, + ACTIONS(4881), 1, + aux_sym__newline_token1, + ACTIONS(5262), 1, + sym__block_close, + ACTIONS(5260), 2, + sym__word_no_digit, + sym__digits, + STATE(1215), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114213,9 +113873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114224,29 +113884,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [46880] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, + ACTIONS(4861), 1, + aux_sym__whitespace_token1, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(5264), 1, + sym__block_close, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47397] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(706), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(704), 37, + STATE(1220), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114258,12 +113923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114272,29 +113937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [47449] = 4, - STATE(1147), 1, + [46942] = 5, + ACTIONS(5266), 1, + sym__line_ending, + STATE(1446), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, + ACTIONS(463), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5268), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(673), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(671), 37, + ACTIONS(461), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114309,9 +113970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114320,29 +113981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47501] = 4, - STATE(1147), 1, + [46996] = 5, + ACTIONS(5270), 1, + sym__line_ending, + STATE(1441), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, + ACTIONS(463), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5272), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(665), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(663), 37, + ACTIONS(461), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114360,7 +114022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -114368,29 +114030,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47553] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(669), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [47050] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, + sym__whitespace_ge_2, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(667), 37, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5274), 1, + sym__block_close, + ACTIONS(4831), 2, + sym__word_no_digit, + sym__digits, + STATE(1246), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114408,7 +114080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -114416,29 +114088,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47112] = 7, + ACTIONS(4279), 1, sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5278), 1, + sym__block_close, + ACTIONS(5276), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47605] = 4, - STATE(1230), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5384), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(758), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(756), 37, + STATE(1192), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__indented_chunk_repeat1, + ACTIONS(4893), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114456,6 +114130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114464,29 +114139,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47170] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, + ACTIONS(4829), 1, + aux_sym__whitespace_token1, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5282), 1, + sym__block_close, + ACTIONS(5280), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47657] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(758), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(756), 37, + STATE(1183), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114504,7 +114184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -114512,29 +114192,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47232] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, + ACTIONS(4861), 1, + aux_sym__whitespace_token1, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(5286), 1, + sym__block_close, + ACTIONS(5284), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47709] = 4, - STATE(1231), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5386), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(768), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(766), 37, + STATE(1264), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114546,12 +114231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114560,29 +114245,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47294] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, + ACTIONS(4877), 1, + aux_sym__whitespace_token1, + ACTIONS(4881), 1, + aux_sym__newline_token1, + ACTIONS(5290), 1, + sym__block_close, + ACTIONS(5288), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47761] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(768), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(766), 37, + STATE(1114), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114597,9 +114287,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114608,36 +114298,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47356] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, + aux_sym__newline_token1, + ACTIONS(5294), 1, + sym__block_close, + ACTIONS(5292), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47813] = 4, - STATE(1233), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5388), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(774), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(772), 37, + STATE(1262), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -114648,6 +114342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114656,29 +114351,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47418] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, + ACTIONS(4829), 1, + aux_sym__whitespace_token1, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5296), 1, + sym__block_close, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [47865] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(774), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(772), 37, + STATE(1246), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114696,7 +114396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -114704,24 +114404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [47917] = 4, - STATE(1234), 1, + [47480] = 4, + STATE(1227), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5390), 2, + ACTIONS(5298), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(782), 3, + ACTIONS(1209), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(780), 37, + ACTIONS(1207), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114759,22 +114452,34 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [47969] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(782), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [47532] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, + sym__whitespace_ge_2, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(780), 37, + ACTIONS(4881), 1, + aux_sym__newline_token1, + ACTIONS(5300), 1, + sym__block_close, + ACTIONS(4879), 2, + sym__word_no_digit, + sym__digits, + STATE(1221), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114789,9 +114494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114800,36 +114505,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47594] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, + aux_sym__newline_token1, + ACTIONS(5302), 1, + sym__block_close, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48021] = 4, - STATE(1235), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5392), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(619), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(617), 37, + STATE(1148), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -114840,6 +114549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114848,35 +114558,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [48073] = 9, - ACTIONS(4860), 1, + [47656] = 9, + ACTIONS(4807), 1, anon_sym_DASH, - ACTIONS(4862), 1, + ACTIONS(4809), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(5394), 1, + ACTIONS(5306), 1, sym__block_close, - ACTIONS(4894), 2, + ACTIONS(5304), 2, sym__word_no_digit, sym__digits, - STATE(1152), 4, + STATE(1110), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -114908,22 +114611,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48135] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(619), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [47718] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, + sym__whitespace_ge_2, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(617), 37, + ACTIONS(4865), 1, + aux_sym__newline_token1, + ACTIONS(5308), 1, + sym__block_close, + ACTIONS(4965), 2, + sym__word_no_digit, + sym__digits, + STATE(1220), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114935,12 +114650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114949,29 +114664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [48187] = 4, - STATE(1236), 1, + [47780] = 5, + ACTIONS(463), 1, + aux_sym__whitespace_token1, + ACTIONS(5310), 1, + sym__line_ending, + STATE(1433), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5396), 2, + ACTIONS(5312), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(790), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(788), 37, + ACTIONS(461), 38, + sym__block_close, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114989,6 +114700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -114997,29 +114709,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [48239] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(790), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [47834] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, + sym__whitespace_ge_2, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(788), 37, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5316), 1, + sym__block_close, + ACTIONS(5314), 2, + sym__word_no_digit, + sym__digits, + STATE(1185), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115037,7 +114758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -115045,29 +114766,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47896] = 9, + ACTIONS(5321), 1, + anon_sym_RBRACK, + ACTIONS(5324), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5327), 1, sym__whitespace_ge_2, + ACTIONS(5330), 1, + aux_sym__whitespace_token1, + ACTIONS(5336), 1, + aux_sym__newline_token1, + ACTIONS(5339), 1, + sym__block_close, + ACTIONS(5333), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48291] = 4, - STATE(1237), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5398), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(822), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(820), 37, + STATE(1246), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(5318), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115085,7 +114811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -115093,29 +114819,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [47958] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, + ACTIONS(4829), 1, + aux_sym__whitespace_token1, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5343), 1, + sym__block_close, + ACTIONS(5341), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48343] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(822), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(820), 37, + STATE(1238), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115133,7 +114864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -115141,35 +114872,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [48395] = 9, - ACTIONS(4840), 1, - anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + [48020] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5400), 1, + ACTIONS(5347), 1, sym__block_close, - ACTIONS(4848), 2, + ACTIONS(5345), 2, sym__word_no_digit, sym__digits, - STATE(1136), 4, + STATE(1240), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115187,9 +114911,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -115201,28 +114925,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48457] = 9, - ACTIONS(4880), 1, - anon_sym_RBRACK, - ACTIONS(4882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(4884), 1, + [48082] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4886), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4890), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(5404), 1, + ACTIONS(5351), 1, sym__block_close, - ACTIONS(5402), 2, + ACTIONS(5349), 2, sym__word_no_digit, sym__digits, - STATE(1226), 4, + STATE(1241), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_5_repeat1, - ACTIONS(4878), 31, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115235,7 +114959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -115247,6 +114970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -115254,28 +114978,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48519] = 9, - ACTIONS(4820), 1, - anon_sym_QMARK, - ACTIONS(4822), 1, - anon_sym_QMARK_GT, - ACTIONS(4824), 1, + [48144] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4826), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4830), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5408), 1, + ACTIONS(5355), 1, sym__block_close, - ACTIONS(5406), 2, + ACTIONS(5353), 2, sym__word_no_digit, sym__digits, - STATE(1227), 4, + STATE(1243), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_3_repeat1, - ACTIONS(4818), 31, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115293,9 +115017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -115307,17 +115031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [48581] = 4, - STATE(1239), 1, + [48206] = 4, + STATE(1251), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5410), 2, + ACTIONS(5357), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(998), 3, + ACTIONS(475), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(996), 37, + ACTIONS(473), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115355,22 +115079,31 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [48633] = 4, - STATE(1241), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5412), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1006), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [48258] = 7, + ACTIONS(5363), 1, + sym__whitespace_ge_2, + ACTIONS(5366), 1, aux_sym__whitespace_token1, - ACTIONS(1004), 37, + ACTIONS(5372), 1, + aux_sym__newline_token1, + ACTIONS(5375), 1, + sym__block_close, + ACTIONS(5369), 2, + sym__word_no_digit, + sym__digits, + STATE(1252), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__indented_chunk_repeat1, + ACTIONS(5360), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115388,6 +115121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -115396,32 +115130,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [48316] = 7, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4726), 1, + aux_sym__whitespace_token1, + ACTIONS(4720), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(4722), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + STATE(1149), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym_link_destination_repeat2, + ACTIONS(4724), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48685] = 4, - STATE(1243), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5414), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(625), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(623), 37, + ACTIONS(4718), 28, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -115444,29 +115181,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [48374] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, + ACTIONS(4877), 1, + aux_sym__whitespace_token1, + ACTIONS(4881), 1, + aux_sym__newline_token1, + ACTIONS(5379), 1, + sym__block_close, + ACTIONS(5377), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48737] = 4, - STATE(1245), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5416), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1014), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(1012), 37, + STATE(1186), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115481,9 +115223,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -115492,29 +115234,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [48436] = 7, + ACTIONS(4279), 1, sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5383), 1, + sym__block_close, + ACTIONS(5381), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48789] = 4, - STATE(1248), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5418), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1020), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(1018), 37, + STATE(1117), 5, + sym__text, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__indented_chunk_repeat1, + ACTIONS(4893), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115532,6 +115276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -115540,29 +115285,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [48494] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, + ACTIONS(4829), 1, + aux_sym__whitespace_token1, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5387), 1, + sym__block_close, + ACTIONS(5385), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48841] = 4, - STATE(1250), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5420), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1032), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(1030), 37, + STATE(1115), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115580,7 +115330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -115588,36 +115338,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [48556] = 9, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, + ACTIONS(4847), 1, + aux_sym__whitespace_token1, + ACTIONS(5389), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5393), 1, + sym__last_token_punctuation, + ACTIONS(5391), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48893] = 4, - STATE(1252), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5422), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1084), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(1082), 37, + STATE(1269), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -115628,6 +115382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -115636,29 +115391,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [48618] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, + aux_sym__newline_token1, + ACTIONS(5397), 1, + sym__block_close, + ACTIONS(5395), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48945] = 4, - STATE(1147), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5017), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1084), 3, + STATE(1169), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [48680] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, + sym__whitespace_ge_2, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(1082), 37, + ACTIONS(4881), 1, + aux_sym__newline_token1, + ACTIONS(5399), 1, + sym__block_close, + ACTIONS(4879), 2, + sym__word_no_digit, + sym__digits, + STATE(1221), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115673,9 +115486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -115684,35 +115497,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [48742] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, + ACTIONS(4829), 1, + aux_sym__whitespace_token1, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5401), 1, + sym__block_close, + ACTIONS(4831), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [48997] = 9, - ACTIONS(4840), 1, + STATE(1246), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, anon_sym_LT, - ACTIONS(4842), 1, - aux_sym__html_block_1_token2, - ACTIONS(4844), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [48804] = 9, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_QMARK_GT, + ACTIONS(4875), 1, sym__whitespace_ge_2, - ACTIONS(4846), 1, + ACTIONS(4877), 1, aux_sym__whitespace_token1, - ACTIONS(4850), 1, + ACTIONS(4881), 1, aux_sym__newline_token1, - ACTIONS(5426), 1, + ACTIONS(5403), 1, sym__block_close, - ACTIONS(5424), 2, + ACTIONS(4879), 2, sym__word_no_digit, sym__digits, - STATE(1253), 4, + STATE(1221), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_1_repeat1, - ACTIONS(4838), 31, + aux_sym__html_block_3_repeat1, + ACTIONS(4869), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115730,9 +115589,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -115744,28 +115603,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49059] = 9, - ACTIONS(4860), 1, + [48866] = 9, + ACTIONS(4807), 1, anon_sym_DASH, - ACTIONS(4862), 1, + ACTIONS(4809), 1, anon_sym_DASH_DASH_GT, - ACTIONS(4864), 1, + ACTIONS(4811), 1, sym__whitespace_ge_2, - ACTIONS(4866), 1, + ACTIONS(4813), 1, aux_sym__whitespace_token1, - ACTIONS(4870), 1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(5430), 1, + ACTIONS(5405), 1, sym__block_close, - ACTIONS(5428), 2, + ACTIONS(4815), 2, sym__word_no_digit, sym__digits, - STATE(1247), 4, + STATE(1148), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_2_repeat1, - ACTIONS(4858), 31, + ACTIONS(4805), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115797,25 +115656,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49121] = 8, - ACTIONS(4292), 1, + [48928] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(4316), 1, + ACTIONS(5409), 1, sym__block_close, - STATE(1610), 1, - sym__newline, - ACTIONS(5434), 2, + ACTIONS(5407), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1141), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115833,7 +115695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -115848,25 +115709,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49180] = 8, - ACTIONS(4292), 1, + [48990] = 9, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + aux_sym__html_block_1_token2, + ACTIONS(4859), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4861), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4865), 1, aux_sym__newline_token1, - ACTIONS(5438), 1, + ACTIONS(5411), 1, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5436), 2, + ACTIONS(4965), 2, sym__word_no_digit, sym__digits, - STATE(1307), 3, + STATE(1220), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_1_repeat1, + ACTIONS(4853), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115884,7 +115748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -115899,26 +115762,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49239] = 8, - ACTIONS(1754), 1, + [49052] = 9, + ACTIONS(4807), 1, + anon_sym_DASH, + ACTIONS(4809), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4811), 1, + sym__whitespace_ge_2, + ACTIONS(4813), 1, + aux_sym__whitespace_token1, + ACTIONS(4817), 1, aux_sym__newline_token1, - ACTIONS(4908), 1, + ACTIONS(5413), 1, + sym__block_close, + ACTIONS(4815), 2, + sym__word_no_digit, + sym__digits, + STATE(1148), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_2_repeat1, + ACTIONS(4805), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [49114] = 4, + STATE(1251), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5032), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(494), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(492), 37, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DASH, - ACTIONS(4912), 1, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [49166] = 9, + ACTIONS(4823), 1, + anon_sym_RBRACK, + ACTIONS(4825), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(4827), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4829), 1, aux_sym__whitespace_token1, - ACTIONS(5228), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5230), 2, + ACTIONS(4833), 1, + aux_sym__newline_token1, + ACTIONS(5417), 1, + sym__block_close, + ACTIONS(5415), 2, sym__word_no_digit, sym__digits, - STATE(1300), 4, + STATE(1260), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_5_repeat1, + ACTIONS(4821), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [49228] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5421), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5419), 2, + sym__word_no_digit, + sym__digits, + STATE(1280), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -115931,6 +115947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -115950,26 +115967,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49298] = 8, - ACTIONS(1754), 1, + [49287] = 8, + ACTIONS(1705), 1, aux_sym__newline_token1, - ACTIONS(4908), 1, + ACTIONS(4841), 1, anon_sym_DASH, - ACTIONS(4912), 1, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5228), 1, + ACTIONS(5080), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1465), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116001,26 +116018,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49357] = 8, - ACTIONS(3316), 1, - aux_sym__newline_token1, - ACTIONS(5442), 1, - anon_sym_QMARK, - ACTIONS(5444), 1, - anon_sym_QMARK_GT, - ACTIONS(5446), 1, + [49346] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5448), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5450), 2, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5431), 1, + sym__block_close, + ACTIONS(5429), 2, sym__word_no_digit, sym__digits, - STATE(1447), 4, + STATE(1291), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3057), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116040,7 +116057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -116052,38 +116069,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49416] = 10, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + [49405] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1666), 1, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5435), 1, + sym__block_close, + ACTIONS(5433), 2, + sym__word_no_digit, + sym__digits, + STATE(1443), 4, sym__whitespace, - STATE(2036), 1, - sym_link_destination, - ACTIONS(4154), 2, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [49464] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4333), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + STATE(1298), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -116092,11 +116156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -116105,32 +116171,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49479] = 10, + [49523] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4162), 1, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4492), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - STATE(1271), 1, + STATE(1343), 1, sym__soft_line_break, - STATE(2055), 1, + STATE(2065), 1, sym_link_destination, - STATE(2108), 1, + STATE(2109), 1, sym__newline, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116158,38 +116224,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49542] = 10, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + [49586] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym__whitespace, - STATE(2055), 1, - sym_link_destination, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5441), 1, + sym__block_close, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + STATE(1443), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -116198,11 +116261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -116211,38 +116275,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49605] = 10, - ACTIONS(41), 1, + [49645] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1273), 1, - sym__soft_line_break, - STATE(2043), 1, - sym_link_destination, - STATE(2108), 1, + ACTIONS(5445), 1, + sym__block_close, + STATE(1587), 1, sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5443), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + STATE(1350), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -116251,11 +116311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -116264,32 +116326,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49668] = 10, - ACTIONS(4162), 1, + [49704] = 10, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - STATE(1647), 1, + STATE(1661), 1, sym__whitespace, - STATE(2043), 1, + STATE(2065), 1, sym_link_destination, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116317,26 +116379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49731] = 8, - ACTIONS(3131), 1, - anon_sym_RBRACK, - ACTIONS(3296), 1, - aux_sym__newline_token1, - ACTIONS(5452), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5454), 1, + [49767] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5456), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5458), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5449), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5447), 2, sym__word_no_digit, sym__digits, - STATE(1448), 4, + STATE(1292), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3129), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116361,6 +116422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -116368,25 +116430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49790] = 8, - ACTIONS(4292), 1, + [49826] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5462), 1, + ACTIONS(5453), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5460), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1305), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116419,25 +116481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49849] = 8, - ACTIONS(4292), 1, + [49885] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5466), 1, + ACTIONS(5457), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5464), 2, + ACTIONS(5455), 2, sym__word_no_digit, sym__digits, - STATE(1306), 3, + STATE(1278), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116470,25 +116532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49908] = 8, - ACTIONS(4292), 1, + [49944] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5470), 1, + ACTIONS(5457), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116521,25 +116583,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [49967] = 8, - ACTIONS(4292), 1, + [50003] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5474), 1, + ACTIONS(4383), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5472), 2, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1279), 3, + STATE(1298), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116572,25 +116634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50026] = 8, - ACTIONS(4292), 1, + [50062] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5474), 1, + ACTIONS(5461), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5459), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1272), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116623,25 +116685,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50085] = 8, - ACTIONS(4292), 1, + [50121] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, + ACTIONS(5421), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116674,25 +116736,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50144] = 8, - ACTIONS(4292), 1, + [50180] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5476), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5465), 1, sym__block_close, - STATE(1575), 1, + ACTIONS(5463), 2, + sym__word_no_digit, + sym__digits, + STATE(1274), 4, + sym__whitespace, + sym__word, sym__newline, - ACTIONS(5478), 2, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [50239] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5467), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1281), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116725,25 +116838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50203] = 8, - ACTIONS(4292), 1, + [50298] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4434), 1, + ACTIONS(5469), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116776,18 +116889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50262] = 5, - ACTIONS(5480), 1, + [50357] = 5, + ACTIONS(5471), 1, sym__line_ending, - STATE(1478), 1, + STATE(1555), 1, aux_sym__ignore_matching_tokens, - ACTIONS(386), 2, + ACTIONS(463), 2, anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5482), 2, + ACTIONS(5473), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(384), 36, + ACTIONS(461), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116824,25 +116937,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [50315] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [50410] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4446), 1, + STATE(1288), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5475), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(473), 38, sym__block_close, - STATE(1610), 1, - sym__newline, - ACTIONS(5434), 2, - sym__word_no_digit, - sym__digits, - STATE(1338), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116875,26 +116980,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50374] = 8, - ACTIONS(4292), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [50461] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5490), 1, + ACTIONS(5469), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5478), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1302), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116914,6 +117022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -116926,25 +117035,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50433] = 8, - ACTIONS(4292), 1, + [50520] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5494), 1, + ACTIONS(5480), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5492), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1286), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -116977,26 +117086,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50492] = 8, - ACTIONS(4292), 1, + [50579] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, + ACTIONS(5427), 1, anon_sym_GT, - ACTIONS(5498), 1, + ACTIONS(5482), 1, sym__block_close, - ACTIONS(5496), 2, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - STATE(1287), 4, + STATE(1443), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117028,26 +117137,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50551] = 8, - ACTIONS(4292), 1, + [50638] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5502), 1, + ACTIONS(4457), 1, sym__block_close, - ACTIONS(5500), 2, + STATE(1587), 1, + sym__newline, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1304), 4, + STATE(1298), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117067,6 +117175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -117079,25 +117188,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50610] = 8, - ACTIONS(4292), 1, + [50697] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5504), 1, + ACTIONS(5484), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117130,25 +117239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50669] = 8, - ACTIONS(4292), 1, + [50756] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5508), 1, + ACTIONS(5488), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5506), 2, + ACTIONS(5486), 2, sym__word_no_digit, sym__digits, - STATE(1291), 3, + STATE(1293), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117181,25 +117290,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50728] = 8, - ACTIONS(4292), 1, + [50815] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5508), 1, + ACTIONS(5490), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117232,25 +117341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50787] = 8, - ACTIONS(4292), 1, + [50874] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5510), 1, + ACTIONS(4463), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117283,25 +117392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50846] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [50933] = 5, + ACTIONS(463), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5510), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5512), 2, - sym__word_no_digit, - sym__digits, - STATE(1293), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(5492), 1, + sym__line_ending, + STATE(1550), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5494), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117334,25 +117436,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50905] = 8, - ACTIONS(4292), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [50986] = 8, + ACTIONS(5499), 1, + sym__whitespace_ge_2, + ACTIONS(5502), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(5508), 1, aux_sym__newline_token1, - ACTIONS(4352), 1, + ACTIONS(5511), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5505), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1298), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5496), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117385,25 +117491,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [50964] = 8, - ACTIONS(4292), 1, + [51045] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(4300), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5515), 1, sym__block_close, - STATE(1610), 1, - sym__newline, - ACTIONS(5434), 2, + ACTIONS(5513), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1312), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117423,7 +117530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -117436,26 +117542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51023] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4910), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4912), 1, + [51104] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4916), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5519), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5517), 2, sym__word_no_digit, sym__digits, - STATE(1328), 4, + STATE(1304), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117468,6 +117573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -117487,26 +117593,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51082] = 8, - ACTIONS(4292), 1, + [51163] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5514), 1, + ACTIONS(5480), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5521), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1310), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117526,6 +117631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -117538,26 +117644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51141] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4910), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(4912), 1, + [51222] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5440), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5523), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117570,6 +117675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -117589,26 +117695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51200] = 8, - ACTIONS(5519), 1, - anon_sym_DASH, - ACTIONS(5522), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5524), 1, + [51281] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5527), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5533), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5530), 2, + ACTIONS(5519), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5516), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117621,6 +117726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -117640,25 +117746,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51259] = 8, - ACTIONS(4292), 1, + [51340] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5538), 1, + ACTIONS(5525), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5536), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1297), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117691,26 +117797,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51318] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [51399] = 5, + ACTIONS(5527), 1, + sym__line_ending, + STATE(1554), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(463), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(5030), 1, - aux_sym__newline_token1, - ACTIONS(5486), 1, + ACTIONS(5529), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 36, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(5542), 1, - sym__block_close, - ACTIONS(5540), 2, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [51452] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, + sym__whitespace_ge_2, + ACTIONS(4847), 1, + aux_sym__whitespace_token1, + ACTIONS(5531), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1299), 4, + STATE(1465), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117723,13 +117877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -117742,26 +117896,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51377] = 8, - ACTIONS(4292), 1, + [51511] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5544), 1, + ACTIONS(5535), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5533), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1337), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117781,6 +117934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -117793,25 +117947,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51436] = 8, - ACTIONS(4292), 1, + [51570] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4458), 1, + ACTIONS(5535), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117844,25 +117998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51495] = 8, - ACTIONS(4292), 1, + [51629] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4452), 1, + ACTIONS(5488), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117895,25 +118049,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51554] = 8, - ACTIONS(4292), 1, + [51688] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5546), 1, + ACTIONS(5537), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117946,25 +118100,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51613] = 8, - ACTIONS(4292), 1, + [51747] = 8, + ACTIONS(5542), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5545), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(5551), 1, aux_sym__newline_token1, - ACTIONS(5438), 1, + ACTIONS(5554), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5548), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(5539), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -117997,25 +118151,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51672] = 8, - ACTIONS(4292), 1, + [51806] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5548), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5556), 1, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1443), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118035,7 +118190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -118048,25 +118202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51731] = 8, - ACTIONS(4292), 1, + [51865] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5548), 1, + ACTIONS(5560), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5550), 2, + ACTIONS(5558), 2, sym__word_no_digit, sym__digits, - STATE(1308), 3, + STATE(1340), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118099,25 +118253,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51790] = 8, - ACTIONS(4292), 1, + [51924] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4438), 1, + ACTIONS(5560), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118150,25 +118304,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51849] = 8, - ACTIONS(4292), 1, + [51983] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4424), 1, + ACTIONS(5564), 1, sym__block_close, - STATE(1610), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5562), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1344), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118201,26 +118355,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51908] = 8, - ACTIONS(4292), 1, + [52042] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5552), 1, + ACTIONS(5467), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5566), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1290), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118240,6 +118393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -118252,25 +118406,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [51967] = 8, - ACTIONS(4292), 1, + [52101] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5556), 1, + ACTIONS(5568), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5554), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1312), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118303,26 +118457,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52026] = 8, - ACTIONS(4292), 1, + [52160] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5560), 1, + ACTIONS(5568), 1, sym__block_close, - ACTIONS(5558), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5570), 2, sym__word_no_digit, sym__digits, - STATE(1313), 4, + STATE(1286), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118342,116 +118495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [52085] = 10, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, - aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1676), 1, - sym__whitespace, - STATE(2045), 1, - sym_link_destination, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 27, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [52148] = 10, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1358), 1, - sym__soft_line_break, - STATE(2045), 1, - sym_link_destination, - STATE(2108), 1, - sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 27, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -118460,25 +118508,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52211] = 8, - ACTIONS(4292), 1, + [52219] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5562), 1, + ACTIONS(5572), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118511,25 +118559,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52270] = 8, - ACTIONS(4292), 1, + [52278] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5566), 1, + ACTIONS(5576), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5564), 2, + ACTIONS(5574), 2, sym__word_no_digit, sym__digits, - STATE(1318), 3, + STATE(1319), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118562,25 +118610,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52329] = 8, - ACTIONS(4292), 1, + [52337] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5566), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5578), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1465), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118593,7 +118642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -118613,25 +118661,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52388] = 8, - ACTIONS(4292), 1, + [52396] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5568), 1, + ACTIONS(5580), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118664,25 +118712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52447] = 8, - ACTIONS(4292), 1, + [52455] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5568), 1, + ACTIONS(5576), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5570), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1320), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118715,25 +118763,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52506] = 8, - ACTIONS(4292), 1, + [52514] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4306), 1, + ACTIONS(5582), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118766,25 +118814,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52565] = 8, - ACTIONS(4292), 1, + [52573] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4322), 1, + ACTIONS(5582), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5584), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1323), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118817,26 +118865,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52624] = 8, - ACTIONS(4292), 1, + [52632] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5572), 1, + ACTIONS(4323), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118856,6 +118903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -118868,25 +118916,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52683] = 8, - ACTIONS(4292), 1, + [52691] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5576), 1, + ACTIONS(4317), 1, sym__block_close, - STATE(1610), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5574), 2, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1324), 3, + STATE(1298), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -118919,35 +118967,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52742] = 8, - ACTIONS(4292), 1, + [52750] = 10, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, - aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5580), 1, - sym__block_close, - ACTIONS(5578), 2, - sym__word_no_digit, - sym__digits, - STATE(1325), 4, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1677), 1, sym__whitespace, + STATE(2063), 1, + sym_link_destination, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -118956,12 +119007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -118970,26 +119020,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52801] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [52813] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5582), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5586), 1, + sym__block_close, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1443), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119002,13 +119052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -119021,26 +119071,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52860] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [52872] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5582), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5584), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5590), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5588), 2, sym__word_no_digit, sym__digits, - STATE(1368), 4, + STATE(1427), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119053,6 +119102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -119072,26 +119122,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52919] = 8, - ACTIONS(5589), 1, - anon_sym_GT, - ACTIONS(5592), 1, + [52931] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5595), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5601), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5604), 1, + ACTIONS(5594), 1, sym__block_close, - ACTIONS(5598), 2, + STATE(1587), 1, + sym__newline, + ACTIONS(5592), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1327), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5586), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119111,6 +119160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -119123,25 +119173,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [52978] = 8, - ACTIONS(4292), 1, + [52990] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5606), 1, + ACTIONS(4297), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119174,25 +119224,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53037] = 8, - ACTIONS(4292), 1, + [53049] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5610), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5598), 1, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5608), 2, + ACTIONS(5596), 2, sym__word_no_digit, sym__digits, - STATE(1331), 3, + STATE(1329), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119212,7 +119263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -119225,17 +119275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53096] = 4, - ACTIONS(522), 1, + [53108] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - STATE(1333), 1, + STATE(1334), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5612), 2, + ACTIONS(5600), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 38, + ACTIONS(473), 38, sym__block_close, - sym__fenced_code_block_end_tilde, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119272,27 +119322,27 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [53147] = 8, - ACTIONS(4292), 1, + [53159] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5607), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5609), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5610), 1, - sym__block_close, - STATE(1575), 1, + STATE(2094), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5611), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1367), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__attribute_value_repeat2, + ACTIONS(5603), 31, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -119323,32 +119373,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53206] = 8, - ACTIONS(4292), 1, + [53218] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5605), 1, + anon_sym_SQUOTE, + ACTIONS(5607), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5609), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5615), 1, - sym__block_close, - STATE(1575), 1, + STATE(2094), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5615), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1369), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__attribute_value_repeat1, + ACTIONS(5613), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -119374,25 +119424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53265] = 8, - ACTIONS(4292), 1, + [53277] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5615), 1, + ACTIONS(5617), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5617), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1334), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119425,25 +119475,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53324] = 8, - ACTIONS(4292), 1, + [53336] = 8, + ACTIONS(3054), 1, + anon_sym_RBRACK, + ACTIONS(3179), 1, + aux_sym__newline_token1, + ACTIONS(5619), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5621), 1, + sym__whitespace_ge_2, + ACTIONS(5623), 1, + aux_sym__whitespace_token1, + ACTIONS(5625), 2, + sym__word_no_digit, + sym__digits, + STATE(1422), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(3052), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [53395] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4470), 1, + ACTIONS(5617), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5627), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1371), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119476,25 +119577,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53383] = 8, - ACTIONS(5622), 1, + [53454] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5625), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5631), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5634), 1, + ACTIONS(5629), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5628), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5619), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119527,25 +119628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53442] = 8, - ACTIONS(4292), 1, + [53513] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4464), 1, + ACTIONS(5629), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5631), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1373), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119578,26 +119679,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53501] = 8, - ACTIONS(4292), 1, + [53572] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5636), 1, + ACTIONS(5635), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1587), 1, + sym__newline, + ACTIONS(5633), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1423), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119617,6 +119717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -119629,25 +119730,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53560] = 8, - ACTIONS(4292), 1, + [53631] = 10, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1665), 1, + sym__whitespace, + STATE(2041), 1, + sym_link_destination, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [53694] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4442), 1, + ACTIONS(4327), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1298), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119680,25 +119834,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53619] = 8, - ACTIONS(4292), 1, + [53753] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4430), 1, + ACTIONS(5637), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119731,25 +119885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53678] = 8, - ACTIONS(4292), 1, + [53812] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5640), 1, + ACTIONS(5641), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5638), 2, + ACTIONS(5639), 2, sym__word_no_digit, sym__digits, - STATE(1339), 3, + STATE(1345), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119782,18 +119936,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53737] = 5, - ACTIONS(5642), 1, - sym__line_ending, - STATE(1516), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(386), 2, - anon_sym_DASH, + [53871] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5644), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 36, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5641), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, + sym__word_no_digit, + sym__digits, + STATE(1311), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119806,6 +119967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -119825,31 +119987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [53790] = 8, - ACTIONS(4292), 1, + [53930] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, + ACTIONS(5427), 1, anon_sym_GT, - ACTIONS(5648), 1, + ACTIONS(5645), 1, sym__block_close, - ACTIONS(5646), 2, + ACTIONS(5643), 2, sym__word_no_digit, sym__digits, - STATE(1340), 4, + STATE(1450), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -119881,28 +120038,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [53849] = 4, - ACTIONS(5650), 1, - sym__blank_line_start, - STATE(2333), 1, - sym__blank_line, - ACTIONS(4707), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [53989] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, + sym__whitespace_ge_2, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4705), 37, + ACTIONS(5389), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5391), 2, + sym__word_no_digit, + sym__digits, + STATE(1269), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -119913,6 +120080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -119921,28 +120089,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [54048] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4339), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [53900] = 4, - ACTIONS(5650), 1, - sym__blank_line_start, - STATE(2345), 1, - sym__blank_line, - ACTIONS(4765), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(4763), 37, + STATE(1298), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119960,6 +120131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -119968,32 +120140,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [54107] = 8, + ACTIONS(3220), 1, + aux_sym__newline_token1, + ACTIONS(5647), 1, + anon_sym_QMARK, + ACTIONS(5649), 1, + anon_sym_QMARK_GT, + ACTIONS(5651), 1, sym__whitespace_ge_2, + ACTIONS(5653), 1, + aux_sym__whitespace_token1, + ACTIONS(5655), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [53951] = 8, - ACTIONS(4292), 1, + STATE(1464), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(3076), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [54166] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5652), 1, + ACTIONS(5657), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120026,25 +120242,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54010] = 8, - ACTIONS(4292), 1, + [54225] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5656), 1, + ACTIONS(5659), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5654), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1348), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120077,25 +120293,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54069] = 8, - ACTIONS(4292), 1, + [54284] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5656), 1, + ACTIONS(5663), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5661), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1353), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120128,25 +120344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54128] = 8, - ACTIONS(4292), 1, + [54343] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5658), 1, + ACTIONS(5657), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5665), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1347), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120179,25 +120395,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54187] = 8, - ACTIONS(4292), 1, + [54402] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5658), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5660), 2, + ACTIONS(4913), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1350), 3, + STATE(1465), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120210,7 +120427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -120230,25 +120446,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54246] = 8, - ACTIONS(4292), 1, + [54461] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4338), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5389), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1465), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120261,7 +120478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -120281,25 +120497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54305] = 8, - ACTIONS(4292), 1, + [54520] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4332), 1, + ACTIONS(5663), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120332,26 +120548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54364] = 8, - ACTIONS(4292), 1, + [54579] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5662), 1, + ACTIONS(5667), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120371,6 +120586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -120383,25 +120599,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54423] = 8, - ACTIONS(4292), 1, + [54638] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5666), 1, + ACTIONS(5667), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5664), 2, + ACTIONS(5669), 2, sym__word_no_digit, sym__digits, - STATE(1354), 3, + STATE(1358), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120434,26 +120650,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54482] = 8, - ACTIONS(4292), 1, + [54697] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5670), 1, + ACTIONS(4379), 1, sym__block_close, - ACTIONS(5668), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1355), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120473,6 +120688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -120485,38 +120701,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54541] = 10, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + [54756] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1672), 1, - sym__whitespace, - STATE(2049), 1, - sym_link_destination, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4429), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + STATE(1311), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -120525,11 +120737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -120538,38 +120752,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54604] = 10, - ACTIONS(41), 1, + [54815] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, + aux_sym__whitespace_token1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1395), 1, - sym__soft_line_break, - STATE(2049), 1, - sym_link_destination, - STATE(2108), 1, + ACTIONS(4406), 1, + sym__block_close, + STATE(1561), 1, sym__newline, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + STATE(1311), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -120578,11 +120788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -120591,25 +120803,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54667] = 8, - ACTIONS(4292), 1, + [54874] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5672), 1, + ACTIONS(4443), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1298), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120642,25 +120854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54726] = 8, - ACTIONS(4292), 1, + [54933] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5676), 1, + ACTIONS(4437), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5674), 2, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1360), 3, + STATE(1298), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120693,25 +120905,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54785] = 8, - ACTIONS(4292), 1, + [54992] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5676), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5671), 1, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1443), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120731,7 +120944,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -120744,27 +120956,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54844] = 8, - ACTIONS(4292), 1, + [55051] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(5607), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5609), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5678), 1, - sym__block_close, - STATE(1575), 1, + ACTIONS(5673), 1, + anon_sym_DQUOTE, + STATE(2094), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5675), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1381), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__attribute_value_repeat2, + ACTIONS(5603), 31, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -120795,32 +121007,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54903] = 8, - ACTIONS(4292), 1, + [55110] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4913), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4915), 2, + sym__word_no_digit, + sym__digits, + STATE(1459), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [55169] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(5678), 1, - sym__block_close, - STATE(1575), 1, + ACTIONS(5607), 1, + sym__whitespace_ge_2, + ACTIONS(5609), 1, + aux_sym__whitespace_token1, + ACTIONS(5673), 1, + anon_sym_SQUOTE, + STATE(2094), 1, sym__newline, - ACTIONS(5680), 2, + ACTIONS(5677), 2, sym__word_no_digit, sym__digits, - STATE(1362), 3, + STATE(1382), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__attribute_value_repeat1, + ACTIONS(5613), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -120846,25 +121109,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [54962] = 8, - ACTIONS(4292), 1, + [55228] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(4356), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5679), 1, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1443), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120884,7 +121148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -120897,25 +121160,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55021] = 8, - ACTIONS(4292), 1, + [55287] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4360), 1, + ACTIONS(5681), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120948,26 +121211,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55080] = 8, - ACTIONS(4292), 1, + [55346] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5682), 1, + ACTIONS(4449), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -120987,6 +121249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -120999,26 +121262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55139] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [55405] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5684), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5683), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121031,6 +121293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -121050,25 +121313,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55198] = 8, - ACTIONS(4292), 1, + [55464] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5688), 1, + ACTIONS(5525), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5686), 2, + ACTIONS(5685), 2, sym__word_no_digit, sym__digits, - STATE(1401), 3, + STATE(1383), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121101,25 +121364,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55257] = 8, - ACTIONS(4292), 1, + [55523] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5692), 1, + ACTIONS(5689), 1, sym__block_close, - STATE(1610), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5690), 2, + ACTIONS(5687), 2, sym__word_no_digit, sym__digits, - STATE(1366), 3, + STATE(1365), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121152,26 +121415,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55316] = 8, - ACTIONS(4292), 1, + [55582] = 8, + ACTIONS(3220), 1, + aux_sym__newline_token1, + ACTIONS(5647), 1, + anon_sym_QMARK, + ACTIONS(5651), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5653), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, - aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5696), 1, - sym__block_close, - ACTIONS(5694), 2, + ACTIONS(5691), 1, + anon_sym_QMARK_GT, + ACTIONS(5655), 2, sym__word_no_digit, sym__digits, - STATE(1367), 4, + STATE(1464), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_comment_repeat1, + ACTIONS(3076), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121191,7 +121454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_QMARK, + anon_sym_GT, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -121203,25 +121466,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55375] = 8, - ACTIONS(4292), 1, + [55641] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5688), 1, + ACTIONS(5695), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5693), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1364), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121254,25 +121517,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55434] = 8, - ACTIONS(5701), 1, + [55700] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5704), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5710), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5713), 1, + ACTIONS(4433), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5707), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(5698), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121305,25 +121568,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55493] = 8, - ACTIONS(4292), 1, + [55759] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5717), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5699), 1, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5715), 2, + ACTIONS(5697), 2, sym__word_no_digit, sym__digits, - STATE(1403), 3, + STATE(1366), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121343,7 +121607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -121356,25 +121619,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55552] = 8, - ACTIONS(4292), 1, + [55818] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5717), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5703), 1, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5701), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1370), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121394,7 +121658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -121407,27 +121670,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55611] = 8, - ACTIONS(4292), 1, + [55877] = 8, + ACTIONS(5708), 1, + anon_sym_DQUOTE, + ACTIONS(5710), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5713), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, ACTIONS(5719), 1, - sym__block_close, - STATE(1575), 1, + aux_sym__newline_token1, + STATE(2094), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5716), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1381), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__attribute_value_repeat2, + ACTIONS(5705), 31, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -121458,32 +121721,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55670] = 8, - ACTIONS(4292), 1, + [55936] = 8, + ACTIONS(5725), 1, + anon_sym_SQUOTE, + ACTIONS(5727), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5730), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(5736), 1, aux_sym__newline_token1, - ACTIONS(5723), 1, - sym__block_close, - STATE(1575), 1, + STATE(2094), 1, sym__newline, - ACTIONS(5721), 2, + ACTIONS(5733), 2, sym__word_no_digit, sym__digits, - STATE(1376), 3, + STATE(1382), 4, + sym__soft_line_break, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__attribute_value_repeat1, + ACTIONS(5722), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, - anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -121509,25 +121772,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55729] = 8, - ACTIONS(4292), 1, + [55995] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5723), 1, + ACTIONS(5739), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121560,25 +121823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55788] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [56054] = 4, + ACTIONS(494), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5725), 1, + STATE(1288), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5741), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(492), 38, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, - sym__word_no_digit, - sym__digits, - STATE(1373), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121611,25 +121866,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55847] = 8, - ACTIONS(4292), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [56105] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5725), 1, + ACTIONS(5743), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5727), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1378), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121662,25 +121921,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55906] = 8, - ACTIONS(4292), 1, + [56164] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4328), 1, + ACTIONS(5747), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5745), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1385), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121713,25 +121972,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [55965] = 8, - ACTIONS(4292), 1, + [56223] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4342), 1, + ACTIONS(5747), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121764,26 +122023,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56024] = 8, - ACTIONS(4292), 1, + [56282] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5729), 1, + ACTIONS(5749), 1, sym__block_close, - ACTIONS(5488), 2, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, + STATE(1311), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121803,6 +122061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -121815,31 +122074,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56083] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [56341] = 4, + ACTIONS(5751), 1, + sym__blank_line_start, + STATE(2381), 1, + sym__blank_line, + ACTIONS(4744), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5733), 1, - sym__block_close, - STATE(1610), 1, - sym__newline, - ACTIONS(5731), 2, - sym__word_no_digit, - sym__digits, - STATE(1382), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + ACTIONS(4742), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121857,7 +122106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -121866,76 +122114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56142] = 8, - ACTIONS(4292), 1, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(5030), 1, - aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5737), 1, - sym__block_close, - ACTIONS(5735), 2, sym__word_no_digit, sym__digits, - STATE(1383), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [56201] = 8, - ACTIONS(4292), 1, + aux_sym__newline_token1, + [56392] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5739), 1, + ACTIONS(5490), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5753), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1387), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -121968,25 +122172,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56260] = 8, - ACTIONS(4292), 1, + [56451] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5743), 1, + ACTIONS(5755), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5741), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1386), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122019,25 +122223,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56319] = 8, - ACTIONS(4292), 1, + [56510] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5743), 1, + ACTIONS(5759), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5757), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1391), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122070,25 +122274,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56378] = 8, - ACTIONS(4292), 1, + [56569] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5745), 1, + ACTIONS(5759), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122121,25 +122325,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56437] = 8, - ACTIONS(4292), 1, + [56628] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5745), 1, + ACTIONS(5761), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5747), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1388), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122172,76 +122376,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56496] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [56687] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5749), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, - sym__word_no_digit, - sym__digits, - STATE(1301), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [56555] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4312), 1, + ACTIONS(5761), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5763), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1393), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122274,77 +122427,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56614] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, - sym__whitespace_ge_2, - ACTIONS(4914), 1, - aux_sym__whitespace_token1, - ACTIONS(5751), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5753), 2, - sym__word_no_digit, - sym__digits, - STATE(1391), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [56673] = 8, - ACTIONS(1754), 1, + [56746] = 8, + ACTIONS(1705), 1, aux_sym__newline_token1, - ACTIONS(4908), 1, + ACTIONS(4841), 1, anon_sym_DASH, - ACTIONS(4912), 1, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5751), 1, + ACTIONS(5765), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1465), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122376,80 +122478,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56732] = 10, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4166), 1, + [56805] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(1663), 1, - sym__whitespace, - STATE(2063), 1, - sym_link_destination, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 27, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [56795] = 8, - ACTIONS(41), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5757), 1, - anon_sym_DQUOTE, - ACTIONS(5759), 1, - sym__whitespace_ge_2, - ACTIONS(5761), 1, - aux_sym__whitespace_token1, - STATE(2107), 1, + ACTIONS(4413), 1, + sym__block_close, + STATE(1561), 1, sym__newline, - ACTIONS(5763), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1412), 4, - sym__soft_line_break, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5755), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -122480,32 +122529,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56854] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5757), 1, - anon_sym_SQUOTE, - ACTIONS(5759), 1, + [56864] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5761), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - STATE(2107), 1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4287), 1, + sym__block_close, + STATE(1561), 1, sym__newline, - ACTIONS(5767), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1428), 4, - sym__soft_line_break, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5765), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -122531,77 +122580,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [56913] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(5030), 1, + [56923] = 8, + ACTIONS(1705), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5769), 1, - sym__block_close, - ACTIONS(5488), 2, - sym__word_no_digit, - sym__digits, - STATE(1330), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, + ACTIONS(4841), 1, anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [56972] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5332), 1, + ACTIONS(5767), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(5769), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1396), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122633,26 +122631,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57031] = 8, - ACTIONS(1754), 1, + [56982] = 8, + ACTIONS(1705), 1, aux_sym__newline_token1, - ACTIONS(4908), 1, + ACTIONS(4841), 1, anon_sym_DASH, - ACTIONS(4912), 1, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5332), 1, + ACTIONS(5767), 1, anon_sym_DASH_DASH_GT, - ACTIONS(5334), 2, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1394), 4, + STATE(1465), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122684,25 +122682,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57090] = 8, - ACTIONS(4292), 1, + [57041] = 8, + ACTIONS(3054), 1, + anon_sym_RBRACK, + ACTIONS(3179), 1, + aux_sym__newline_token1, + ACTIONS(5621), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5623), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, ACTIONS(5771), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5625), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1422), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(3052), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122727,7 +122726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -122735,25 +122733,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57149] = 8, - ACTIONS(4292), 1, + [57100] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5771), 1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5775), 1, sym__block_close, - STATE(1575), 1, - sym__newline, ACTIONS(5773), 2, sym__word_no_digit, sym__digits, - STATE(1413), 3, + STATE(1271), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122773,7 +122772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -122786,25 +122784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57208] = 8, - ACTIONS(4292), 1, + [57159] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5775), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5777), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5779), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1321), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122817,7 +122816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -122837,73 +122835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57267] = 5, - ACTIONS(5777), 1, - sym__line_ending, - STATE(1539), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(386), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(5779), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 36, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [57320] = 8, - ACTIONS(4292), 1, + [57218] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5775), 1, + ACTIONS(4307), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5781), 2, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1414), 3, + STATE(1298), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122936,25 +122886,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57379] = 8, - ACTIONS(4292), 1, + [57277] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5785), 1, - sym__block_close, - STATE(1610), 1, - sym__newline, - ACTIONS(5783), 2, + ACTIONS(5777), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1266), 3, + STATE(1465), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -122967,7 +122918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -122987,26 +122937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57438] = 8, - ACTIONS(3131), 1, + [57336] = 5, + ACTIONS(5781), 1, + sym__line_ending, + STATE(1537), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(463), 2, anon_sym_RBRACK, - ACTIONS(3296), 1, - aux_sym__newline_token1, - ACTIONS(5454), 1, - sym__whitespace_ge_2, - ACTIONS(5456), 1, aux_sym__whitespace_token1, - ACTIONS(5787), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5458), 2, - sym__word_no_digit, - sym__digits, - STATE(1448), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3129), 31, + ACTIONS(5783), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123038,26 +122980,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57497] = 8, - ACTIONS(4292), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(4294), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [57389] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5030), 1, + ACTIONS(4897), 1, aux_sym__newline_token1, - ACTIONS(5486), 1, + ACTIONS(5427), 1, anon_sym_GT, - ACTIONS(5791), 1, + ACTIONS(5785), 1, sym__block_close, - ACTIONS(5789), 2, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - STATE(1398), 4, + STATE(1443), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123089,26 +123036,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57556] = 8, - ACTIONS(3316), 1, - aux_sym__newline_token1, - ACTIONS(5442), 1, - anon_sym_QMARK, - ACTIONS(5446), 1, + [57448] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5448), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5793), 1, - anon_sym_QMARK_GT, - ACTIONS(5450), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5789), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5787), 2, sym__word_no_digit, sym__digits, - STATE(1447), 4, + STATE(1404), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3057), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123129,6 +123075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -123140,26 +123087,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57615] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [57507] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5348), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5791), 1, + sym__block_close, + ACTIONS(5433), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1443), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123172,13 +123119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -123191,26 +123138,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57674] = 8, - ACTIONS(1754), 1, + [57566] = 8, + ACTIONS(3054), 1, + anon_sym_RBRACK, + ACTIONS(3179), 1, aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + ACTIONS(5621), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(5623), 1, aux_sym__whitespace_token1, - ACTIONS(5348), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5350), 2, + ACTIONS(5793), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5625), 2, sym__word_no_digit, sym__digits, - STATE(1399), 4, + STATE(1422), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(3052), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123223,6 +123170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -123234,7 +123182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -123242,27 +123189,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57733] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5759), 1, - sym__whitespace_ge_2, - ACTIONS(5761), 1, + [57625] = 5, + ACTIONS(463), 1, aux_sym__whitespace_token1, ACTIONS(5795), 1, - anon_sym_DQUOTE, - STATE(2107), 1, - sym__newline, + sym__line_ending, + STATE(1526), 1, + aux_sym__ignore_matching_tokens, ACTIONS(5797), 2, - sym__word_no_digit, - sym__digits, - STATE(1430), 4, - sym__soft_line_break, - sym__whitespace, - sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5755), 31, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(461), 37, + sym__block_close, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -123293,76 +123233,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57792] = 8, - ACTIONS(4292), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5799), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [57851] = 8, - ACTIONS(4292), 1, + aux_sym__newline_token1, + [57678] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, ACTIONS(5801), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5799), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1457), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123395,25 +123288,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57910] = 8, - ACTIONS(4292), 1, + [57737] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5803), 1, + ACTIONS(5805), 1, sym__block_close, - STATE(1575), 1, + STATE(1587), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5803), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1437), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123446,25 +123339,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [57969] = 8, - ACTIONS(4292), 1, + [57796] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5805), 1, + ACTIONS(4293), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123497,25 +123390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58028] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [57855] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5809), 1, + STATE(1288), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5741), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 38, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5807), 2, - sym__word_no_digit, - sym__digits, - STATE(1415), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123548,136 +123433,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58087] = 8, - ACTIONS(4292), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5809), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, + aux_sym__newline_token1, + [57906] = 10, + ACTIONS(4163), 1, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [58146] = 8, - ACTIONS(4292), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5813), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5811), 2, - sym__word_no_digit, - sym__digits, - STATE(1416), 3, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1649), 1, sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + STATE(2036), 1, + sym_link_destination, + ACTIONS(4155), 2, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [58205] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5813), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1373), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -123686,13 +123477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -123701,25 +123490,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58264] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [57969] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5815), 1, + STATE(1384), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5807), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 38, sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, - sym__word_no_digit, - sym__digits, - STATE(1373), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123752,76 +123533,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58323] = 8, - ACTIONS(4292), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5815), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5817), 2, sym__word_no_digit, sym__digits, - STATE(1418), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, + aux_sym__newline_token1, + [58020] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [58382] = 8, - ACTIONS(4292), 1, + ACTIONS(4843), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5819), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1465), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123834,7 +123569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -123854,34 +123588,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58441] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(4298), 1, + [58079] = 10, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(5819), 1, - sym__block_close, - STATE(1575), 1, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1276), 1, + sym__soft_line_break, + STATE(2036), 1, + sym_link_destination, + STATE(2109), 1, sym__newline, - ACTIONS(5821), 2, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - STATE(1420), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -123890,13 +123628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -123905,17 +123641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58500] = 4, - ACTIONS(522), 1, + [58142] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - STATE(1425), 1, + STATE(1420), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5823), 2, + ACTIONS(5809), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 38, + ACTIONS(473), 38, sym__block_close, - sym__fenced_code_block_end_backtick, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123952,26 +123688,25 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [58551] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [58193] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5826), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5749), 1, + sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5812), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1424), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -123984,6 +123719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -124003,25 +123739,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58610] = 8, - ACTIONS(4292), 1, + [58252] = 8, + ACTIONS(5817), 1, + anon_sym_RBRACK, + ACTIONS(5820), 1, + anon_sym_RBRACK_RBRACK_GT, + ACTIONS(5822), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(5825), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(5831), 1, aux_sym__newline_token1, - ACTIONS(4348), 1, - sym__block_close, - STATE(1575), 1, - sym__newline, - ACTIONS(5468), 2, + ACTIONS(5828), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1422), 4, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5814), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124046,7 +123783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -124054,32 +123790,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58669] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(5759), 1, + [58311] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5761), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5795), 1, - anon_sym_SQUOTE, - STATE(2107), 1, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4301), 1, + sym__block_close, + STATE(1587), 1, sym__newline, - ACTIONS(5828), 2, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1433), 4, - sym__soft_line_break, + STATE(1298), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5765), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -124105,25 +123841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58728] = 8, - ACTIONS(4292), 1, + [58370] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4381), 1, + ACTIONS(5834), 1, sym__block_close, - STATE(1575), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5468), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1373), 3, + STATE(1311), 3, sym__whitespace, sym__word, aux_sym__html_block_6_repeat2, - ACTIONS(4290), 32, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124156,27 +123892,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58787] = 8, - ACTIONS(5833), 1, - anon_sym_DQUOTE, - ACTIONS(5835), 1, + [58429] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5838), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5844), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - STATE(2107), 1, + ACTIONS(5836), 1, + sym__block_close, + STATE(1561), 1, sym__newline, - ACTIONS(5841), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1430), 4, - sym__soft_line_break, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat2, - ACTIONS(5830), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -124207,26 +123943,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58846] = 8, - ACTIONS(1754), 1, + [58488] = 8, + ACTIONS(1705), 1, aux_sym__newline_token1, - ACTIONS(4908), 1, + ACTIONS(4841), 1, anon_sym_DASH, - ACTIONS(4912), 1, + ACTIONS(4843), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4845), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5847), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5849), 2, + ACTIONS(4849), 2, sym__word_no_digit, sym__digits, - STATE(1426), 4, + STATE(1400), 4, sym__whitespace, sym__word, sym__newline, aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124258,26 +123994,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58905] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [58547] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5847), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4400), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1298), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124290,6 +124025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -124309,32 +124045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [58964] = 8, - ACTIONS(5854), 1, - anon_sym_SQUOTE, - ACTIONS(5856), 1, + [58606] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5859), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5865), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - STATE(2107), 1, + ACTIONS(4453), 1, + sym__block_close, + STATE(1561), 1, sym__newline, - ACTIONS(5862), 2, + ACTIONS(5451), 2, sym__word_no_digit, sym__digits, - STATE(1433), 4, - sym__soft_line_break, + STATE(1311), 3, sym__whitespace, sym__word, - aux_sym__attribute_value_repeat1, - ACTIONS(5851), 31, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -124360,25 +124096,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59023] = 8, - ACTIONS(4292), 1, + [58665] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(4375), 1, + ACTIONS(5836), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5434), 2, + ACTIONS(5838), 2, sym__word_no_digit, sym__digits, - STATE(1338), 3, + STATE(1309), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124411,25 +124147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59082] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [58724] = 4, + ACTIONS(494), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(4366), 1, + STATE(1420), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(492), 38, sym__block_close, - STATE(1610), 1, - sym__newline, - ACTIONS(5434), 2, - sym__word_no_digit, - sym__digits, - STATE(1338), 3, - sym__whitespace, - sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124462,26 +124190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59141] = 8, - ACTIONS(4292), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, - aux_sym__whitespace_token1, - ACTIONS(5030), 1, - aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5868), 1, - sym__block_close, - ACTIONS(5488), 2, sym__word_no_digit, sym__digits, - STATE(1330), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, + aux_sym__newline_token1, + [58775] = 4, + STATE(1431), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(475), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5840), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(473), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124501,11 +124224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -124513,26 +124236,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59200] = 8, - ACTIONS(1754), 1, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + [58826] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4914), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5378), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(5845), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5843), 2, sym__word_no_digit, sym__digits, - STATE(1301), 4, + STATE(1281), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124545,6 +124272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -124564,26 +124292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59259] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, - sym__whitespace_ge_2, - ACTIONS(4914), 1, + [58885] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(5378), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5380), 2, - sym__word_no_digit, - sym__digits, - STATE(1432), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + STATE(1420), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(4289), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 38, + sym__block_close, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124596,6 +124315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -124615,18 +124335,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59318] = 5, - ACTIONS(386), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [58936] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(5870), 1, - sym__line_ending, - STATE(1481), 1, + STATE(1430), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5872), 2, + ACTIONS(5847), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(384), 37, + ACTIONS(482), 38, sym__block_close, + sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124663,34 +124386,38 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [59371] = 8, - ACTIONS(4292), 1, + [58987] = 10, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, - aux_sym__newline_token1, - ACTIONS(5876), 1, - sym__block_close, - STATE(1610), 1, - sym__newline, - ACTIONS(5874), 2, - sym__word_no_digit, - sym__digits, - STATE(1434), 3, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1681), 1, sym__whitespace, + STATE(2054), 1, + sym_link_destination, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -124699,13 +124426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -124714,25 +124439,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59430] = 8, - ACTIONS(4292), 1, + [59050] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(4294), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(4298), 1, + ACTIONS(4285), 1, aux_sym__newline_token1, - ACTIONS(5880), 1, + ACTIONS(5834), 1, sym__block_close, - STATE(1610), 1, + STATE(1561), 1, sym__newline, - ACTIONS(5878), 2, + ACTIONS(5849), 2, sym__word_no_digit, sym__digits, - STATE(1435), 3, + STATE(1322), 3, sym__whitespace, sym__word, - aux_sym__html_block_6_repeat1, - ACTIONS(5432), 32, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124765,26 +124490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59489] = 8, - ACTIONS(3131), 1, - anon_sym_RBRACK, - ACTIONS(3296), 1, - aux_sym__newline_token1, - ACTIONS(5454), 1, + [59109] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5456), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5882), 1, - anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5458), 2, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4417), 1, + sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5439), 2, sym__word_no_digit, sym__digits, - STATE(1448), 4, + STATE(1298), 3, sym__whitespace, sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3129), 31, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124809,6 +124533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -124816,26 +124541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59548] = 8, - ACTIONS(4292), 1, - sym__whitespace_ge_2, - ACTIONS(4294), 1, + [59168] = 4, + STATE(1431), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(494), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5030), 1, - aux_sym__newline_token1, - ACTIONS(5486), 1, - anon_sym_GT, - ACTIONS(5886), 1, + ACTIONS(5851), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(492), 37, sym__block_close, - ACTIONS(5884), 2, - sym__word_no_digit, - sym__digits, - STATE(1436), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_block_4_repeat1, - ACTIONS(5484), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124855,11 +124571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -124867,26 +124583,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59607] = 8, - ACTIONS(3316), 1, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(5442), 1, - anon_sym_QMARK, - ACTIONS(5446), 1, + [59219] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - ACTIONS(5448), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5888), 1, - anon_sym_QMARK_GT, - ACTIONS(5450), 2, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5855), 1, + sym__block_close, + ACTIONS(5853), 2, sym__word_no_digit, sym__digits, - STATE(1447), 4, + STATE(1407), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(3057), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124906,7 +124627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -124918,26 +124639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59666] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, - sym__whitespace_ge_2, - ACTIONS(4914), 1, + [59278] = 4, + STATE(1440), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(475), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(5185), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5440), 2, - sym__word_no_digit, - sym__digits, - STATE(1301), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + ACTIONS(5857), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(473), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -124950,6 +124662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -124957,7 +124670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -124969,26 +124681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59725] = 8, - ACTIONS(1754), 1, - aux_sym__newline_token1, - ACTIONS(4908), 1, - anon_sym_DASH, - ACTIONS(4912), 1, + anon_sym_QMARK_GT, sym__whitespace_ge_2, - ACTIONS(4914), 1, - aux_sym__whitespace_token1, - ACTIONS(5185), 1, - anon_sym_DASH_DASH_GT, - ACTIONS(5187), 2, sym__word_no_digit, sym__digits, - STATE(1437), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(4906), 31, + aux_sym__newline_token1, + [59329] = 4, + STATE(1431), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(484), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5851), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125001,6 +124709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -125012,7 +124721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -125020,26 +124728,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59784] = 8, - ACTIONS(5522), 1, - anon_sym_QMARK_GT, - ACTIONS(5893), 1, - anon_sym_QMARK, - ACTIONS(5896), 1, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, - ACTIONS(5899), 1, - aux_sym__whitespace_token1, - ACTIONS(5905), 1, - aux_sym__newline_token1, - ACTIONS(5902), 2, sym__word_no_digit, sym__digits, - STATE(1447), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5890), 31, + aux_sym__newline_token1, + [59380] = 4, + STATE(1438), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(484), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(5860), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125060,10 +124764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -125071,26 +124775,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59843] = 8, - ACTIONS(5522), 1, anon_sym_RBRACK_RBRACK_GT, - ACTIONS(5911), 1, - anon_sym_RBRACK, - ACTIONS(5914), 1, sym__whitespace_ge_2, - ACTIONS(5917), 1, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [59431] = 8, + ACTIONS(5865), 1, + anon_sym_GT, + ACTIONS(5868), 1, + sym__whitespace_ge_2, + ACTIONS(5871), 1, aux_sym__whitespace_token1, - ACTIONS(5923), 1, + ACTIONS(5877), 1, aux_sym__newline_token1, - ACTIONS(5920), 2, + ACTIONS(5880), 1, + sym__block_close, + ACTIONS(5874), 2, sym__word_no_digit, sym__digits, - STATE(1448), 4, + STATE(1443), 4, sym__whitespace, sym__word, sym__newline, - aux_sym__html_comment_repeat1, - ACTIONS(5908), 31, + aux_sym__html_block_4_repeat1, + ACTIONS(5862), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125110,11 +124819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -125122,17 +124831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [59902] = 4, - ACTIONS(514), 1, - aux_sym__whitespace_token1, - STATE(1451), 1, + [59490] = 4, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5926), 2, + ACTIONS(494), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5882), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 38, + ACTIONS(492), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125153,7 +124862,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -125165,21 +124873,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [59953] = 4, - ACTIONS(514), 1, - aux_sym__whitespace_token1, - STATE(1425), 1, + [59541] = 4, + STATE(1445), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5928), 2, + ACTIONS(475), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5884), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 38, + ACTIONS(473), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125192,7 +124901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -125212,21 +124920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60004] = 4, - ACTIONS(529), 1, - aux_sym__whitespace_token1, - STATE(1425), 1, + [59592] = 4, + STATE(1440), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5928), 2, + ACTIONS(484), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5882), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 38, + ACTIONS(482), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125247,7 +124956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -125259,22 +124967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60055] = 5, - ACTIONS(386), 1, - aux_sym__whitespace_token1, - ACTIONS(5930), 1, - sym__line_ending, - STATE(1554), 1, + [59643] = 4, + STATE(1444), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5932), 2, + ACTIONS(484), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(5887), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(384), 37, - sym__code_span_close, + ACTIONS(482), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125295,7 +125003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -125307,30 +125014,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60108] = 4, - ACTIONS(522), 1, - aux_sym__whitespace_token1, - STATE(1453), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5934), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(520), 38, - sym__block_close, - sym__blank_line_start, + [59694] = 10, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1435), 1, + sym__soft_line_break, + STATE(2050), 1, + sym_link_destination, + STATE(2109), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -125339,13 +125059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -125354,21 +125072,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [59757] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60159] = 4, - ACTIONS(529), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - STATE(1453), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(4308), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(527), 38, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5889), 1, sym__block_close, - sym__blank_line_start, + ACTIONS(5433), 2, + sym__word_no_digit, + sym__digits, + STATE(1443), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125388,7 +125111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -125401,21 +125123,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [59816] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60210] = 4, - STATE(1455), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(522), 2, - anon_sym_RBRACK, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5937), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(520), 37, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5891), 1, sym__block_close, + ACTIONS(5433), 2, + sym__word_no_digit, + sym__digits, + STATE(1443), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125435,11 +125162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -125447,22 +125174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60261] = 4, - ACTIONS(514), 1, - aux_sym__whitespace_token1, - STATE(1453), 1, + [59875] = 4, + STATE(1445), 1, aux_sym__ignore_matching_tokens, - ACTIONS(4308), 2, + ACTIONS(494), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(5893), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 38, + ACTIONS(492), 37, sym__block_close, - sym__blank_line_start, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125475,7 +125197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -125495,30 +125216,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60312] = 4, - ACTIONS(514), 1, + [59926] = 10, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - STATE(1454), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5940), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 38, - sym__block_close, - sym__blank_line_start, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1680), 1, + sym__whitespace, + STATE(2050), 1, + sym_link_destination, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -125527,13 +125261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -125542,20 +125274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60363] = 4, - STATE(1455), 1, + [59989] = 4, + STATE(1445), 1, aux_sym__ignore_matching_tokens, - ACTIONS(529), 2, - anon_sym_RBRACK, + ACTIONS(484), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(5942), 2, + ACTIONS(5893), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 37, + ACTIONS(482), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -125569,7 +125297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -125581,6 +125308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -125588,21 +125316,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60414] = 4, - STATE(1459), 1, + [60040] = 4, + STATE(1451), 1, aux_sym__ignore_matching_tokens, - ACTIONS(522), 2, - anon_sym_QMARK, + ACTIONS(484), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(5944), 2, + ACTIONS(5895), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 37, + ACTIONS(482), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -125616,7 +125344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -125624,6 +125351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -125635,28 +125363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60465] = 4, - STATE(1455), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_RBRACK, + [60091] = 4, + ACTIONS(5751), 1, + sym__blank_line_start, + STATE(2377), 1, + sym__blank_line, + ACTIONS(4773), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5942), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 37, - sym__block_close, + ACTIONS(4771), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125674,7 +125400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -125682,22 +125408,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60516] = 4, - STATE(1458), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_RBRACK, + [60142] = 8, + ACTIONS(4279), 1, + sym__whitespace_ge_2, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5947), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 37, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5899), 1, sym__block_close, + ACTIONS(5897), 2, + sym__word_no_digit, + sym__digits, + STATE(1449), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125717,11 +125454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -125729,22 +125466,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + [60201] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60567] = 4, - STATE(1459), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(529), 2, - anon_sym_QMARK, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - ACTIONS(5949), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(527), 37, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4423), 1, sym__block_close, + STATE(1587), 1, + sym__newline, + ACTIONS(5439), 2, + sym__word_no_digit, + sym__digits, + STATE(1298), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat1, + ACTIONS(5437), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125765,6 +125505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -125776,21 +125517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60618] = 4, - STATE(1463), 1, + [60260] = 4, + STATE(1458), 1, aux_sym__ignore_matching_tokens, - ACTIONS(522), 2, - anon_sym_DASH, + ACTIONS(475), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(5951), 2, + ACTIONS(5901), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 37, + ACTIONS(473), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -125804,11 +125540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -125823,22 +125559,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60669] = 4, - STATE(1459), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_QMARK, + [60311] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, + sym__whitespace_ge_2, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5949), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 37, - sym__block_close, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, + sym__word_no_digit, + sym__digits, + STATE(1465), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125851,7 +125596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -125859,6 +125603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -125870,22 +125615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60720] = 4, - STATE(1462), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_QMARK, + [60370] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(5954), 2, + STATE(1470), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5904), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 37, + ACTIONS(482), 38, sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125906,6 +125646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -125917,22 +125658,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60771] = 4, - STATE(1463), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(529), 2, + [60421] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, anon_sym_DASH, + ACTIONS(4845), 1, + sym__whitespace_ge_2, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5956), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(527), 37, - sym__block_close, + ACTIONS(4927), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(4929), 2, + sym__word_no_digit, + sym__digits, + STATE(1418), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -125964,22 +125713,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, + [60480] = 8, + ACTIONS(1705), 1, aux_sym__newline_token1, - [60822] = 4, - STATE(1463), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, + ACTIONS(4841), 1, anon_sym_DASH, + ACTIONS(4845), 1, + sym__whitespace_ge_2, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - ACTIONS(5956), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 37, - sym__block_close, + ACTIONS(4927), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, + sym__word_no_digit, + sym__digits, + STATE(1465), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126011,22 +125764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [60873] = 4, - STATE(1466), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_DASH, + [60539] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(5958), 2, + STATE(1334), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5906), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 37, + ACTIONS(482), 38, sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126039,6 +125787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -126058,22 +125807,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [60924] = 4, - STATE(1469), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(522), 2, - anon_sym_LT, + [60590] = 8, + ACTIONS(5820), 1, + anon_sym_QMARK_GT, + ACTIONS(5911), 1, + anon_sym_QMARK, + ACTIONS(5914), 1, + sym__whitespace_ge_2, + ACTIONS(5917), 1, aux_sym__whitespace_token1, - ACTIONS(5960), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(520), 37, - sym__block_close, + ACTIONS(5923), 1, + aux_sym__newline_token1, + ACTIONS(5920), 2, + sym__word_no_digit, + sym__digits, + STATE(1464), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5908), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126091,9 +125848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -126105,22 +125862,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, + [60649] = 8, + ACTIONS(5820), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5929), 1, + anon_sym_DASH, + ACTIONS(5932), 1, sym__whitespace_ge_2, + ACTIONS(5935), 1, + aux_sym__whitespace_token1, + ACTIONS(5941), 1, + aux_sym__newline_token1, + ACTIONS(5938), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [60975] = 4, - STATE(1469), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(529), 2, - anon_sym_LT, - aux_sym__whitespace_token1, - ACTIONS(5963), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(527), 37, - sym__block_close, + STATE(1465), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(5926), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126133,11 +125894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -126152,22 +125913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61026] = 4, - ACTIONS(529), 1, - aux_sym__whitespace_token1, - STATE(1333), 1, + [60708] = 4, + STATE(1458), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5965), 2, + ACTIONS(494), 2, + anon_sym_LT, + aux_sym__whitespace_token1, + ACTIONS(5944), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 38, + ACTIONS(492), 37, sym__block_close, - sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126185,7 +125941,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -126200,20 +125955,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61077] = 4, - STATE(1469), 1, + [60759] = 10, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1452), 1, + sym__soft_line_break, + STATE(2063), 1, + sym_link_destination, + STATE(2109), 1, + sym__newline, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [60822] = 4, + STATE(1458), 1, aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, + ACTIONS(484), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(5963), 2, + ACTIONS(5944), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 37, + ACTIONS(482), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -126251,16 +126060,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61128] = 4, - STATE(1470), 1, + [60873] = 4, + STATE(1466), 1, aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, + ACTIONS(484), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(5967), 2, + ACTIONS(5946), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 37, + ACTIONS(482), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -126298,17 +126107,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61179] = 4, - ACTIONS(514), 1, + [60924] = 4, + ACTIONS(494), 1, aux_sym__whitespace_token1, - STATE(1471), 1, + STATE(1334), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5969), 2, + ACTIONS(5906), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 38, + ACTIONS(492), 38, sym__block_close, - sym__fenced_code_block_end_tilde, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126345,17 +126154,26 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61230] = 4, - ACTIONS(514), 1, + [60975] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, + sym__whitespace_ge_2, + ACTIONS(4847), 1, aux_sym__whitespace_token1, - STATE(1333), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5965), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(5948), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5950), 2, + sym__word_no_digit, + sym__digits, + STATE(1306), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126368,7 +126186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -126388,20 +126205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61034] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, + ACTIONS(4847), 1, + aux_sym__whitespace_token1, + ACTIONS(5948), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5423), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [61281] = 4, - ACTIONS(790), 1, - aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(788), 37, - sym__code_span_close, + STATE(1465), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126414,7 +126237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -126434,20 +126256,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61093] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61331] = 4, - ACTIONS(522), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - STATE(1477), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5973), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(520), 37, + ACTIONS(4285), 1, + aux_sym__newline_token1, + ACTIONS(4375), 1, sym__block_close, + STATE(1561), 1, + sym__newline, + ACTIONS(5451), 2, + sym__word_no_digit, + sym__digits, + STATE(1311), 3, + sym__whitespace, + sym__word, + aux_sym__html_block_6_repeat2, + ACTIONS(4277), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126480,20 +126307,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61152] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, + ACTIONS(4847), 1, + aux_sym__whitespace_token1, + ACTIONS(5080), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5082), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [61381] = 4, - STATE(1543), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_QMARK, - aux_sym__whitespace_token1, - ACTIONS(5976), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 36, + STATE(1472), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126506,7 +126339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -126514,6 +126346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -126525,24 +126358,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + [61211] = 8, + ACTIONS(3220), 1, + aux_sym__newline_token1, + ACTIONS(5647), 1, + anon_sym_QMARK, + ACTIONS(5651), 1, sym__whitespace_ge_2, + ACTIONS(5653), 1, + aux_sym__whitespace_token1, + ACTIONS(5952), 1, + anon_sym_QMARK_GT, + ACTIONS(5655), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [61431] = 3, - ACTIONS(5984), 1, - sym__last_token_punctuation, - ACTIONS(5981), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5978), 37, + STATE(1464), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(3076), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126557,9 +126398,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -126568,23 +126409,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [61270] = 8, + ACTIONS(1705), 1, + aux_sym__newline_token1, + ACTIONS(4841), 1, + anon_sym_DASH, + ACTIONS(4845), 1, sym__whitespace_ge_2, + ACTIONS(4847), 1, + aux_sym__whitespace_token1, + ACTIONS(5104), 1, + anon_sym_DASH_DASH_GT, + ACTIONS(5106), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [61479] = 4, - ACTIONS(514), 1, - aux_sym__whitespace_token1, - STATE(1488), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5986), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 37, - sym__block_close, + STATE(1405), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_comment_repeat1, + ACTIONS(4839), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126597,7 +126441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -126617,20 +126460,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [61329] = 8, + ACTIONS(4279), 1, sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61529] = 4, - ACTIONS(514), 1, + ACTIONS(4281), 1, aux_sym__whitespace_token1, - STATE(1477), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5988), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 37, + ACTIONS(4897), 1, + aux_sym__newline_token1, + ACTIONS(5427), 1, + anon_sym_GT, + ACTIONS(5956), 1, sym__block_close, + ACTIONS(5954), 2, + sym__word_no_digit, + sym__digits, + STATE(1409), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__html_block_4_repeat1, + ACTIONS(5425), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126650,7 +126499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -126663,26 +126511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [61579] = 6, - ACTIONS(4674), 1, - sym__whitespace_ge_2, - ACTIONS(4676), 1, + [61388] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - ACTIONS(5992), 1, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(750), 37, sym__code_span_close, - ACTIONS(5990), 2, - sym__word_no_digit, - sym__digits, - STATE(1499), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(2919), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126715,61 +126553,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61633] = 3, - ACTIONS(5998), 1, - sym__last_token_punctuation, - ACTIONS(5996), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(5994), 37, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61681] = 4, - STATE(1495), 1, + [61438] = 4, + STATE(1479), 1, aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_QMARK, + ACTIONS(475), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(6000), 2, + ACTIONS(5960), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 36, + ACTIONS(473), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126790,10 +126587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -126801,27 +126598,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61731] = 6, - ACTIONS(4674), 1, - sym__whitespace_ge_2, - ACTIONS(4676), 1, + [61488] = 4, + ACTIONS(1043), 1, aux_sym__whitespace_token1, - ACTIONS(6002), 1, + STATE(1499), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5963), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1041), 37, sym__code_span_close, - ACTIONS(5990), 2, - sym__word_no_digit, - sym__digits, - STATE(1499), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(2919), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126854,15 +126645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61785] = 4, - ACTIONS(1108), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [61538] = 4, + ACTIONS(1055), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1494), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5965), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1106), 37, + ACTIONS(1053), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -126900,24 +126695,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61835] = 7, - ACTIONS(1752), 1, + [61588] = 7, + ACTIONS(1711), 1, aux_sym__newline_token1, - ACTIONS(5759), 1, + ACTIONS(5607), 1, sym__whitespace_ge_2, - ACTIONS(5761), 1, + ACTIONS(5609), 1, aux_sym__whitespace_token1, - ACTIONS(6006), 1, + ACTIONS(5969), 1, anon_sym_GT, - ACTIONS(6008), 2, + ACTIONS(5971), 2, sym__word_no_digit, sym__digits, - STATE(1489), 4, + STATE(1541), 4, sym__whitespace, sym__word, sym__newline, aux_sym__declaration_repeat1, - ACTIONS(6004), 31, + ACTIONS(5967), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -126949,22 +126744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [61891] = 4, - ACTIONS(529), 1, + [61644] = 3, + ACTIONS(5977), 1, + sym__last_token_punctuation, + ACTIONS(5975), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1477), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5988), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(527), 37, - sym__block_close, + ACTIONS(5973), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126982,7 +126774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -126991,68 +126782,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [61941] = 7, - ACTIONS(1752), 1, - aux_sym__newline_token1, - ACTIONS(5759), 1, - sym__whitespace_ge_2, - ACTIONS(5761), 1, + [61692] = 4, + ACTIONS(1037), 1, aux_sym__whitespace_token1, - ACTIONS(6010), 1, - anon_sym_GT, - ACTIONS(6012), 2, - sym__word_no_digit, - sym__digits, - STATE(1513), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6004), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [61997] = 4, - ACTIONS(1143), 1, - aux_sym__whitespace_token1, - STATE(1486), 1, + STATE(1504), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6014), 2, + ACTIONS(5979), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1141), 37, + ACTIONS(1035), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127090,68 +126835,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62047] = 7, - ACTIONS(1752), 1, - aux_sym__newline_token1, - ACTIONS(5759), 1, - sym__whitespace_ge_2, - ACTIONS(5761), 1, + [61742] = 4, + ACTIONS(1031), 1, aux_sym__whitespace_token1, - ACTIONS(6016), 1, - anon_sym_GT, - ACTIONS(6012), 2, - sym__word_no_digit, - sym__digits, - STATE(1513), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6004), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [62103] = 3, - ACTIONS(6018), 1, + STATE(1506), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5981), 2, + sym__block_continuation, sym__last_token_whitespace, - ACTIONS(2906), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2904), 37, + ACTIONS(1029), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127169,6 +126868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -127177,22 +126877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62151] = 4, - ACTIONS(1143), 1, + [61792] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1518), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5983), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1141), 37, + ACTIONS(1065), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127230,15 +126927,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62201] = 4, - ACTIONS(1423), 1, + [61842] = 4, + ACTIONS(1025), 1, aux_sym__whitespace_token1, - STATE(1504), 1, + STATE(1508), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6020), 2, + ACTIONS(5985), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1421), 37, + ACTIONS(1023), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127276,16 +126973,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62251] = 4, - STATE(1543), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(529), 2, - anon_sym_QMARK, + [61892] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - ACTIONS(5976), 2, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 36, + ACTIONS(1065), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127306,6 +127003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -127317,27 +127015,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62301] = 4, - ACTIONS(1381), 1, + [61942] = 3, + ACTIONS(5993), 1, + sym__last_token_punctuation, + ACTIONS(5990), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1493), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6022), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1379), 37, - sym__code_span_close, + ACTIONS(5987), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127355,7 +127049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -127364,78 +127057,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62351] = 7, - ACTIONS(1752), 1, - aux_sym__newline_token1, - ACTIONS(5759), 1, - sym__whitespace_ge_2, - ACTIONS(5761), 1, + [61990] = 5, + ACTIONS(5977), 1, + sym__last_token_punctuation, + ACTIONS(5998), 1, aux_sym__whitespace_token1, - ACTIONS(6024), 1, - anon_sym_GT, - ACTIONS(6012), 2, - sym__word_no_digit, - sym__digits, - STATE(1513), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6004), 31, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, + ACTIONS(5975), 2, anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [62407] = 4, - ACTIONS(1381), 1, - aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1379), 37, - sym__code_span_close, + ACTIONS(5995), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(5973), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -127450,7 +127098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -127459,26 +127106,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [62457] = 6, - ACTIONS(6029), 1, + [62042] = 6, + ACTIONS(4619), 1, sym__whitespace_ge_2, - ACTIONS(6032), 1, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - ACTIONS(6038), 1, + ACTIONS(6003), 1, sym__code_span_close, - ACTIONS(6035), 2, + ACTIONS(6001), 2, sym__word_no_digit, sym__digits, - STATE(1499), 4, + STATE(1530), 4, sym__text, sym__whitespace, sym__word, aux_sym__code_span_no_newline_repeat1, - ACTIONS(6026), 32, + ACTIONS(2936), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127511,15 +127159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [62511] = 4, - ACTIONS(1026), 1, + [62096] = 4, + ACTIONS(758), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 37, + ACTIONS(756), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127557,15 +127205,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62561] = 4, - ACTIONS(1026), 1, + [62146] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1498), 1, + STATE(1510), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6040), 2, + ACTIONS(6005), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 37, + ACTIONS(921), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127603,16 +127251,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62611] = 4, - STATE(1506), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(529), 2, - anon_sym_RBRACK, + [62196] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - ACTIONS(6042), 2, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 36, + ACTIONS(907), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127637,6 +127285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -127644,21 +127293,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62661] = 4, - STATE(1508), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(529), 2, + [62246] = 3, + ACTIONS(4784), 1, + sym__last_token_punctuation, + ACTIONS(4773), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(4771), 37, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [62294] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - ACTIONS(6044), 2, + STATE(1511), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6007), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 36, + ACTIONS(907), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127671,6 +127364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -127690,20 +127384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62711] = 4, - ACTIONS(1084), 1, + [62344] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1082), 37, + ACTIONS(867), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127741,15 +127434,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62761] = 4, - ACTIONS(1084), 1, + [62394] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1526), 1, + STATE(1512), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6046), 2, + ACTIONS(6009), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1082), 37, + ACTIONS(867), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127787,16 +127480,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62811] = 4, - STATE(1506), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(522), 2, - anon_sym_RBRACK, + [62444] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - ACTIONS(6048), 2, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 36, + ACTIONS(861), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127821,6 +127514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -127828,20 +127522,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62861] = 4, - ACTIONS(730), 1, + [62494] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1500), 1, + STATE(1513), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6051), 2, + ACTIONS(6011), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 37, + ACTIONS(861), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -127879,16 +127572,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62911] = 4, - STATE(1508), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(522), 2, - anon_sym_DASH, + [62544] = 4, + ACTIONS(1209), 1, aux_sym__whitespace_token1, - ACTIONS(6053), 2, + STATE(1488), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6013), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 36, + ACTIONS(1207), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127901,6 +127594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -127920,29 +127614,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [62961] = 7, - ACTIONS(1752), 1, - aux_sym__newline_token1, - ACTIONS(5759), 1, - sym__whitespace_ge_2, - ACTIONS(5761), 1, + [62594] = 3, + ACTIONS(6015), 1, + sym__last_token_whitespace, + ACTIONS(2885), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6056), 1, + ACTIONS(2883), 37, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(6058), 2, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - STATE(1491), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6004), 31, + aux_sym__newline_token1, + [62642] = 4, + ACTIONS(494), 1, + aux_sym__whitespace_token1, + STATE(1539), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6017), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(492), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -127962,6 +127692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -127974,15 +127705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63017] = 4, - ACTIONS(619), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [62692] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 37, + ACTIONS(855), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128020,22 +127755,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63067] = 4, - ACTIONS(5650), 1, - sym__blank_line_start, - STATE(2358), 1, - sym__blank_line, - ACTIONS(6062), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [62742] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - ACTIONS(6060), 36, + STATE(1514), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6019), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(855), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -128051,6 +127788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -128059,26 +127797,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63117] = 3, - STATE(1638), 1, - sym__newline, - ACTIONS(3652), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [62792] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - ACTIONS(3650), 37, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(849), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128096,6 +127834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -128104,31 +127843,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63165] = 7, - ACTIONS(6067), 1, + [62842] = 4, + ACTIONS(851), 1, + aux_sym__whitespace_token1, + STATE(1492), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6021), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(849), 37, + sym__code_span_close, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(6069), 1, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, sym__whitespace_ge_2, - ACTIONS(6072), 1, - aux_sym__whitespace_token1, - ACTIONS(6078), 1, - aux_sym__newline_token1, - ACTIONS(6075), 2, sym__word_no_digit, sym__digits, - STATE(1513), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6064), 31, + aux_sym__newline_token1, + [62892] = 4, + ACTIONS(845), 1, + aux_sym__whitespace_token1, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(843), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128148,6 +127922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -128160,15 +127935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63221] = 4, - ACTIONS(730), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [62942] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1478), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(6023), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 37, + ACTIONS(843), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128206,22 +127985,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63271] = 6, - ACTIONS(4674), 1, - sym__whitespace_ge_2, - ACTIONS(4676), 1, + [62992] = 4, + ACTIONS(778), 1, aux_sym__whitespace_token1, - ACTIONS(6081), 1, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(776), 37, sym__code_span_close, - ACTIONS(5990), 2, - sym__word_no_digit, - sym__digits, - STATE(1499), 4, - sym__text, - sym__whitespace, - sym__word, - aux_sym__code_span_no_newline_repeat1, - ACTIONS(2919), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128254,16 +128027,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [63325] = 4, - STATE(1508), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_DASH, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [63042] = 4, + ACTIONS(774), 1, aux_sym__whitespace_token1, - ACTIONS(6044), 2, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 36, + ACTIONS(772), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128276,6 +128053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -128295,21 +128073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63375] = 4, - STATE(1503), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_DASH, + [63092] = 4, + ACTIONS(770), 1, aux_sym__whitespace_token1, - ACTIONS(6083), 2, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 36, + ACTIONS(768), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128322,6 +128099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -128341,20 +128119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63425] = 4, - ACTIONS(1032), 1, + [63142] = 4, + ACTIONS(766), 1, aux_sym__whitespace_token1, - STATE(1476), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6085), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1030), 37, + ACTIONS(764), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128392,15 +128169,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63475] = 4, - ACTIONS(1020), 1, + [63192] = 4, + ACTIONS(762), 1, aux_sym__whitespace_token1, - STATE(1510), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6087), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1018), 37, + ACTIONS(760), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128438,15 +128215,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63525] = 4, - ACTIONS(1014), 1, + [63242] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - STATE(1552), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6089), 2, + ACTIONS(6025), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1012), 37, + ACTIONS(473), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128484,16 +128261,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63575] = 4, - ACTIONS(726), 1, + [63292] = 5, + ACTIONS(463), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + ACTIONS(6028), 1, + sym__line_ending, + STATE(1630), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(6030), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(724), 37, - sym__code_span_close, + ACTIONS(461), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128530,15 +128308,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63625] = 4, - ACTIONS(625), 1, + [63344] = 4, + ACTIONS(1049), 1, aux_sym__whitespace_token1, - STATE(1550), 1, + STATE(1497), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6091), 2, + ACTIONS(6032), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(623), 37, + ACTIONS(1047), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128576,15 +128354,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63675] = 4, - ACTIONS(1006), 1, + [63394] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1548), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6093), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1004), 37, + ACTIONS(921), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128622,15 +128400,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63725] = 4, - ACTIONS(522), 1, + [63444] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1521), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6095), 2, + ACTIONS(6034), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 37, + ACTIONS(750), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128668,15 +128446,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63775] = 4, - ACTIONS(998), 1, + [63494] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1546), 1, + STATE(1523), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6098), 2, + ACTIONS(6036), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(996), 37, + ACTIONS(695), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128714,15 +128492,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63825] = 4, - ACTIONS(822), 1, + [63544] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 37, + ACTIONS(695), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128760,17 +128538,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63875] = 5, - ACTIONS(386), 1, + [63594] = 7, + ACTIONS(1711), 1, + aux_sym__newline_token1, + ACTIONS(5607), 1, + sym__whitespace_ge_2, + ACTIONS(5609), 1, aux_sym__whitespace_token1, - ACTIONS(6100), 1, - sym__line_ending, - STATE(1588), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6102), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 36, + ACTIONS(6038), 1, + anon_sym_GT, + ACTIONS(6040), 2, + sym__word_no_digit, + sym__digits, + STATE(1535), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(5967), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -128790,7 +128575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -128803,19 +128587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [63927] = 4, - ACTIONS(529), 1, + [63650] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 37, + ACTIONS(622), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -128853,19 +128633,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [63977] = 3, - ACTIONS(4776), 1, - sym__last_token_punctuation, - ACTIONS(4765), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [63700] = 4, + ACTIONS(494), 1, aux_sym__whitespace_token1, - ACTIONS(4763), 37, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(492), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128883,6 +128666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -128891,26 +128675,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64025] = 3, - ACTIONS(6110), 1, - sym__last_token_punctuation, - ACTIONS(6107), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [63750] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - ACTIONS(6104), 37, + STATE(1527), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6042), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(622), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128928,6 +128712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -128936,26 +128721,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64073] = 3, - ACTIONS(6116), 1, - sym__last_token_punctuation, - ACTIONS(6114), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [63800] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(6112), 37, + STATE(1539), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6017), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128973,6 +128758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -128981,31 +128767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64121] = 7, - ACTIONS(1752), 1, - aux_sym__newline_token1, - ACTIONS(5759), 1, - sym__whitespace_ge_2, - ACTIONS(5761), 1, + [63850] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - ACTIONS(6118), 1, - anon_sym_GT, - ACTIONS(6120), 2, - sym__word_no_digit, - sym__digits, - STATE(1497), 4, - sym__whitespace, - sym__word, - sym__newline, - aux_sym__declaration_repeat1, - ACTIONS(6004), 31, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(950), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129025,6 +128800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -129037,15 +128813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [64177] = 4, - ACTIONS(822), 1, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [63900] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1544), 1, + STATE(1529), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6122), 2, + ACTIONS(6044), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 37, + ACTIONS(950), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -129083,19 +128863,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64227] = 3, - ACTIONS(4718), 1, - sym__last_token_punctuation, - ACTIONS(4707), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [63950] = 4, + ACTIONS(1126), 1, aux_sym__whitespace_token1, - ACTIONS(4705), 37, + STATE(1515), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(5958), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1124), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129113,6 +128896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -129121,23 +128905,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64275] = 4, - ACTIONS(710), 1, + [64000] = 6, + ACTIONS(6049), 1, + sym__whitespace_ge_2, + ACTIONS(6052), 1, aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(708), 37, + ACTIONS(6058), 1, sym__code_span_close, + ACTIONS(6055), 2, + sym__word_no_digit, + sym__digits, + STATE(1530), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(6046), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129170,20 +128957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [64054] = 6, + ACTIONS(4619), 1, sym__whitespace_ge_2, + ACTIONS(4621), 1, + aux_sym__whitespace_token1, + ACTIONS(6060), 1, + sym__code_span_close, + ACTIONS(6001), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [64325] = 4, - STATE(1502), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(6124), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 36, + STATE(1530), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(2936), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129208,6 +128997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -129215,21 +129005,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [64375] = 4, - ACTIONS(706), 1, + [64108] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1503), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(6062), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(704), 37, - sym__code_span_close, + ACTIONS(482), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129266,16 +129051,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64425] = 4, - ACTIONS(673), 1, - aux_sym__whitespace_token1, - STATE(1524), 1, + [64158] = 4, + STATE(1479), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(494), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(6064), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(671), 37, - sym__code_span_close, + ACTIONS(492), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129300,7 +129085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -129308,26 +129092,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64475] = 4, - STATE(1506), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(514), 2, - anon_sym_RBRACK, + [64208] = 3, + ACTIONS(6070), 1, + sym__last_token_punctuation, + ACTIONS(6068), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6042), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 36, + ACTIONS(6066), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129345,7 +129127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -129353,21 +129135,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64525] = 4, - ACTIONS(665), 1, + [64256] = 7, + ACTIONS(6075), 1, + anon_sym_GT, + ACTIONS(6077), 1, + sym__whitespace_ge_2, + ACTIONS(6080), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + ACTIONS(6086), 1, + aux_sym__newline_token1, + ACTIONS(6083), 2, + sym__word_no_digit, + sym__digits, + STATE(1535), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(6072), 31, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [64312] = 4, + STATE(1536), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(475), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(6089), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(663), 37, - sym__code_span_close, + ACTIONS(473), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129388,7 +129221,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -129400,20 +129232,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64575] = 4, - ACTIONS(514), 1, - aux_sym__whitespace_token1, - STATE(1528), 1, + [64362] = 4, + STATE(1479), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6126), 2, + ACTIONS(484), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(6064), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 37, - sym__code_span_close, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129438,7 +129271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -129446,30 +129278,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64625] = 5, - ACTIONS(6116), 1, - sym__last_token_punctuation, - ACTIONS(6131), 1, + [64412] = 4, + STATE(1533), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(484), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(6114), 2, - anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(6128), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - ACTIONS(6112), 34, + ACTIONS(6092), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -129484,7 +129316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -129492,21 +129324,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [64677] = 4, - STATE(1543), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(522), 2, - anon_sym_QMARK, + aux_sym__newline_token1, + [64462] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - ACTIONS(6134), 2, + STATE(1539), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6094), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 36, + ACTIONS(473), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129527,6 +129359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -129538,21 +129371,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64727] = 4, - ACTIONS(669), 1, + [64512] = 7, + ACTIONS(1711), 1, + aux_sym__newline_token1, + ACTIONS(5607), 1, + sym__whitespace_ge_2, + ACTIONS(5609), 1, aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(667), 37, - sym__code_span_close, + ACTIONS(6097), 1, + anon_sym_GT, + ACTIONS(6099), 2, + sym__word_no_digit, + sym__digits, + STATE(1522), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(5967), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129572,7 +129412,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -129585,20 +129424,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [64568] = 7, + ACTIONS(1711), 1, + aux_sym__newline_token1, + ACTIONS(5607), 1, sym__whitespace_ge_2, + ACTIONS(5609), 1, + aux_sym__whitespace_token1, + ACTIONS(6101), 1, + anon_sym_GT, + ACTIONS(6040), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [64777] = 4, - ACTIONS(758), 1, - aux_sym__whitespace_token1, - STATE(1514), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6137), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(756), 37, - sym__code_span_close, + STATE(1535), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(5967), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129618,7 +129461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -129631,26 +129473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [64827] = 4, - ACTIONS(758), 1, + [64624] = 3, + ACTIONS(4755), 1, + sym__last_token_punctuation, + ACTIONS(4744), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(756), 37, - sym__code_span_close, + ACTIONS(4742), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129668,7 +129503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -129677,26 +129511,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64877] = 4, - ACTIONS(768), 1, + [64672] = 3, + ACTIONS(6109), 1, + sym__last_token_punctuation, + ACTIONS(6106), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1521), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6139), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(766), 37, - sym__code_span_close, + ACTIONS(6103), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129714,7 +129548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -129723,28 +129556,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64927] = 4, - ACTIONS(768), 1, + [64720] = 4, + ACTIONS(5751), 1, + sym__blank_line_start, + STATE(2384), 1, + sym__blank_line, + ACTIONS(6113), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(766), 37, - sym__code_span_close, + ACTIONS(6111), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -129760,7 +129594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -129769,20 +129602,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [64977] = 4, - ACTIONS(774), 1, - aux_sym__whitespace_token1, - STATE(1535), 1, + [64770] = 4, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6141), 2, + ACTIONS(475), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(6115), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 37, - sym__code_span_close, + ACTIONS(473), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129795,7 +129631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -129815,20 +129650,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65027] = 4, - ACTIONS(774), 1, + [64820] = 7, + ACTIONS(1711), 1, + aux_sym__newline_token1, + ACTIONS(5607), 1, + sym__whitespace_ge_2, + ACTIONS(5609), 1, aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(772), 37, - sym__code_span_close, + ACTIONS(6118), 1, + anon_sym_GT, + ACTIONS(6040), 2, + sym__word_no_digit, + sym__digits, + STATE(1535), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(5967), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129848,7 +129692,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -129861,20 +129704,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + [64876] = 7, + ACTIONS(1711), 1, + aux_sym__newline_token1, + ACTIONS(5607), 1, sym__whitespace_ge_2, + ACTIONS(5609), 1, + aux_sym__whitespace_token1, + ACTIONS(6120), 1, + anon_sym_GT, + ACTIONS(6122), 2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [65077] = 4, - ACTIONS(782), 1, - aux_sym__whitespace_token1, - STATE(1537), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6143), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(780), 37, - sym__code_span_close, + STATE(1546), 4, + sym__whitespace, + sym__word, + sym__newline, + aux_sym__declaration_repeat1, + ACTIONS(5967), 31, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129894,7 +129741,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, @@ -129907,26 +129753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [65127] = 4, - ACTIONS(782), 1, + [64932] = 3, + STATE(1642), 1, + sym__newline, + ACTIONS(3636), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1524), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(780), 37, - sym__code_span_close, + ACTIONS(3634), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129944,7 +129783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -129953,20 +129791,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65177] = 4, - ACTIONS(619), 1, + [64980] = 6, + ACTIONS(4619), 1, + sym__whitespace_ge_2, + ACTIONS(4621), 1, aux_sym__whitespace_token1, - STATE(1538), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6145), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(617), 37, + ACTIONS(6124), 1, sym__code_span_close, + ACTIONS(6001), 2, + sym__word_no_digit, + sym__digits, + STATE(1530), 4, + sym__text, + sym__whitespace, + sym__word, + aux_sym__code_span_no_newline_repeat1, + ACTIONS(2936), 32, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -129999,19 +129846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [65227] = 4, - ACTIONS(514), 1, + [65034] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1524), 1, + STATE(1515), 1, aux_sym__ignore_matching_tokens, - ACTIONS(5971), 2, + ACTIONS(5958), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 37, + ACTIONS(482), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -130049,16 +129892,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65277] = 4, - ACTIONS(790), 1, - aux_sym__whitespace_token1, - STATE(1540), 1, + [65084] = 4, + STATE(1536), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6147), 2, + ACTIONS(494), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(6126), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 37, - sym__code_span_close, + ACTIONS(492), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130079,7 +129922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -130091,19 +129933,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65327] = 4, - ACTIONS(1108), 1, + [65134] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1524), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6128), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1106), 36, + ACTIONS(482), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130140,15 +129984,16 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65376] = 4, - ACTIONS(822), 1, - aux_sym__whitespace_token1, - STATE(1634), 1, + [65184] = 4, + STATE(1557), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6151), 2, + ACTIONS(484), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(6130), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 36, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130161,7 +130006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -130181,71 +130025,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65425] = 2, - ACTIONS(1852), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(1850), 37, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, + [65234] = 4, + STATE(1545), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(484), 2, anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [65470] = 2, - ACTIONS(3717), 3, - anon_sym_AMP, - anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3715), 37, + ACTIONS(6132), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -130256,6 +130062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -130264,24 +130071,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65515] = 2, - ACTIONS(2989), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [65284] = 4, + STATE(1536), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(484), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(2987), 37, + ACTIONS(6126), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130296,9 +130106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -130307,22 +130117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65560] = 4, - ACTIONS(1026), 1, - aux_sym__whitespace_token1, - STATE(1590), 1, + [65334] = 4, + STATE(1551), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(484), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(6134), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 36, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130343,7 +130152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -130355,18 +130163,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65609] = 3, - ACTIONS(2906), 1, + [65384] = 4, + STATE(1545), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(494), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6153), 1, + ACTIONS(6132), 2, + sym__block_continuation, sym__last_token_whitespace, - ACTIONS(2904), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(492), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130379,7 +130190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -130399,16 +130209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65656] = 2, - ACTIONS(6107), 3, + [65434] = 2, + ACTIONS(6138), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6104), 37, + ACTIONS(6136), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130446,15 +130257,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65701] = 4, - ACTIONS(1026), 1, + [65479] = 4, + ACTIONS(1055), 1, aux_sym__whitespace_token1, - STATE(1565), 1, + STATE(1613), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6155), 2, + ACTIONS(6140), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 36, + ACTIONS(1053), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130491,15 +130302,14 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65750] = 4, - ACTIONS(1381), 1, + [65528] = 3, + ACTIONS(6144), 1, aux_sym__whitespace_token1, - STATE(1590), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1379), 36, + ACTIONS(6146), 2, + sym__last_token_punctuation, + sym__close_block, + ACTIONS(6142), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130536,15 +130346,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65799] = 4, - ACTIONS(1381), 1, + [65575] = 4, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(6150), 1, aux_sym__whitespace_token1, - STATE(1568), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6157), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1379), 36, + STATE(2371), 1, + sym__blank_line, + ACTIONS(6148), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130581,20 +130391,66 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65848] = 3, - ACTIONS(6159), 1, - sym__last_token_punctuation, - ACTIONS(6062), 3, + [65624] = 3, + ACTIONS(6152), 1, + sym__last_token_whitespace, + ACTIONS(2885), 2, + anon_sym_RBRACK, + aux_sym__whitespace_token1, + ACTIONS(2883), 37, + sym__block_close, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_RBRACK_RBRACK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [65671] = 3, + ACTIONS(6158), 1, + sym__last_token_punctuation, + ACTIONS(6156), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(6060), 36, + ACTIONS(6154), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -130610,7 +130466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -130618,22 +130474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65895] = 4, - ACTIONS(1143), 1, - aux_sym__whitespace_token1, - STATE(1590), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, - sym__block_continuation, + [65718] = 3, + ACTIONS(6160), 1, sym__last_token_whitespace, - ACTIONS(1141), 36, + ACTIONS(2885), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(2883), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130654,7 +130507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -130666,21 +130518,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [65944] = 4, - ACTIONS(6168), 1, + [65765] = 3, + ACTIONS(6068), 1, aux_sym__whitespace_token1, - ACTIONS(6163), 2, + ACTIONS(6162), 1, + sym__last_token_punctuation, + ACTIONS(6066), 38, + sym__block_close, + sym__fenced_code_block_end_backtick, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_BSLASH, - ACTIONS(6165), 3, + anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - ACTIONS(6161), 34, + [65812] = 2, + ACTIONS(3002), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(3000), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130688,6 +130580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_SQUOTE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -130713,22 +130606,21 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [65993] = 3, - ACTIONS(6171), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, - anon_sym_RBRACK, + aux_sym__newline_token1, + [65857] = 2, + ACTIONS(6166), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2904), 37, - sym__block_close, + ACTIONS(6164), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130746,7 +130638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -130754,26 +130646,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66040] = 4, - ACTIONS(1143), 1, + [65902] = 2, + ACTIONS(6170), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1556), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6173), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1141), 36, + ACTIONS(6168), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130791,7 +130681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -130800,19 +130689,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66089] = 4, - ACTIONS(1084), 1, + [65947] = 3, + ACTIONS(6068), 1, aux_sym__whitespace_token1, - STATE(1590), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1082), 36, + ACTIONS(6172), 1, + sym__last_token_punctuation, + ACTIONS(6066), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130849,21 +130740,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66138] = 4, - ACTIONS(1084), 1, + [65994] = 2, + ACTIONS(3736), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1598), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6175), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1082), 36, + ACTIONS(3734), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130881,7 +130768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -130890,16 +130776,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66187] = 2, - ACTIONS(2066), 3, + [66039] = 4, + ACTIONS(6174), 1, + anon_sym_LPAREN, + ACTIONS(6113), 3, + anon_sym_AMP, + anon_sym_BSLASH, + aux_sym__whitespace_token1, + ACTIONS(6176), 4, + anon_sym_RPAREN, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + ACTIONS(6111), 32, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [66088] = 2, + ACTIONS(3636), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2064), 37, + ACTIONS(3634), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -130937,14 +130871,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66232] = 4, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(6179), 1, + [66133] = 3, + ACTIONS(6183), 1, + sym__last_token_punctuation, + ACTIONS(6181), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - STATE(2321), 1, - sym__blank_line, - ACTIONS(6177), 37, + ACTIONS(6179), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -130966,7 +130899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -130978,16 +130910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66281] = 2, - ACTIONS(2058), 3, + [66180] = 2, + ACTIONS(383), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2056), 37, + ACTIONS(381), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131025,13 +130958,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66326] = 3, + [66225] = 3, ACTIONS(6185), 1, - sym__last_token_punctuation, - ACTIONS(6183), 2, + sym__last_token_whitespace, + ACTIONS(2885), 2, anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(6181), 37, + ACTIONS(2883), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -131069,25 +131002,71 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66373] = 4, - ACTIONS(6187), 1, - anon_sym_LPAREN, - ACTIONS(6062), 3, - anon_sym_AMP, + [66272] = 7, + ACTIONS(6190), 1, + anon_sym_GT, + ACTIONS(6192), 1, anon_sym_BSLASH, + ACTIONS(6198), 1, + sym__whitespace_ge_2, + ACTIONS(6201), 1, aux_sym__whitespace_token1, - ACTIONS(6189), 4, - anon_sym_RPAREN, + ACTIONS(6195), 3, sym_backslash_escape, sym__word_no_digit, sym__digits, - ACTIONS(6060), 32, + STATE(1576), 4, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(6187), 29, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [66327] = 3, + ACTIONS(2885), 1, + aux_sym__whitespace_token1, + ACTIONS(6204), 1, + sym__last_token_whitespace, + ACTIONS(2883), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -131102,6 +131081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131110,16 +131090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, aux_sym__newline_token1, - [66422] = 2, - ACTIONS(1848), 3, + [66374] = 2, + ACTIONS(6208), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1846), 37, + ACTIONS(6206), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131157,17 +131137,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66467] = 2, - ACTIONS(3745), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [66419] = 3, + ACTIONS(2885), 1, aux_sym__whitespace_token1, - ACTIONS(3743), 37, + ACTIONS(6210), 1, + sym__last_token_whitespace, + ACTIONS(2883), 38, + sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131185,6 +131168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131193,24 +131177,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66512] = 2, - ACTIONS(1802), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [66466] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - ACTIONS(1800), 37, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6212), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(473), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131228,6 +131213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131236,28 +131222,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66557] = 4, - ACTIONS(1032), 1, + [66515] = 2, + ACTIONS(3721), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1602), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6192), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1030), 36, + ACTIONS(3719), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131275,7 +131254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131284,19 +131262,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66606] = 4, - ACTIONS(1020), 1, + [66560] = 4, + ACTIONS(1126), 1, aux_sym__whitespace_token1, - STATE(1604), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6194), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1018), 36, + ACTIONS(1124), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131333,15 +131314,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66655] = 4, - ACTIONS(1014), 1, + [66609] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1612), 1, + STATE(1582), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6196), 2, + ACTIONS(6217), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1012), 36, + ACTIONS(950), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131378,20 +131359,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66704] = 3, - ACTIONS(6198), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, - anon_sym_QMARK, + [66658] = 2, + ACTIONS(6219), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2904), 37, - sym__block_close, + ACTIONS(4689), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131406,9 +131384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131417,26 +131395,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66751] = 4, - ACTIONS(625), 1, + [66703] = 2, + ACTIONS(6224), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1617), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6200), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(623), 36, + ACTIONS(6221), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131454,7 +131430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131463,19 +131438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66800] = 4, - ACTIONS(514), 1, + [66748] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1609), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6202), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 36, + ACTIONS(950), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131512,15 +131490,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66849] = 4, - ACTIONS(514), 1, + [66797] = 4, + ACTIONS(1715), 1, + sym__blank_line_start, + ACTIONS(6229), 1, aux_sym__whitespace_token1, - STATE(1590), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(512), 36, + STATE(2316), 1, + sym__blank_line, + ACTIONS(6227), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131557,26 +131535,24 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66898] = 3, - ACTIONS(6204), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, - anon_sym_DASH, + [66846] = 2, + ACTIONS(5990), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2904), 37, - sym__block_close, + ACTIONS(5987), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -131587,7 +131563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131596,20 +131571,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66945] = 4, - ACTIONS(522), 1, + [66891] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1586), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6206), 2, + ACTIONS(6231), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 36, + ACTIONS(622), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131646,17 +131623,21 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [66994] = 2, - ACTIONS(6211), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [66940] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - ACTIONS(6209), 37, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(622), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131674,52 +131655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [67039] = 4, - ACTIONS(1714), 1, - aux_sym__newline_token1, - STATE(1638), 1, - sym__newline, - ACTIONS(3652), 3, - anon_sym_AMP, anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(3650), 35, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131728,21 +131664,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [67088] = 4, - ACTIONS(1006), 1, + aux_sym__newline_token1, + [66989] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1621), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6213), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1004), 36, + ACTIONS(695), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131779,15 +131713,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67137] = 4, - ACTIONS(998), 1, + [67038] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1644), 1, + STATE(1590), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6215), 2, + ACTIONS(6233), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(996), 36, + ACTIONS(695), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131824,63 +131758,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67186] = 7, - ACTIONS(6219), 1, - anon_sym_GT, - ACTIONS(6221), 1, - anon_sym_BSLASH, - ACTIONS(6225), 1, - sym__whitespace_ge_2, - ACTIONS(6227), 1, + [67087] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - ACTIONS(6223), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1624), 4, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(6217), 29, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [67241] = 4, - ACTIONS(730), 1, - aux_sym__whitespace_token1, - STATE(1561), 1, + STATE(1591), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6229), 2, + ACTIONS(6235), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 36, + ACTIONS(750), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -131917,17 +131803,21 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67290] = 2, - ACTIONS(6233), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [67136] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - ACTIONS(6231), 37, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(750), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131945,6 +131835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -131953,22 +131844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67335] = 4, - ACTIONS(822), 1, + [67185] = 4, + ACTIONS(758), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 36, + ACTIONS(756), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132005,25 +131893,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67384] = 7, - ACTIONS(6221), 1, - anon_sym_BSLASH, - ACTIONS(6225), 1, - sym__whitespace_ge_2, - ACTIONS(6227), 1, + [67234] = 4, + ACTIONS(762), 1, aux_sym__whitespace_token1, - ACTIONS(6235), 1, - anon_sym_GT, - ACTIONS(6237), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1595), 4, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(6217), 29, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(760), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132041,46 +131919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - [67439] = 2, - ACTIONS(1968), 3, - anon_sym_AMP, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(1966), 37, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -132089,24 +131934,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67484] = 2, - ACTIONS(5981), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [67283] = 4, + ACTIONS(766), 1, aux_sym__whitespace_token1, - ACTIONS(5978), 37, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(764), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132124,6 +131970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -132132,22 +131979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67529] = 4, - ACTIONS(790), 1, + [67332] = 4, + ACTIONS(770), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 36, + ACTIONS(768), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132184,15 +132028,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67578] = 4, - ACTIONS(790), 1, + [67381] = 4, + ACTIONS(774), 1, aux_sym__whitespace_token1, - STATE(1630), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6239), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 36, + ACTIONS(772), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132229,15 +132073,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67627] = 4, - ACTIONS(619), 1, + [67430] = 4, + ACTIONS(778), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 36, + ACTIONS(776), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132274,15 +132118,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67676] = 4, - ACTIONS(619), 1, + [67479] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1629), 1, + STATE(1594), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6241), 2, + ACTIONS(6237), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 36, + ACTIONS(843), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132319,14 +132163,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67725] = 3, - ACTIONS(5996), 1, + [67528] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - ACTIONS(6243), 1, - sym__last_token_punctuation, - ACTIONS(5994), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(843), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132363,15 +132208,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67772] = 4, - ACTIONS(1423), 1, + [67577] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - STATE(1572), 1, + STATE(1595), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6245), 2, + ACTIONS(6239), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1421), 36, + ACTIONS(849), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132408,17 +132253,21 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67821] = 2, - ACTIONS(6163), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [67626] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - ACTIONS(6161), 37, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(849), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132436,6 +132285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -132444,22 +132294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67866] = 4, - ACTIONS(529), 1, + [67675] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1596), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6241), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 36, + ACTIONS(855), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132496,15 +132343,63 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67915] = 4, - ACTIONS(1726), 1, - sym__blank_line_start, - ACTIONS(6249), 1, + [67724] = 7, + ACTIONS(6245), 1, + anon_sym_GT, + ACTIONS(6247), 1, + anon_sym_BSLASH, + ACTIONS(6251), 1, + sym__whitespace_ge_2, + ACTIONS(6253), 1, aux_sym__whitespace_token1, - STATE(2396), 1, - sym__blank_line, - ACTIONS(6247), 37, - sym__block_close, + ACTIONS(6249), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1632), 4, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(6243), 29, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [67779] = 4, + ACTIONS(857), 1, + aux_sym__whitespace_token1, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(855), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132541,15 +132436,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [67964] = 4, - ACTIONS(730), 1, + [67828] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1597), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6255), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 36, + ACTIONS(861), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132586,15 +132481,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68013] = 4, - ACTIONS(782), 1, + [67877] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 36, + ACTIONS(861), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132631,14 +132526,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68062] = 3, - ACTIONS(6255), 1, - sym__last_token_punctuation, - ACTIONS(6253), 2, - anon_sym_RBRACK, + [67926] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - ACTIONS(6251), 37, - sym__block_close, + STATE(1598), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6257), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(867), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132663,6 +132559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -132670,22 +132567,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68109] = 2, - ACTIONS(396), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [67975] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - ACTIONS(394), 37, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(867), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132703,6 +132603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -132711,21 +132612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68154] = 3, - ACTIONS(6259), 1, + [68024] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - ACTIONS(6261), 2, - sym__last_token_punctuation, - sym__close_block, - ACTIONS(6257), 37, - sym__block_close, + STATE(1599), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6259), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(907), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132762,15 +132661,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68201] = 4, - ACTIONS(782), 1, + [68073] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - STATE(1627), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6263), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 36, + ACTIONS(907), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132807,15 +132706,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68250] = 4, - ACTIONS(774), 1, + [68122] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1600), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6261), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 36, + ACTIONS(921), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132852,14 +132751,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68299] = 3, - ACTIONS(6269), 1, - sym__last_token_punctuation, - ACTIONS(6267), 2, - anon_sym_QMARK, + [68171] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - ACTIONS(6265), 37, - sym__block_close, + STATE(1580), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6215), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(921), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132880,6 +132780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -132891,19 +132792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68346] = 3, - ACTIONS(2906), 1, + [68220] = 4, + ACTIONS(1025), 1, aux_sym__whitespace_token1, - ACTIONS(6271), 1, + STATE(1602), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6263), 2, + sym__block_continuation, sym__last_token_whitespace, - ACTIONS(2904), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(1023), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132940,15 +132841,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68393] = 4, - ACTIONS(774), 1, + [68269] = 4, + ACTIONS(1031), 1, aux_sym__whitespace_token1, - STATE(1626), 1, + STATE(1604), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6273), 2, + ACTIONS(6265), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 36, + ACTIONS(1029), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -132985,15 +132886,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68442] = 4, - ACTIONS(768), 1, + [68318] = 4, + ACTIONS(1037), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1607), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6267), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 36, + ACTIONS(1035), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133030,15 +132931,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68491] = 4, - ACTIONS(768), 1, + [68367] = 4, + ACTIONS(1043), 1, aux_sym__whitespace_token1, - STATE(1625), 1, + STATE(1609), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6275), 2, + ACTIONS(6269), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 36, + ACTIONS(1041), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133075,17 +132976,21 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68540] = 2, - ACTIONS(2016), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [68416] = 4, + ACTIONS(1049), 1, aux_sym__whitespace_token1, - ACTIONS(2014), 37, + STATE(1611), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6271), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1047), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133103,6 +133008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133111,32 +133017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68585] = 7, - ACTIONS(6280), 1, - anon_sym_GT, - ACTIONS(6282), 1, - anon_sym_BSLASH, - ACTIONS(6288), 1, - sym__whitespace_ge_2, - ACTIONS(6291), 1, + [68465] = 3, + ACTIONS(6273), 1, + sym__last_token_whitespace, + ACTIONS(2885), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(6285), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1624), 4, - sym__text_no_angle, - sym__whitespace, - sym__word, - aux_sym_link_destination_repeat1, - ACTIONS(6277), 29, + ACTIONS(2883), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133149,15 +133041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133166,15 +133060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [68640] = 4, - ACTIONS(726), 1, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [68512] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1615), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6275), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(724), 36, + ACTIONS(1065), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133211,15 +133110,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68689] = 4, - ACTIONS(710), 1, + [68561] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(708), 36, + ACTIONS(1065), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133256,15 +133155,58 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68738] = 4, - ACTIONS(706), 1, + [68610] = 2, + ACTIONS(1741), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1590), 1, + ACTIONS(1739), 37, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [68655] = 4, + ACTIONS(1209), 1, + aux_sym__whitespace_token1, + STATE(1623), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6277), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(704), 36, + ACTIONS(1207), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133301,19 +133243,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68787] = 2, - ACTIONS(2062), 3, + [68704] = 3, + ACTIONS(6279), 1, + sym__last_token_punctuation, + ACTIONS(6113), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2060), 37, + ACTIONS(6111), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -133340,19 +133283,109 @@ static const uint16_t ts_small_parse_table[] = { sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, - sym__whitespace_ge_2, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [68751] = 4, + ACTIONS(6288), 1, + aux_sym__whitespace_token1, + ACTIONS(6283), 2, + anon_sym_AMP, + anon_sym_BSLASH, + ACTIONS(6285), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + ACTIONS(6281), 34, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, + [68800] = 4, + ACTIONS(1713), 1, aux_sym__newline_token1, - [68832] = 4, - ACTIONS(673), 1, + STATE(1642), 1, + sym__newline, + ACTIONS(3636), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1590), 1, + ACTIONS(3634), 35, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + [68849] = 4, + ACTIONS(494), 1, + aux_sym__whitespace_token1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(671), 36, + ACTIONS(492), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133389,15 +133422,15 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68881] = 4, - ACTIONS(665), 1, + [68898] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1590), 1, + STATE(1580), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, + ACTIONS(6215), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(663), 36, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133434,17 +133467,21 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68930] = 2, - ACTIONS(6296), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [68947] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - ACTIONS(6294), 37, + STATE(1629), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6291), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(482), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133462,6 +133499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133470,19 +133508,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [68975] = 2, - ACTIONS(6300), 3, + [68996] = 7, + ACTIONS(6247), 1, + anon_sym_BSLASH, + ACTIONS(6251), 1, + sym__whitespace_ge_2, + ACTIONS(6253), 1, + aux_sym__whitespace_token1, + ACTIONS(6293), 1, + anon_sym_GT, + ACTIONS(6295), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1576), 4, + sym__text_no_angle, + sym__whitespace, + sym__word, + aux_sym_link_destination_repeat1, + ACTIONS(6243), 29, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [69051] = 2, + ACTIONS(6297), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6298), 37, + ACTIONS(4666), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133520,12 +133603,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69020] = 2, - ACTIONS(3652), 3, + [69096] = 2, + ACTIONS(2177), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3650), 37, + ACTIONS(2175), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133563,21 +133646,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69065] = 4, - ACTIONS(669), 1, + [69141] = 2, + ACTIONS(2173), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1590), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(667), 36, + ACTIONS(2171), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133595,7 +133674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133604,25 +133682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69114] = 4, - ACTIONS(758), 1, + [69186] = 2, + ACTIONS(1971), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1611), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6302), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(756), 36, + ACTIONS(1969), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133640,7 +133717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133649,30 +133725,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69163] = 3, - ACTIONS(6308), 1, - sym__last_token_punctuation, - ACTIONS(6306), 2, - anon_sym_DASH, + [69231] = 2, + ACTIONS(2039), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6304), 37, - sym__block_close, + ACTIONS(2037), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -133683,7 +133760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133692,17 +133768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69210] = 2, - ACTIONS(6310), 3, + [69276] = 2, + ACTIONS(2029), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4745), 37, + ACTIONS(2027), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133740,12 +133818,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69255] = 2, - ACTIONS(1844), 3, + [69321] = 2, + ACTIONS(6106), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(1842), 37, + ACTIONS(6103), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133783,20 +133861,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69300] = 3, - ACTIONS(6312), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, - anon_sym_LT, + [69366] = 2, + ACTIONS(2087), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2904), 37, - sym__block_close, + ACTIONS(2085), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133808,12 +133883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133822,17 +133897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69347] = 2, - ACTIONS(6317), 3, + [69411] = 2, + ACTIONS(2081), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6314), 37, + ACTIONS(2079), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133870,20 +133947,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69392] = 3, - ACTIONS(5996), 1, + [69456] = 2, + ACTIONS(2025), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6320), 1, - sym__last_token_punctuation, - ACTIONS(5994), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(2023), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133901,7 +133975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -133910,16 +133983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69439] = 2, - ACTIONS(6322), 3, + [69501] = 2, + ACTIONS(1837), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(4650), 37, + ACTIONS(1835), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -133957,12 +134033,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69484] = 2, - ACTIONS(6327), 3, + [69546] = 2, + ACTIONS(6302), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6324), 37, + ACTIONS(6299), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134000,21 +134076,17 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69529] = 4, - ACTIONS(758), 1, + [69591] = 2, + ACTIONS(5182), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - STATE(1590), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6149), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(756), 36, + ACTIONS(5177), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134032,7 +134104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -134041,16 +134112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69578] = 2, - ACTIONS(5276), 3, + [69636] = 2, + ACTIONS(6283), 3, anon_sym_AMP, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(5271), 37, + ACTIONS(6281), 37, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134088,17 +134162,64 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69623] = 2, - ACTIONS(1836), 3, + [69681] = 3, + ACTIONS(6309), 1, + sym__last_token_punctuation, + ACTIONS(6307), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(6305), 37, + sym__block_close, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [69728] = 3, + ACTIONS(6315), 1, + sym__last_token_punctuation, + ACTIONS(6313), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(1834), 37, + ACTIONS(6311), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134110,12 +134231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -134124,33 +134245,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69668] = 7, - ACTIONS(4162), 1, + [69775] = 7, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4492), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - STATE(2055), 1, + STATE(2065), 1, sym_link_destination, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134178,12 +134297,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [69722] = 2, - ACTIONS(2989), 2, - anon_sym_DASH, + [69829] = 3, + ACTIONS(6068), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 37, + ACTIONS(6317), 1, + sym__last_token_punctuation, + ACTIONS(6066), 37, sym__block_close, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [69875] = 3, + ACTIONS(6319), 1, + sym__last_token_whitespace, + ACTIONS(2885), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(2883), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134220,12 +134383,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69766] = 2, - ACTIONS(2989), 1, + [69921] = 3, + ACTIONS(6321), 1, + sym__last_token_whitespace, + ACTIONS(2885), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(2987), 38, - sym__block_close, - sym__fenced_code_block_end_tilde, + ACTIONS(2883), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134246,7 +134410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -134258,15 +134421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69810] = 2, - ACTIONS(6330), 2, - anon_sym_QMARK, + [69967] = 2, + ACTIONS(6323), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(5098), 37, + ACTIONS(5221), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -134285,9 +134449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -134299,18 +134463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69854] = 3, - ACTIONS(6332), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, + [70011] = 2, + ACTIONS(6325), 2, anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(2904), 36, + ACTIONS(5018), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134347,11 +134510,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69900] = 2, - ACTIONS(6334), 2, - anon_sym_DASH, + [70055] = 3, + ACTIONS(6229), 1, aux_sym__whitespace_token1, - ACTIONS(5067), 37, + ACTIONS(6327), 1, + sym__last_token_punctuation, + ACTIONS(6227), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -134365,6 +134529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -134384,17 +134549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69944] = 2, - ACTIONS(6300), 1, + [70101] = 3, + ACTIONS(6329), 1, + sym__last_token_whitespace, + ACTIONS(2885), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(6298), 38, - sym__block_close, - sym__fenced_code_block_end_backtick, + ACTIONS(2883), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134419,7 +134584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -134427,25 +134591,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [69988] = 3, - ACTIONS(6340), 1, - sym__last_token_punctuation, - ACTIONS(6338), 2, - anon_sym_QMARK, + [70147] = 2, + ACTIONS(6331), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6336), 36, + ACTIONS(5130), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -134458,9 +134620,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -134469,17 +134631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70034] = 2, - ACTIONS(6342), 2, - anon_sym_LT, + [70191] = 2, + ACTIONS(3002), 1, aux_sym__whitespace_token1, - ACTIONS(4995), 37, + ACTIONS(3000), 38, sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134497,6 +134661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -134511,15 +134676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70078] = 2, - ACTIONS(6300), 1, + [70235] = 2, + ACTIONS(3002), 1, aux_sym__whitespace_token1, - ACTIONS(6298), 38, + ACTIONS(3000), 38, sym__block_close, sym__fenced_code_block_end_tilde, anon_sym_BANG, @@ -134558,12 +134722,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70122] = 3, - ACTIONS(2906), 1, + [70279] = 2, + ACTIONS(3002), 2, + anon_sym_LT, aux_sym__whitespace_token1, - ACTIONS(6344), 1, - sym__last_token_whitespace, - ACTIONS(2904), 37, + ACTIONS(3000), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -134582,7 +134745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, @@ -134597,26 +134759,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + aux_sym__html_block_1_token2, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70168] = 3, - ACTIONS(2906), 1, - aux_sym__whitespace_token1, - ACTIONS(6346), 1, - sym__last_token_whitespace, - ACTIONS(2904), 37, - sym__code_span_close, + [70323] = 7, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2041), 1, + sym_link_destination, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -134625,13 +134798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -134640,15 +134811,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [70214] = 2, - ACTIONS(2989), 2, - anon_sym_LT, + [70377] = 2, + ACTIONS(6333), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(2987), 37, + ACTIONS(5244), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -134667,9 +134834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -134681,17 +134848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - aux_sym__html_block_1_token2, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70258] = 2, - ACTIONS(2989), 1, + [70421] = 2, + ACTIONS(3002), 2, + anon_sym_DASH, aux_sym__whitespace_token1, - ACTIONS(2987), 38, + ACTIONS(3000), 37, sym__block_close, - sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134704,7 +134871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -134724,25 +134890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70302] = 3, - ACTIONS(6179), 1, + [70465] = 2, + ACTIONS(6337), 3, + anon_sym_AMP, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6348), 1, - sym__last_token_punctuation, - ACTIONS(6177), 37, - sym__block_close, + ACTIONS(6335), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -134758,7 +134922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -134767,30 +134930,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70348] = 7, - ACTIONS(4162), 1, + [70509] = 7, + ACTIONS(4163), 1, anon_sym_LT, - ACTIONS(4492), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - STATE(2036), 1, + STATE(2043), 1, sym_link_destination, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134818,45 +134984,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70402] = 7, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(2042), 1, - sym_link_destination, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + [70563] = 5, + ACTIONS(6341), 1, + anon_sym_DASH, + ACTIONS(6345), 1, + aux_sym__whitespace_token1, + ACTIONS(6347), 1, + sym__last_token_punctuation, + ACTIONS(6343), 6, + anon_sym_GT, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + aux_sym__newline_token1, + ACTIONS(6339), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, - anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -134865,18 +135029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70456] = 2, - ACTIONS(6350), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [70613] = 3, + ACTIONS(6349), 1, + sym__last_token_punctuation, + ACTIONS(6345), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5296), 36, + ACTIONS(6343), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -134892,7 +135059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_BSLASH, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -134900,20 +135067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70500] = 3, - ACTIONS(5996), 1, + [70659] = 2, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - ACTIONS(6352), 1, - sym__last_token_punctuation, - ACTIONS(5994), 37, - sym__code_span_close, + ACTIONS(6164), 38, + sym__block_close, + sym__fenced_code_block_end_tilde, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -134950,32 +135114,22 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70546] = 7, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(2047), 1, - sym_link_destination, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 27, + [70703] = 3, + ACTIONS(2885), 1, + aux_sym__whitespace_token1, + ACTIONS(6351), 1, + sym__last_token_whitespace, + ACTIONS(2883), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -134984,11 +135138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -134997,21 +135153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70600] = 5, - ACTIONS(6338), 1, - aux_sym__whitespace_token1, - ACTIONS(6356), 1, - anon_sym_DASH, - ACTIONS(6358), 1, - sym__last_token_punctuation, - ACTIONS(6336), 6, - anon_sym_GT, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - ACTIONS(6354), 30, + [70749] = 2, + ACTIONS(3002), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(3000), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135024,13 +135175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_QMARK, + anon_sym_GT, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -135042,21 +135194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70650] = 5, - ACTIONS(6338), 1, - aux_sym__whitespace_token1, - ACTIONS(6358), 1, - sym__last_token_punctuation, - ACTIONS(6362), 1, - anon_sym_DASH, - ACTIONS(6336), 6, - anon_sym_GT, - anon_sym_DASH_DASH_GT, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - ACTIONS(6360), 30, + [70793] = 3, + ACTIONS(6353), 1, + sym__last_token_punctuation, + ACTIONS(6345), 2, + anon_sym_QMARK, + aux_sym__whitespace_token1, + ACTIONS(6343), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135069,13 +135218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_EQ, - anon_sym_QMARK, + anon_sym_GT, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -135087,13 +135237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70700] = 3, - ACTIONS(5996), 1, + anon_sym_QMARK_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [70839] = 3, + ACTIONS(2885), 1, aux_sym__whitespace_token1, - ACTIONS(6364), 1, - sym__last_token_punctuation, - ACTIONS(5994), 37, - sym__block_close, + ACTIONS(6355), 1, + sym__last_token_whitespace, + ACTIONS(2883), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135130,13 +135285,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70746] = 3, - ACTIONS(6366), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, - anon_sym_QMARK, + [70885] = 2, + ACTIONS(3002), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(2904), 36, + ACTIONS(3000), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135157,10 +135311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -135168,16 +135322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70792] = 2, - ACTIONS(6368), 2, - anon_sym_RBRACK, + [70929] = 3, + ACTIONS(6144), 1, aux_sym__whitespace_token1, - ACTIONS(5222), 37, + ACTIONS(6146), 1, + sym__last_token_punctuation, + ACTIONS(6142), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -135203,6 +135358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -135210,37 +135366,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70836] = 7, - ACTIONS(4162), 1, - anon_sym_LT, - ACTIONS(4492), 1, - anon_sym_LPAREN, - STATE(2063), 1, - sym_link_destination, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_BSLASH, - STATE(1130), 2, - sym__link_destination_parenthesis, - sym__word, - ACTIONS(4164), 5, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, - sym__word_no_digit, - sym__digits, - ACTIONS(4150), 27, + [70975] = 2, + ACTIONS(6166), 1, + aux_sym__whitespace_token1, + ACTIONS(6164), 38, + sym__block_close, + sym__fenced_code_block_end_backtick, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, @@ -135249,11 +135393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -135262,13 +135408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70890] = 3, - ACTIONS(6358), 1, - sym__last_token_punctuation, - ACTIONS(6338), 2, - anon_sym_DASH, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [71019] = 3, + ACTIONS(6150), 1, aux_sym__whitespace_token1, - ACTIONS(6336), 36, + ACTIONS(6357), 1, + sym__last_token_punctuation, + ACTIONS(6148), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135281,6 +135431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -135300,48 +135451,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [70936] = 5, - ACTIONS(6338), 1, - aux_sym__whitespace_token1, - ACTIONS(6358), 1, - sym__last_token_punctuation, - ACTIONS(6372), 1, - anon_sym_DASH, - ACTIONS(6336), 6, - anon_sym_GT, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, + [71065] = 7, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2050), 1, + sym_link_destination, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - ACTIONS(6370), 30, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, + anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -135350,11 +135502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [70986] = 2, - ACTIONS(2989), 2, + [71119] = 2, + ACTIONS(6359), 2, anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(2987), 37, + ACTIONS(5339), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -135392,26 +135544,69 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71030] = 7, - ACTIONS(4162), 1, + [71163] = 3, + ACTIONS(3636), 1, + aux_sym__whitespace_token1, + STATE(1712), 1, + sym__newline, + ACTIONS(3634), 37, + sym__code_span_close, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, anon_sym_LT, - ACTIONS(4492), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [71209] = 7, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4479), 1, anon_sym_LPAREN, - STATE(2049), 1, + STATE(2054), 1, sym_link_destination, - ACTIONS(4154), 2, + ACTIONS(4155), 2, anon_sym_AMP, anon_sym_BSLASH, - STATE(1130), 2, + STATE(1253), 2, sym__link_destination_parenthesis, sym__word, - ACTIONS(4164), 5, + ACTIONS(4165), 5, sym_backslash_escape, sym_entity_reference, sym_numeric_character_reference, sym__word_no_digit, sym__digits, - ACTIONS(4150), 27, + ACTIONS(4151), 27, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135439,13 +135634,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - [71084] = 3, - ACTIONS(6374), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, + [71263] = 7, + ACTIONS(4163), 1, + anon_sym_LT, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2053), 1, + sym_link_destination, + ACTIONS(4155), 2, + anon_sym_AMP, + anon_sym_BSLASH, + STATE(1253), 2, + sym__link_destination_parenthesis, + sym__word, + ACTIONS(4165), 5, + sym_backslash_escape, + sym_entity_reference, + sym_numeric_character_reference, + sym__word_no_digit, + sym__digits, + ACTIONS(4151), 27, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_SQUOTE, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [71317] = 5, + ACTIONS(6345), 1, aux_sym__whitespace_token1, - ACTIONS(2904), 36, + ACTIONS(6347), 1, + sym__last_token_punctuation, + ACTIONS(6363), 1, + anon_sym_DASH, + ACTIONS(6343), 6, + anon_sym_GT, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + ACTIONS(6361), 30, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135458,7 +135708,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [71367] = 3, + ACTIONS(6347), 1, + sym__last_token_punctuation, + ACTIONS(6345), 2, anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(6343), 36, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -135470,6 +135756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -135477,17 +135764,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71130] = 3, - ACTIONS(3652), 1, + [71413] = 5, + ACTIONS(6345), 1, aux_sym__whitespace_token1, - STATE(1713), 1, - sym__newline, - ACTIONS(3650), 37, + ACTIONS(6347), 1, + sym__last_token_punctuation, + ACTIONS(6367), 1, + anon_sym_DASH, + ACTIONS(6343), 6, + anon_sym_GT, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + ACTIONS(6365), 30, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + [71463] = 3, + ACTIONS(6068), 1, + aux_sym__whitespace_token1, + ACTIONS(6369), 1, + sym__last_token_punctuation, + ACTIONS(6066), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -135525,12 +135857,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71176] = 2, - ACTIONS(2989), 2, - anon_sym_QMARK, + [71509] = 3, + ACTIONS(6373), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 37, - sym__block_close, + ACTIONS(6375), 1, + sym__last_token_punctuation, + ACTIONS(6371), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135551,6 +135883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -135562,18 +135895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71220] = 3, - ACTIONS(6259), 1, + [71554] = 2, + ACTIONS(1837), 1, aux_sym__whitespace_token1, - ACTIONS(6261), 1, - sym__last_token_punctuation, - ACTIONS(6257), 37, - sym__block_close, + ACTIONS(1835), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135610,13 +135940,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71266] = 3, - ACTIONS(6376), 1, - sym__last_token_punctuation, - ACTIONS(6338), 2, - anon_sym_RBRACK, + [71597] = 2, + ACTIONS(6379), 1, aux_sym__whitespace_token1, - ACTIONS(6336), 36, + ACTIONS(6377), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135641,6 +135969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -135648,23 +135977,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71312] = 2, - ACTIONS(6380), 3, - anon_sym_AMP, - anon_sym_BSLASH, + [71640] = 2, + ACTIONS(3002), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - ACTIONS(6378), 36, + ACTIONS(3000), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_SQUOTE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PLUS, @@ -135677,9 +136006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -135688,20 +136017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - sym_backslash_escape, - sym_entity_reference, - sym_numeric_character_reference, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71356] = 3, - ACTIONS(6249), 1, + [71683] = 3, + ACTIONS(6383), 1, aux_sym__whitespace_token1, - ACTIONS(6382), 1, + ACTIONS(6385), 1, sym__last_token_punctuation, - ACTIONS(6247), 37, - sym__block_close, + ACTIONS(6381), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135738,11 +136064,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71402] = 2, - ACTIONS(6384), 2, - anon_sym_QMARK, + [71728] = 2, + ACTIONS(3002), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(5522), 36, + ACTIONS(3000), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135763,10 +136089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -135774,16 +136100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71445] = 2, - ACTIONS(2062), 1, + [71771] = 2, + ACTIONS(6389), 1, aux_sym__whitespace_token1, - ACTIONS(2060), 37, - sym__code_span_close, + ACTIONS(6387), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135820,11 +136146,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71488] = 2, - ACTIONS(3745), 1, + [71814] = 3, + ACTIONS(3636), 1, aux_sym__whitespace_token1, - ACTIONS(3743), 37, - sym__code_span_close, + STATE(1727), 1, + sym__newline, + ACTIONS(3634), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135861,12 +136188,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71531] = 3, - ACTIONS(2906), 1, + [71859] = 2, + ACTIONS(3002), 1, aux_sym__whitespace_token1, - ACTIONS(6386), 1, - sym__last_token_whitespace, - ACTIONS(2904), 36, + ACTIONS(3000), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135903,12 +136229,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71576] = 3, - ACTIONS(3652), 1, + [71902] = 2, + ACTIONS(6391), 2, + anon_sym_QMARK, aux_sym__whitespace_token1, - STATE(1724), 1, - sym__newline, - ACTIONS(3650), 36, + ACTIONS(5820), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135929,7 +136254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, - anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -135941,16 +136265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71621] = 3, - ACTIONS(6390), 1, + [71945] = 2, + ACTIONS(6393), 1, aux_sym__whitespace_token1, - ACTIONS(6392), 1, - sym__last_token_punctuation, - ACTIONS(6388), 36, + ACTIONS(5880), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -135987,10 +136311,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71666] = 2, - ACTIONS(3652), 1, + [71988] = 2, + ACTIONS(3721), 1, aux_sym__whitespace_token1, - ACTIONS(3650), 37, + ACTIONS(3719), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136028,11 +136352,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71709] = 2, - ACTIONS(1848), 1, + [72031] = 3, + ACTIONS(6397), 1, aux_sym__whitespace_token1, - ACTIONS(1846), 37, - sym__code_span_close, + ACTIONS(6399), 1, + sym__last_token_punctuation, + ACTIONS(6395), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136069,10 +136394,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71752] = 2, - ACTIONS(6300), 1, + [72076] = 2, + ACTIONS(383), 1, aux_sym__whitespace_token1, - ACTIONS(6298), 37, + ACTIONS(381), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136110,11 +136435,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71795] = 2, - ACTIONS(6384), 2, - anon_sym_RBRACK, + [72119] = 2, + ACTIONS(3736), 1, aux_sym__whitespace_token1, - ACTIONS(5522), 36, + ACTIONS(3734), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136139,6 +136464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, + anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -136146,15 +136472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71838] = 2, - ACTIONS(6394), 1, + [72162] = 2, + ACTIONS(6401), 1, aux_sym__whitespace_token1, - ACTIONS(5604), 37, + ACTIONS(5554), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136192,10 +136517,51 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71881] = 2, - ACTIONS(2989), 1, + [72205] = 2, + ACTIONS(3002), 2, + anon_sym_DASH, + aux_sym__whitespace_token1, + ACTIONS(3000), 36, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_DASH_DASH_GT, + sym__whitespace_ge_2, + sym__word_no_digit, + sym__digits, + aux_sym__newline_token1, + [72248] = 2, + ACTIONS(3636), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 37, + ACTIONS(3634), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136233,52 +136599,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [71924] = 2, - ACTIONS(2989), 2, - anon_sym_RBRACK, - aux_sym__whitespace_token1, - ACTIONS(2987), 36, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, + [72291] = 2, + ACTIONS(6391), 2, anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_RBRACK_RBRACK_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [71967] = 2, - ACTIONS(6396), 1, aux_sym__whitespace_token1, - ACTIONS(5713), 37, - sym__block_close, + ACTIONS(5820), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136291,7 +136616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, @@ -136311,14 +136635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_DASH_DASH_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72010] = 2, - ACTIONS(6398), 1, + [72334] = 2, + ACTIONS(6403), 1, aux_sym__whitespace_token1, - ACTIONS(5634), 37, + ACTIONS(5511), 37, sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136356,11 +136681,12 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72053] = 2, - ACTIONS(2989), 1, + [72377] = 3, + ACTIONS(2885), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 37, - sym__block_close, + ACTIONS(6405), 1, + sym__last_token_whitespace, + ACTIONS(2883), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136397,10 +136723,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72096] = 2, - ACTIONS(2058), 1, + [72422] = 2, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - ACTIONS(2056), 37, + ACTIONS(6164), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136438,11 +136764,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72139] = 2, - ACTIONS(2989), 2, - anon_sym_QMARK, + [72465] = 2, + ACTIONS(6166), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 36, + ACTIONS(6164), 37, + sym__block_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136463,6 +136789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ, anon_sym_GT, + anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, @@ -136474,15 +136801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, - anon_sym_QMARK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72182] = 2, - ACTIONS(3717), 1, + [72508] = 2, + ACTIONS(3002), 1, aux_sym__whitespace_token1, - ACTIONS(3715), 37, + ACTIONS(3000), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136520,11 +136846,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72225] = 2, - ACTIONS(6300), 1, + [72551] = 2, + ACTIONS(6391), 2, + anon_sym_RBRACK, aux_sym__whitespace_token1, - ACTIONS(6298), 37, - sym__block_close, + ACTIONS(5820), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136549,7 +136875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, @@ -136557,14 +136882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + anon_sym_RBRACK_RBRACK_GT, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72268] = 2, - ACTIONS(1852), 1, + [72594] = 2, + ACTIONS(1741), 1, aux_sym__whitespace_token1, - ACTIONS(1850), 37, + ACTIONS(1739), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136602,51 +136928,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72311] = 2, - ACTIONS(2989), 2, - anon_sym_DASH, + [72637] = 2, + ACTIONS(2025), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 36, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [72354] = 2, - ACTIONS(2066), 1, - aux_sym__whitespace_token1, - ACTIONS(2064), 37, + ACTIONS(2023), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136684,11 +136969,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72397] = 2, - ACTIONS(6402), 1, + [72680] = 2, + ACTIONS(2177), 1, aux_sym__whitespace_token1, - ACTIONS(6400), 37, - sym__block_close, + ACTIONS(2175), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136725,51 +137010,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72440] = 2, - ACTIONS(6384), 2, - anon_sym_DASH, + [72723] = 2, + ACTIONS(2081), 1, aux_sym__whitespace_token1, - ACTIONS(5522), 36, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_DASH_DASH_GT, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [72483] = 2, - ACTIONS(396), 1, - aux_sym__whitespace_token1, - ACTIONS(394), 37, + ACTIONS(2079), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136807,10 +137051,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72526] = 2, - ACTIONS(2016), 1, + [72766] = 2, + ACTIONS(2087), 1, aux_sym__whitespace_token1, - ACTIONS(2014), 37, + ACTIONS(2085), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136848,12 +137092,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72569] = 3, - ACTIONS(6406), 1, + [72809] = 2, + ACTIONS(2029), 1, aux_sym__whitespace_token1, - ACTIONS(6408), 1, - sym__last_token_punctuation, - ACTIONS(6404), 36, + ACTIONS(2027), 37, + sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -136890,10 +137133,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72614] = 2, - ACTIONS(1836), 1, + [72852] = 2, + ACTIONS(2039), 1, aux_sym__whitespace_token1, - ACTIONS(1834), 37, + ACTIONS(2037), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136931,10 +137174,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72657] = 2, - ACTIONS(1844), 1, + [72895] = 2, + ACTIONS(2173), 1, aux_sym__whitespace_token1, - ACTIONS(1842), 37, + ACTIONS(2171), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -136972,10 +137215,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72700] = 2, - ACTIONS(1968), 1, + [72938] = 2, + ACTIONS(1971), 1, aux_sym__whitespace_token1, - ACTIONS(1966), 37, + ACTIONS(1969), 37, sym__code_span_close, anon_sym_BANG, anon_sym_DQUOTE, @@ -137013,53 +137256,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72743] = 3, - ACTIONS(6412), 1, - aux_sym__whitespace_token1, - ACTIONS(6414), 1, + [72981] = 3, + ACTIONS(6411), 1, sym__last_token_punctuation, - ACTIONS(6410), 36, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(6409), 2, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - aux_sym__newline_token1, - [72788] = 2, - ACTIONS(1802), 1, aux_sym__whitespace_token1, - ACTIONS(1800), 37, - sym__code_span_close, + ACTIONS(6407), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137077,13 +137280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -137092,15 +137293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [72831] = 2, - ACTIONS(6418), 1, + [73025] = 2, + ACTIONS(3721), 1, aux_sym__whitespace_token1, - ACTIONS(6416), 37, - sym__block_close, + ACTIONS(3719), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137137,10 +137337,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72874] = 2, - ACTIONS(3745), 1, + [73067] = 2, + ACTIONS(2173), 1, aux_sym__whitespace_token1, - ACTIONS(3743), 36, + ACTIONS(2171), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137177,10 +137377,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72916] = 2, - ACTIONS(2062), 1, + [73109] = 2, + ACTIONS(2081), 1, aux_sym__whitespace_token1, - ACTIONS(2060), 36, + ACTIONS(2079), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137217,10 +137417,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [72958] = 2, - ACTIONS(1802), 1, + [73151] = 2, + ACTIONS(2029), 1, aux_sym__whitespace_token1, - ACTIONS(1800), 36, + ACTIONS(2027), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137257,10 +137457,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73000] = 2, - ACTIONS(2989), 1, + [73193] = 2, + ACTIONS(2087), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 36, + ACTIONS(2085), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137297,10 +137497,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73042] = 2, - ACTIONS(3652), 1, + [73235] = 2, + ACTIONS(3002), 1, aux_sym__whitespace_token1, - ACTIONS(3650), 36, + ACTIONS(3000), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137337,10 +137537,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73084] = 2, - ACTIONS(2058), 1, + [73277] = 2, + ACTIONS(2025), 1, aux_sym__whitespace_token1, - ACTIONS(2056), 36, + ACTIONS(2023), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137377,10 +137577,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73126] = 2, - ACTIONS(1844), 1, + [73319] = 2, + ACTIONS(1837), 1, aux_sym__whitespace_token1, - ACTIONS(1842), 36, + ACTIONS(1835), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137417,10 +137617,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73168] = 2, - ACTIONS(1848), 1, + [73361] = 2, + ACTIONS(2039), 1, aux_sym__whitespace_token1, - ACTIONS(1846), 36, + ACTIONS(2037), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137457,10 +137657,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73210] = 2, - ACTIONS(1836), 1, + [73403] = 2, + ACTIONS(6413), 1, aux_sym__whitespace_token1, - ACTIONS(1834), 36, + ACTIONS(5725), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137497,51 +137697,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73252] = 3, - ACTIONS(6424), 1, - sym__last_token_punctuation, - ACTIONS(6422), 2, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(6420), 34, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [73296] = 2, - ACTIONS(6426), 1, + [73445] = 2, + ACTIONS(6415), 1, aux_sym__whitespace_token1, - ACTIONS(5854), 36, + ACTIONS(5708), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137578,10 +137737,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73338] = 2, - ACTIONS(6428), 1, + [73487] = 2, + ACTIONS(1971), 1, aux_sym__whitespace_token1, - ACTIONS(5833), 36, + ACTIONS(1969), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137618,10 +137777,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73380] = 2, - ACTIONS(1852), 1, + [73529] = 2, + ACTIONS(6417), 1, aux_sym__whitespace_token1, - ACTIONS(1850), 36, + ACTIONS(6075), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137658,51 +137817,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73422] = 3, - ACTIONS(6430), 1, - sym__last_token_whitespace, - ACTIONS(2906), 2, - anon_sym_BSLASH, - aux_sym__whitespace_token1, - ACTIONS(2904), 34, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_TILDE, - sym_backslash_escape, - sym__whitespace_ge_2, - sym__word_no_digit, - sym__digits, - [73466] = 2, - ACTIONS(2066), 1, + [73571] = 2, + ACTIONS(1741), 1, aux_sym__whitespace_token1, - ACTIONS(2064), 36, + ACTIONS(1739), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137739,10 +137857,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73508] = 2, - ACTIONS(2016), 1, + [73613] = 2, + ACTIONS(3736), 1, aux_sym__whitespace_token1, - ACTIONS(2014), 36, + ACTIONS(3734), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137779,10 +137897,13 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73550] = 2, - ACTIONS(3717), 1, + [73655] = 3, + ACTIONS(6419), 1, + sym__last_token_whitespace, + ACTIONS(2885), 2, + anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(3715), 36, + ACTIONS(2883), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137800,13 +137921,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, - anon_sym_LT, anon_sym_EQ, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -137815,14 +137934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACE, anon_sym_TILDE, + sym_backslash_escape, sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - aux_sym__newline_token1, - [73592] = 2, - ACTIONS(1968), 1, + [73699] = 2, + ACTIONS(2177), 1, aux_sym__whitespace_token1, - ACTIONS(1966), 36, + ACTIONS(2175), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137859,10 +137978,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73634] = 2, - ACTIONS(6432), 1, + [73741] = 2, + ACTIONS(3636), 1, aux_sym__whitespace_token1, - ACTIONS(6067), 36, + ACTIONS(3634), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137899,10 +138018,10 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73676] = 2, - ACTIONS(396), 1, + [73783] = 2, + ACTIONS(383), 1, aux_sym__whitespace_token1, - ACTIONS(394), 36, + ACTIONS(381), 36, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137939,11 +138058,11 @@ static const uint16_t ts_small_parse_table[] = { sym__word_no_digit, sym__digits, aux_sym__newline_token1, - [73718] = 2, - ACTIONS(2989), 2, + [73825] = 2, + ACTIONS(6423), 2, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(2987), 34, + ACTIONS(6421), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -137978,11 +138097,11 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [73759] = 2, - ACTIONS(6436), 2, + [73866] = 2, + ACTIONS(3002), 2, anon_sym_BSLASH, aux_sym__whitespace_token1, - ACTIONS(6434), 34, + ACTIONS(3000), 34, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -138017,58 +138136,52 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace_ge_2, sym__word_no_digit, sym__digits, - [73800] = 6, - ACTIONS(4620), 1, + [73907] = 6, + ACTIONS(4637), 1, sym__whitespace_ge_2, - ACTIONS(4623), 1, + ACTIONS(4640), 1, aux_sym__whitespace_token1, - ACTIONS(4626), 1, + ACTIONS(4643), 1, aux_sym__newline_token1, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - ACTIONS(4616), 6, + ACTIONS(4633), 6, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT, - [73826] = 10, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4166), 1, - sym__whitespace_ge_2, - ACTIONS(4168), 1, + [73933] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + STATE(1545), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6132), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(622), 8, anon_sym_DQUOTE, - ACTIONS(6440), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, anon_sym_LPAREN, - ACTIONS(6444), 1, anon_sym_RPAREN, - STATE(1922), 1, - sym_link_title, - STATE(2097), 1, - sym__newline, - STATE(1740), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [73859] = 4, - ACTIONS(1143), 1, + anon_sym_EQ, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [73954] = 4, + ACTIONS(762), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1141), 8, + ACTIONS(760), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138077,318 +138190,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [73880] = 10, + [73975] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6446), 1, + ACTIONS(6431), 1, anon_sym_RPAREN, - STATE(1997), 1, + STATE(1947), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [73913] = 10, + [74008] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6448), 1, + ACTIONS(6433), 1, anon_sym_RPAREN, - STATE(1992), 1, + STATE(1966), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [73946] = 10, + [74041] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6450), 1, + ACTIONS(6435), 1, anon_sym_RPAREN, - STATE(1955), 1, + STATE(1968), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [73979] = 10, + [74074] = 3, + ACTIONS(3636), 1, + aux_sym__whitespace_token1, + STATE(1811), 1, + sym__newline, + ACTIONS(3634), 10, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [74093] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6437), 1, anon_sym_RPAREN, - STATE(1952), 1, + STATE(1989), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74012] = 10, + [74126] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6454), 1, + ACTIONS(6439), 1, anon_sym_RPAREN, - STATE(1941), 1, + STATE(1943), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74045] = 10, + [74159] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6456), 1, + ACTIONS(6441), 1, anon_sym_RPAREN, - STATE(1936), 1, + STATE(2000), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74078] = 3, - ACTIONS(3652), 1, - aux_sym__whitespace_token1, - STATE(1804), 1, - sym__newline, - ACTIONS(3650), 10, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [74097] = 10, + [74192] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6443), 1, anon_sym_RPAREN, - STATE(1926), 1, + STATE(1927), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74130] = 10, + [74225] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6460), 1, + ACTIONS(6445), 1, anon_sym_RPAREN, - STATE(1931), 1, + STATE(1930), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74163] = 10, + [74258] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6462), 1, + ACTIONS(6447), 1, anon_sym_RPAREN, - STATE(1928), 1, + STATE(1974), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74196] = 4, - ACTIONS(1143), 1, - aux_sym__whitespace_token1, - STATE(1754), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6464), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1141), 8, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT, - sym__whitespace_ge_2, + [74291] = 10, + ACTIONS(41), 1, aux_sym__newline_token1, - [74217] = 4, - ACTIONS(1108), 1, + ACTIONS(4167), 1, + sym__whitespace_ge_2, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - STATE(1508), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1106), 8, + ACTIONS(6425), 1, anon_sym_DQUOTE, + ACTIONS(6427), 1, anon_sym_SQUOTE, + ACTIONS(6429), 1, anon_sym_LPAREN, + ACTIONS(6449), 1, anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [74238] = 10, + STATE(1935), 1, + sym_link_title, + STATE(2097), 1, + sym__newline, + STATE(1742), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [74324] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6466), 1, + ACTIONS(6451), 1, anon_sym_RPAREN, - STATE(1937), 1, + STATE(1980), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74271] = 10, + [74357] = 10, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6468), 1, + ACTIONS(6453), 1, anon_sym_RPAREN, - STATE(1930), 1, + STATE(1937), 1, sym_link_title, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [74304] = 4, - ACTIONS(1423), 1, + [74390] = 4, + ACTIONS(1126), 1, aux_sym__whitespace_token1, - STATE(1758), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6470), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1421), 8, + ACTIONS(1124), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138397,15 +138499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74325] = 4, - ACTIONS(1084), 1, + [74411] = 4, + ACTIONS(1209), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1760), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6455), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1082), 8, + ACTIONS(1207), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138414,15 +138516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74346] = 4, - ACTIONS(1084), 1, + [74432] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1766), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6472), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1082), 8, + ACTIONS(1065), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138431,15 +138533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74367] = 4, - ACTIONS(1032), 1, + [74453] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, STATE(1768), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6474), 2, + ACTIONS(6457), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1030), 8, + ACTIONS(1065), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138448,15 +138550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74388] = 4, - ACTIONS(1020), 1, + [74474] = 4, + ACTIONS(1055), 1, aux_sym__whitespace_token1, STATE(1770), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6476), 2, + ACTIONS(6459), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1018), 8, + ACTIONS(1053), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138465,15 +138567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74409] = 4, - ACTIONS(1014), 1, + [74495] = 4, + ACTIONS(1049), 1, aux_sym__whitespace_token1, STATE(1772), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6478), 2, + ACTIONS(6461), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1012), 8, + ACTIONS(1047), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138482,15 +138584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74430] = 4, - ACTIONS(625), 1, + [74516] = 4, + ACTIONS(1043), 1, aux_sym__whitespace_token1, STATE(1774), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6480), 2, + ACTIONS(6463), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(623), 8, + ACTIONS(1041), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138499,15 +138601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74451] = 4, - ACTIONS(1006), 1, + [74537] = 4, + ACTIONS(1037), 1, aux_sym__whitespace_token1, STATE(1776), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6482), 2, + ACTIONS(6465), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1004), 8, + ACTIONS(1035), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138516,15 +138618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74472] = 4, - ACTIONS(998), 1, + [74558] = 4, + ACTIONS(1031), 1, aux_sym__whitespace_token1, STATE(1778), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6484), 2, + ACTIONS(6467), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(996), 8, + ACTIONS(1029), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138533,15 +138635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74493] = 4, - ACTIONS(822), 1, + [74579] = 4, + ACTIONS(1025), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1780), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6469), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 8, + ACTIONS(1023), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138550,15 +138652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74514] = 4, - ACTIONS(822), 1, + [74600] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1780), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6486), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 8, + ACTIONS(921), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138567,15 +138669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74535] = 4, - ACTIONS(790), 1, + [74621] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1782), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6471), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 8, + ACTIONS(921), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138584,15 +138686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74556] = 4, - ACTIONS(790), 1, + [74642] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - STATE(1781), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6488), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 8, + ACTIONS(907), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138601,15 +138703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74577] = 4, - ACTIONS(619), 1, + [74663] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1783), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6473), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 8, + ACTIONS(907), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138618,15 +138720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74598] = 4, - ACTIONS(619), 1, + [74684] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1782), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6490), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 8, + ACTIONS(867), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138635,15 +138737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74619] = 4, - ACTIONS(782), 1, + [74705] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1784), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6475), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 8, + ACTIONS(867), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138652,15 +138754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74640] = 4, - ACTIONS(782), 1, + [74726] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1783), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6492), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 8, + ACTIONS(861), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138669,15 +138771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74661] = 4, - ACTIONS(774), 1, + [74747] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1785), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6477), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 8, + ACTIONS(861), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138686,15 +138788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74682] = 4, - ACTIONS(774), 1, + [74768] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1784), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6494), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 8, + ACTIONS(855), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138703,15 +138805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74703] = 4, - ACTIONS(768), 1, + [74789] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1744), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6479), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 8, + ACTIONS(855), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138720,15 +138822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74724] = 4, - ACTIONS(768), 1, + [74810] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - STATE(1785), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6496), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 8, + ACTIONS(849), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138737,15 +138839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74745] = 4, - ACTIONS(758), 1, + [74831] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1787), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6481), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(756), 8, + ACTIONS(849), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138754,15 +138856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74766] = 4, - ACTIONS(758), 1, + [74852] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1786), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6498), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(756), 8, + ACTIONS(843), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138771,15 +138873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74787] = 4, - ACTIONS(669), 1, + [74873] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1788), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6483), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(667), 8, + ACTIONS(843), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138788,15 +138890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74808] = 4, - ACTIONS(665), 1, + [74894] = 4, + ACTIONS(778), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(663), 8, + ACTIONS(776), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138805,15 +138907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74829] = 4, - ACTIONS(673), 1, + [74915] = 4, + ACTIONS(774), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(671), 8, + ACTIONS(772), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138822,15 +138924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74850] = 4, - ACTIONS(706), 1, + [74936] = 4, + ACTIONS(770), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(704), 8, + ACTIONS(768), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138839,15 +138941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74871] = 4, - ACTIONS(710), 1, + [74957] = 4, + ACTIONS(766), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(708), 8, + ACTIONS(764), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138856,15 +138958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74892] = 4, - ACTIONS(726), 1, + [74978] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1758), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6485), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(724), 8, + ACTIONS(950), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138873,15 +138975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74913] = 4, - ACTIONS(730), 1, + [74999] = 4, + ACTIONS(758), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 8, + ACTIONS(756), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138890,15 +138992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74934] = 4, - ACTIONS(730), 1, + [75020] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1789), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6500), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 8, + ACTIONS(750), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138907,15 +139009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74955] = 4, - ACTIONS(1026), 1, + [75041] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1790), 1, + STATE(1791), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6502), 2, + ACTIONS(6487), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 8, + ACTIONS(750), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138924,15 +139026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74976] = 4, - ACTIONS(1026), 1, + [75062] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1743), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6489), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 8, + ACTIONS(695), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138941,15 +139043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [74997] = 4, - ACTIONS(1381), 1, + [75083] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1508), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6044), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1379), 8, + ACTIONS(695), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138958,15 +139060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [75018] = 4, - ACTIONS(1381), 1, + [75104] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1742), 1, + STATE(1545), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6504), 2, + ACTIONS(6132), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1379), 8, + ACTIONS(950), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -138975,44 +139077,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [75039] = 8, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6506), 1, - anon_sym_SLASH, - ACTIONS(6508), 1, - anon_sym_GT, - ACTIONS(6510), 1, - sym__whitespace_ge_2, - ACTIONS(6512), 1, - aux_sym__whitespace_token1, - STATE(2102), 1, - sym__newline, - STATE(1802), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1827), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [75067] = 2, - ACTIONS(1848), 1, + [75125] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - ACTIONS(1846), 10, + STATE(1792), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6491), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(622), 8, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_SLASH, anon_sym_EQ, anon_sym_GT, - sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75083] = 2, - ACTIONS(2016), 1, + [75146] = 2, + ACTIONS(2029), 1, aux_sym__whitespace_token1, - ACTIONS(2014), 10, + ACTIONS(2027), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139023,10 +139108,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75099] = 2, - ACTIONS(2062), 1, + [75162] = 2, + ACTIONS(3636), 1, aux_sym__whitespace_token1, - ACTIONS(2060), 10, + ACTIONS(3634), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139037,58 +139122,110 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75115] = 2, - ACTIONS(1852), 1, + [75178] = 7, + ACTIONS(6495), 1, + sym__whitespace_ge_2, + ACTIONS(6498), 1, aux_sym__whitespace_token1, - ACTIONS(1850), 10, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6501), 1, + aux_sym__newline_token1, + STATE(2122), 1, + sym__newline, + ACTIONS(6493), 2, anon_sym_SLASH, - anon_sym_EQ, anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, + STATE(1796), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1991), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [75204] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - [75131] = 2, - ACTIONS(396), 1, - aux_sym__whitespace_token1, - ACTIONS(394), 10, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6504), 1, anon_sym_SLASH, - anon_sym_EQ, + ACTIONS(6506), 1, anon_sym_GT, - sym__attribute_name, + ACTIONS(6508), 1, sym__whitespace_ge_2, + ACTIONS(6510), 1, + aux_sym__whitespace_token1, + STATE(2122), 1, + sym__newline, + STATE(1796), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1824), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [75232] = 9, + ACTIONS(41), 1, aux_sym__newline_token1, - [75147] = 8, + ACTIONS(6512), 1, + anon_sym_DQUOTE, + ACTIONS(6514), 1, + anon_sym_SQUOTE, + ACTIONS(6516), 1, + aux_sym__attribute_value_token1, + ACTIONS(6518), 1, + sym__whitespace_ge_2, + ACTIONS(6520), 1, + aux_sym__whitespace_token1, + STATE(2034), 1, + sym__attribute_value, + STATE(2110), 1, + sym__newline, + STATE(1802), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [75262] = 8, ACTIONS(41), 1, aux_sym__newline_token1, + ACTIONS(6508), 1, + sym__whitespace_ge_2, ACTIONS(6510), 1, + aux_sym__whitespace_token1, + ACTIONS(6522), 1, + anon_sym_SLASH, + ACTIONS(6524), 1, + anon_sym_GT, + STATE(2122), 1, + sym__newline, + STATE(1817), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1826), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [75290] = 8, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6514), 1, + ACTIONS(6526), 1, anon_sym_SLASH, - ACTIONS(6516), 1, + ACTIONS(6528), 1, anon_sym_GT, - STATE(2102), 1, + STATE(2122), 1, sym__newline, - STATE(1809), 2, + STATE(1804), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(1819), 3, + STATE(1823), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75175] = 2, - ACTIONS(1802), 1, + [75318] = 2, + ACTIONS(1741), 1, aux_sym__whitespace_token1, - ACTIONS(1800), 10, + ACTIONS(1739), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139099,30 +139236,31 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75191] = 8, + [75334] = 9, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, - sym__whitespace_ge_2, ACTIONS(6512), 1, - aux_sym__whitespace_token1, + anon_sym_DQUOTE, + ACTIONS(6514), 1, + anon_sym_SQUOTE, ACTIONS(6518), 1, - anon_sym_SLASH, + sym__whitespace_ge_2, ACTIONS(6520), 1, - anon_sym_GT, - STATE(2102), 1, + aux_sym__whitespace_token1, + ACTIONS(6530), 1, + aux_sym__attribute_value_token1, + STATE(2046), 1, + sym__attribute_value, + STATE(2110), 1, sym__newline, - STATE(1809), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1823), 3, + STATE(1819), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75219] = 2, - ACTIONS(1968), 1, + [75364] = 2, + ACTIONS(2173), 1, aux_sym__whitespace_token1, - ACTIONS(1966), 10, + ACTIONS(2171), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139133,30 +139271,30 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75235] = 8, + [75380] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6522), 1, + ACTIONS(6532), 1, anon_sym_SLASH, - ACTIONS(6524), 1, + ACTIONS(6534), 1, anon_sym_GT, - STATE(2102), 1, + STATE(2122), 1, sym__newline, - STATE(1809), 2, + STATE(1796), 2, sym__attribute, aux_sym__open_tag_repeat1, STATE(1825), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75263] = 2, - ACTIONS(2066), 1, + [75408] = 2, + ACTIONS(1837), 1, aux_sym__whitespace_token1, - ACTIONS(2064), 10, + ACTIONS(1835), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139167,10 +139305,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75279] = 2, - ACTIONS(1844), 1, + [75424] = 2, + ACTIONS(1971), 1, aux_sym__whitespace_token1, - ACTIONS(1842), 10, + ACTIONS(1969), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139181,10 +139319,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75295] = 2, - ACTIONS(3745), 1, + [75440] = 2, + ACTIONS(2039), 1, aux_sym__whitespace_token1, - ACTIONS(3743), 10, + ACTIONS(2037), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139195,10 +139333,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75311] = 2, - ACTIONS(1836), 1, + [75456] = 2, + ACTIONS(3721), 1, aux_sym__whitespace_token1, - ACTIONS(1834), 10, + ACTIONS(3719), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139209,10 +139347,52 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75327] = 2, - ACTIONS(2058), 1, + [75472] = 9, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6512), 1, + anon_sym_DQUOTE, + ACTIONS(6514), 1, + anon_sym_SQUOTE, + ACTIONS(6518), 1, + sym__whitespace_ge_2, + ACTIONS(6520), 1, + aux_sym__whitespace_token1, + ACTIONS(6536), 1, + aux_sym__attribute_value_token1, + STATE(2035), 1, + sym__attribute_value, + STATE(2110), 1, + sym__newline, + STATE(1810), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [75502] = 9, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(6512), 1, + anon_sym_DQUOTE, + ACTIONS(6514), 1, + anon_sym_SQUOTE, + ACTIONS(6516), 1, + aux_sym__attribute_value_token1, + ACTIONS(6518), 1, + sym__whitespace_ge_2, + ACTIONS(6520), 1, + aux_sym__whitespace_token1, + STATE(2034), 1, + sym__attribute_value, + STATE(2110), 1, + sym__newline, + STATE(1819), 3, + sym__soft_line_break, + sym__whitespace, + aux_sym_inline_link_repeat1, + [75532] = 2, + ACTIONS(2025), 1, aux_sym__whitespace_token1, - ACTIONS(2056), 10, + ACTIONS(2023), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139223,10 +139403,10 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75343] = 2, - ACTIONS(3717), 1, + [75548] = 2, + ACTIONS(2177), 1, aux_sym__whitespace_token1, - ACTIONS(3715), 10, + ACTIONS(2175), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139237,71 +139417,58 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75359] = 7, - ACTIONS(6528), 1, - sym__whitespace_ge_2, - ACTIONS(6531), 1, + [75564] = 2, + ACTIONS(383), 1, aux_sym__whitespace_token1, - ACTIONS(6534), 1, - aux_sym__newline_token1, - STATE(2102), 1, - sym__newline, - ACTIONS(6526), 2, + ACTIONS(381), 10, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SLASH, + anon_sym_EQ, anon_sym_GT, - STATE(1809), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1986), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [75385] = 9, - ACTIONS(41), 1, + sym__attribute_name, + sym__whitespace_ge_2, aux_sym__newline_token1, - ACTIONS(6537), 1, + [75580] = 2, + ACTIONS(2087), 1, + aux_sym__whitespace_token1, + ACTIONS(2085), 10, anon_sym_DQUOTE, - ACTIONS(6539), 1, anon_sym_SQUOTE, - ACTIONS(6541), 1, - aux_sym__attribute_value_token1, - ACTIONS(6543), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - ACTIONS(6545), 1, - aux_sym__whitespace_token1, - STATE(2035), 1, - sym__attribute_value, - STATE(2103), 1, - sym__newline, - STATE(1821), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [75415] = 9, + aux_sym__newline_token1, + [75596] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6537), 1, - anon_sym_DQUOTE, - ACTIONS(6539), 1, - anon_sym_SQUOTE, - ACTIONS(6543), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6545), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6547), 1, - aux_sym__attribute_value_token1, - STATE(2034), 1, - sym__attribute_value, - STATE(2103), 1, + ACTIONS(6538), 1, + anon_sym_SLASH, + ACTIONS(6540), 1, + anon_sym_GT, + STATE(2122), 1, sym__newline, - STATE(1814), 3, + STATE(1797), 2, + sym__attribute, + aux_sym__open_tag_repeat1, + STATE(1828), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75445] = 2, - ACTIONS(3652), 1, + [75624] = 2, + ACTIONS(3736), 1, aux_sym__whitespace_token1, - ACTIONS(3650), 10, + ACTIONS(3734), 10, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_LPAREN, @@ -139312,988 +139479,884 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75461] = 8, + [75640] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6549), 1, + ACTIONS(6542), 1, anon_sym_SLASH, - ACTIONS(6551), 1, + ACTIONS(6544), 1, anon_sym_GT, - STATE(2102), 1, + STATE(2122), 1, sym__newline, - STATE(1800), 2, + STATE(1796), 2, sym__attribute, aux_sym__open_tag_repeat1, - STATE(1826), 3, + STATE(1822), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75489] = 9, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6537), 1, - anon_sym_DQUOTE, - ACTIONS(6539), 1, - anon_sym_SQUOTE, - ACTIONS(6543), 1, - sym__whitespace_ge_2, - ACTIONS(6545), 1, + [75668] = 2, + ACTIONS(2081), 1, aux_sym__whitespace_token1, - ACTIONS(6553), 1, - aux_sym__attribute_value_token1, - STATE(2064), 1, - sym__attribute_value, - STATE(2103), 1, - sym__newline, - STATE(1821), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [75519] = 9, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(6537), 1, + ACTIONS(2079), 10, anon_sym_DQUOTE, - ACTIONS(6539), 1, anon_sym_SQUOTE, - ACTIONS(6543), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - ACTIONS(6545), 1, - aux_sym__whitespace_token1, - ACTIONS(6553), 1, - aux_sym__attribute_value_token1, - STATE(2064), 1, - sym__attribute_value, - STATE(2103), 1, - sym__newline, - STATE(1810), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [75549] = 8, - ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + [75684] = 6, + ACTIONS(4643), 1, + aux_sym__newline_token1, + ACTIONS(6546), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6549), 1, aux_sym__whitespace_token1, - ACTIONS(6555), 1, - anon_sym_SLASH, - ACTIONS(6557), 1, - anon_sym_GT, - STATE(2102), 1, + STATE(2110), 1, sym__newline, - STATE(1798), 2, - sym__attribute, - aux_sym__open_tag_repeat1, - STATE(1820), 3, + ACTIONS(4633), 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + STATE(1819), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75577] = 5, - ACTIONS(386), 1, + [75707] = 5, + ACTIONS(463), 1, aux_sym__whitespace_token1, - ACTIONS(6559), 1, + ACTIONS(6552), 1, sym__line_ending, STATE(1846), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6561), 2, + ACTIONS(6554), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(384), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(461), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [75598] = 5, - ACTIONS(386), 1, + [75728] = 5, + ACTIONS(463), 1, aux_sym__whitespace_token1, - ACTIONS(6563), 1, + ACTIONS(6556), 1, sym__line_ending, - STATE(1864), 1, + STATE(1836), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6565), 2, + ACTIONS(6558), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(384), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(461), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75619] = 8, + [75749] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6567), 1, + ACTIONS(6560), 1, anon_sym_SLASH, - ACTIONS(6569), 1, + ACTIONS(6562), 1, anon_sym_GT, - ACTIONS(6571), 1, + ACTIONS(6564), 1, sym__attribute_name, - STATE(2102), 1, + STATE(2122), 1, sym__newline, - STATE(1824), 3, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75646] = 8, + [75776] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6514), 1, + ACTIONS(6532), 1, anon_sym_SLASH, - ACTIONS(6516), 1, + ACTIONS(6534), 1, anon_sym_GT, - ACTIONS(6571), 1, + ACTIONS(6564), 1, sym__attribute_name, - STATE(2102), 1, - sym__newline, - STATE(1824), 3, - sym__soft_line_break, - sym__whitespace, - aux_sym_inline_link_repeat1, - [75673] = 6, - ACTIONS(4626), 1, - aux_sym__newline_token1, - ACTIONS(6573), 1, - sym__whitespace_ge_2, - ACTIONS(6576), 1, - aux_sym__whitespace_token1, - STATE(2103), 1, + STATE(2122), 1, sym__newline, - ACTIONS(4616), 3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - STATE(1821), 3, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75696] = 5, - ACTIONS(386), 1, - aux_sym__whitespace_token1, - ACTIONS(6579), 1, - sym__line_ending, - STATE(1894), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6581), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(384), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - sym__whitespace_ge_2, - [75717] = 8, + [75803] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6571), 1, + ACTIONS(6564), 1, sym__attribute_name, - ACTIONS(6583), 1, + ACTIONS(6566), 1, anon_sym_SLASH, - ACTIONS(6585), 1, + ACTIONS(6568), 1, anon_sym_GT, - STATE(2102), 1, + STATE(2122), 1, sym__newline, - STATE(1824), 3, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75744] = 6, - ACTIONS(4626), 1, + [75830] = 8, + ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6587), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6590), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - STATE(2102), 1, - sym__newline, - ACTIONS(4616), 3, + ACTIONS(6564), 1, + sym__attribute_name, + ACTIONS(6570), 1, anon_sym_SLASH, + ACTIONS(6572), 1, anon_sym_GT, - sym__attribute_name, - STATE(1824), 3, + STATE(2122), 1, + sym__newline, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75767] = 8, + [75857] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6571), 1, - sym__attribute_name, - ACTIONS(6593), 1, + ACTIONS(6542), 1, anon_sym_SLASH, - ACTIONS(6595), 1, + ACTIONS(6544), 1, anon_sym_GT, - STATE(2102), 1, + ACTIONS(6564), 1, + sym__attribute_name, + STATE(2122), 1, sym__newline, - STATE(1824), 3, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75794] = 8, - ACTIONS(41), 1, + [75884] = 6, + ACTIONS(4643), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6574), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6577), 1, aux_sym__whitespace_token1, - ACTIONS(6518), 1, + STATE(2122), 1, + sym__newline, + ACTIONS(4633), 3, anon_sym_SLASH, - ACTIONS(6520), 1, anon_sym_GT, - ACTIONS(6571), 1, sym__attribute_name, - STATE(2102), 1, - sym__newline, - STATE(1824), 3, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75821] = 8, + [75907] = 8, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, - sym__whitespace_ge_2, - ACTIONS(6512), 1, - aux_sym__whitespace_token1, - ACTIONS(6522), 1, + ACTIONS(6504), 1, anon_sym_SLASH, - ACTIONS(6524), 1, + ACTIONS(6506), 1, anon_sym_GT, - ACTIONS(6571), 1, + ACTIONS(6508), 1, + sym__whitespace_ge_2, + ACTIONS(6510), 1, + aux_sym__whitespace_token1, + ACTIONS(6564), 1, sym__attribute_name, - STATE(2102), 1, + STATE(2122), 1, sym__newline, - STATE(1824), 3, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [75848] = 4, - ACTIONS(768), 1, + [75934] = 5, + ACTIONS(463), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + ACTIONS(6580), 1, + sym__line_ending, + STATE(1864), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6582), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(461), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [75866] = 4, - ACTIONS(998), 1, + [75955] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1878), 1, + STATE(1874), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6599), 2, + ACTIONS(6584), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(996), 5, + ACTIONS(861), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75884] = 4, - ACTIONS(522), 1, + [75973] = 4, + ACTIONS(778), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6601), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 5, + ACTIONS(776), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [75902] = 4, - ACTIONS(822), 1, + [75991] = 4, + ACTIONS(6592), 1, aux_sym__whitespace_token1, - STATE(1836), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(820), 5, + STATE(1835), 1, + aux_sym__tag_name_repeat1, + ACTIONS(6588), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(6590), 4, anon_sym_SLASH, anon_sym_GT, - sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75920] = 4, - ACTIONS(822), 1, + [76009] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - STATE(1895), 1, + STATE(1833), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6604), 2, + ACTIONS(6594), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(473), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [75938] = 4, - ACTIONS(710), 1, + [76027] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(708), 5, + ACTIONS(1065), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75956] = 4, - ACTIONS(706), 1, + [76045] = 4, + ACTIONS(6603), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1899), 1, + aux_sym__tag_name_repeat1, + ACTIONS(6599), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(6601), 4, + anon_sym_SLASH, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [76063] = 4, + ACTIONS(484), 1, + aux_sym__whitespace_token1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(704), 5, + ACTIONS(482), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75974] = 4, - ACTIONS(790), 1, + [76081] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1848), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6605), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 5, + ACTIONS(1065), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [75992] = 4, - ACTIONS(522), 1, + [76099] = 4, + ACTIONS(1055), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1850), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6606), 2, + ACTIONS(6607), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(520), 5, + ACTIONS(1053), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76010] = 4, - ACTIONS(790), 1, + [76117] = 4, + ACTIONS(1049), 1, aux_sym__whitespace_token1, - STATE(1848), 1, + STATE(1852), 1, aux_sym__ignore_matching_tokens, ACTIONS(6609), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 5, + ACTIONS(1047), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76028] = 4, - ACTIONS(673), 1, + [76135] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1853), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6611), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(671), 5, + ACTIONS(482), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76046] = 4, - ACTIONS(619), 1, + [76153] = 4, + ACTIONS(1043), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1855), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6613), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 5, + ACTIONS(1041), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76064] = 4, - ACTIONS(619), 1, + [76171] = 4, + ACTIONS(1037), 1, aux_sym__whitespace_token1, - STATE(1838), 1, + STATE(1856), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6611), 2, + ACTIONS(6615), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 5, + ACTIONS(1035), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76082] = 4, - ACTIONS(1032), 1, + [76189] = 4, + ACTIONS(1031), 1, aux_sym__whitespace_token1, - STATE(1835), 1, + STATE(1859), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6613), 2, + ACTIONS(6617), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1030), 5, + ACTIONS(1029), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76100] = 4, - ACTIONS(1026), 1, + [76207] = 4, + ACTIONS(1025), 1, aux_sym__whitespace_token1, - STATE(1845), 1, + STATE(1861), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6615), 2, + ACTIONS(6619), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 5, + ACTIONS(1023), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76118] = 4, - ACTIONS(1026), 1, + [76225] = 4, + ACTIONS(494), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1833), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6621), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(492), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [76136] = 4, - ACTIONS(1423), 1, + [76243] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1858), 1, + STATE(1833), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6617), 2, + ACTIONS(6621), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1421), 5, + ACTIONS(482), 5, + sym__no_indented_chunk, anon_sym_DQUOTE, anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [76154] = 4, - ACTIONS(1381), 1, + [76261] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1845), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6623), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1379), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(482), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, sym__whitespace_ge_2, - aux_sym__newline_token1, - [76172] = 4, - ACTIONS(514), 1, + [76279] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 5, + ACTIONS(921), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76190] = 4, - ACTIONS(782), 1, + [76297] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1869), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6625), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 5, + ACTIONS(921), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76208] = 4, - ACTIONS(665), 1, + [76315] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(663), 5, + ACTIONS(907), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76226] = 4, - ACTIONS(782), 1, + [76333] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - STATE(1834), 1, + STATE(1871), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6619), 2, + ACTIONS(6627), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 5, + ACTIONS(907), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76244] = 4, - ACTIONS(774), 1, + [76351] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 5, + ACTIONS(867), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76262] = 4, - ACTIONS(1143), 1, + [76369] = 4, + ACTIONS(494), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1141), 5, + ACTIONS(492), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76280] = 4, - ACTIONS(774), 1, + [76387] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1833), 1, + STATE(1872), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6621), 2, + ACTIONS(6629), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 5, + ACTIONS(867), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76298] = 4, - ACTIONS(1108), 1, - aux_sym__whitespace_token1, - STATE(1830), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1106), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [76316] = 4, - ACTIONS(529), 1, + [76405] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 5, + ACTIONS(861), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76334] = 4, - ACTIONS(1143), 1, - aux_sym__whitespace_token1, - STATE(1853), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6625), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1141), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [76352] = 4, - ACTIONS(522), 1, - aux_sym__whitespace_token1, - STATE(1856), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6627), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(520), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - sym__whitespace_ge_2, - [76370] = 4, - ACTIONS(1143), 1, - aux_sym__whitespace_token1, - STATE(1830), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1141), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [76388] = 4, - ACTIONS(1084), 1, - aux_sym__whitespace_token1, - STATE(1830), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1082), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [76406] = 4, - ACTIONS(529), 1, - aux_sym__whitespace_token1, - STATE(1830), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(527), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [76424] = 4, - ACTIONS(1084), 1, - aux_sym__whitespace_token1, - STATE(1916), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6630), 2, - sym__block_continuation, - sym__last_token_whitespace, - ACTIONS(1082), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [76442] = 4, - ACTIONS(1381), 1, + [76423] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1857), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6632), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1379), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(855), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76460] = 4, - ACTIONS(768), 1, + [76441] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1873), 1, + STATE(1875), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6634), 2, + ACTIONS(6631), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 5, + ACTIONS(855), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76478] = 4, - ACTIONS(1381), 1, + [76459] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6633), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1379), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(473), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76496] = 4, - ACTIONS(514), 1, + [76477] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(849), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76514] = 4, - ACTIONS(514), 1, + [76495] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - STATE(1859), 1, + STATE(1876), 1, aux_sym__ignore_matching_tokens, ACTIONS(6636), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(849), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76532] = 4, - ACTIONS(1032), 1, + [76513] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1914), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6638), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1030), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(843), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76550] = 4, - ACTIONS(1020), 1, + [76531] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - STATE(1912), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6640), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1018), 5, + ACTIONS(907), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76568] = 4, - ACTIONS(1014), 1, + [76549] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1907), 1, + STATE(1865), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6642), 2, + ACTIONS(6638), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1012), 5, + ACTIONS(482), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76586] = 4, - ACTIONS(625), 1, + [76567] = 4, + ACTIONS(484), 1, aux_sym__whitespace_token1, - STATE(1905), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6644), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(623), 5, + ACTIONS(482), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76604] = 4, - ACTIONS(1006), 1, + [76585] = 4, + ACTIONS(494), 1, aux_sym__whitespace_token1, - STATE(1903), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6646), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1004), 5, + ACTIONS(492), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76622] = 4, - ACTIONS(1026), 1, + [76603] = 4, + ACTIONS(475), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6640), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 5, + ACTIONS(473), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76640] = 4, - ACTIONS(998), 1, + [76621] = 4, + ACTIONS(1126), 1, aux_sym__whitespace_token1, - STATE(1899), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6648), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(996), 5, + ACTIONS(1124), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76658] = 4, - ACTIONS(726), 1, + [76639] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1877), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6643), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(724), 5, + ACTIONS(843), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76676] = 4, - ACTIONS(625), 1, + [76657] = 4, + ACTIONS(778), 1, aux_sym__whitespace_token1, - STATE(1850), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6650), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(623), 5, + ACTIONS(776), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76694] = 4, - ACTIONS(6656), 1, + [76675] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1909), 1, - aux_sym__tag_name_repeat1, - ACTIONS(6652), 3, - anon_sym_DASH, - sym__word_no_digit, - sym__digits, - ACTIONS(6654), 4, + STATE(1867), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6645), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(950), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [76693] = 4, + ACTIONS(774), 1, + aux_sym__whitespace_token1, + STATE(1858), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6597), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(772), 5, anon_sym_SLASH, anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76712] = 4, - ACTIONS(1423), 1, + [76711] = 4, + ACTIONS(770), 1, aux_sym__whitespace_token1, - STATE(1908), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6658), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1421), 5, + ACTIONS(768), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76730] = 4, - ACTIONS(1026), 1, + [76729] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1863), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6660), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1024), 5, + ACTIONS(950), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76748] = 4, + [76747] = 4, + ACTIONS(766), 1, + aux_sym__whitespace_token1, + STATE(1858), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6597), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(764), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [76765] = 4, + ACTIONS(762), 1, + aux_sym__whitespace_token1, + STATE(1858), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6597), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(760), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [76783] = 4, ACTIONS(758), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, ACTIONS(6597), 2, sym__block_continuation, @@ -140304,4298 +140367,4354 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76766] = 4, - ACTIONS(730), 1, + [76801] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1871), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6662), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(750), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76784] = 4, - ACTIONS(514), 1, + [76819] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1896), 1, + STATE(1882), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6664), 2, + ACTIONS(6647), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, + ACTIONS(750), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, - [76802] = 4, - ACTIONS(6671), 1, + aux_sym__newline_token1, + [76837] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1881), 1, - aux_sym__tag_name_repeat1, - ACTIONS(6666), 3, - anon_sym_DASH, - sym__word_no_digit, - sym__digits, - ACTIONS(6669), 4, + STATE(1883), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6649), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(695), 5, anon_sym_SLASH, anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76820] = 4, - ACTIONS(730), 1, + [76855] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1873), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6651), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 5, + ACTIONS(622), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76838] = 4, - ACTIONS(726), 1, + [76873] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(724), 5, + ACTIONS(622), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76856] = 4, - ACTIONS(710), 1, + [76891] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(708), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, + ACTIONS(695), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76874] = 4, - ACTIONS(1020), 1, + [76909] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - STATE(1839), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6673), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1018), 5, + ACTIONS(622), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76892] = 4, - ACTIONS(1014), 1, + [76927] = 4, + ACTIONS(624), 1, aux_sym__whitespace_token1, - STATE(1847), 1, + STATE(1885), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6675), 2, + ACTIONS(6653), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1012), 5, + ACTIONS(622), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [76910] = 4, - ACTIONS(706), 1, + [76945] = 4, + ACTIONS(952), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6597), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(950), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [76963] = 4, + ACTIONS(952), 1, + aux_sym__whitespace_token1, + STATE(1912), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6655), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(950), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [76981] = 4, + ACTIONS(1209), 1, + aux_sym__whitespace_token1, + STATE(1834), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6657), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(704), 5, + ACTIONS(1207), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [76999] = 4, + ACTIONS(1209), 1, + aux_sym__whitespace_token1, + STATE(1908), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6659), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1207), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76928] = 4, - ACTIONS(673), 1, + [77017] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1904), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6661), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(671), 5, + ACTIONS(843), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76946] = 4, - ACTIONS(665), 1, + [77035] = 4, + ACTIONS(845), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(663), 5, + ACTIONS(843), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76964] = 4, - ACTIONS(730), 1, + [77053] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1910), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6663), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(849), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [76982] = 4, - ACTIONS(730), 1, + [77071] = 4, + ACTIONS(851), 1, aux_sym__whitespace_token1, - STATE(1843), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6677), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(728), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(849), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77000] = 4, - ACTIONS(669), 1, + [77089] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(667), 5, + ACTIONS(695), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77018] = 4, - ACTIONS(1381), 1, + [77107] = 4, + ACTIONS(697), 1, aux_sym__whitespace_token1, - STATE(1851), 1, + STATE(1881), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6679), 2, + ACTIONS(6665), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1379), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(695), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77036] = 4, - ACTIONS(514), 1, + [77125] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1856), 1, + STATE(1913), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6681), 2, + ACTIONS(6667), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 5, - sym__no_indented_chunk, + ACTIONS(855), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, - [77054] = 4, - ACTIONS(669), 1, + aux_sym__newline_token1, + [77143] = 4, + ACTIONS(857), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(667), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(855), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77072] = 4, - ACTIONS(529), 1, + [77161] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1856), 1, + STATE(1914), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6681), 2, + ACTIONS(6669), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(527), 5, - sym__no_indented_chunk, + ACTIONS(861), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, - [77090] = 4, - ACTIONS(1006), 1, + aux_sym__newline_token1, + [77179] = 4, + ACTIONS(863), 1, aux_sym__whitespace_token1, - STATE(1828), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6683), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1004), 5, + ACTIONS(861), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [77197] = 4, + ACTIONS(6676), 1, + aux_sym__whitespace_token1, + STATE(1899), 1, + aux_sym__tag_name_repeat1, + ACTIONS(6671), 3, + anon_sym_DASH, + sym__word_no_digit, + sym__digits, + ACTIONS(6674), 4, anon_sym_SLASH, anon_sym_GT, - sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [77108] = 4, - ACTIONS(758), 1, + [77215] = 4, + ACTIONS(1031), 1, aux_sym__whitespace_token1, - STATE(1882), 1, + STATE(1892), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6685), 2, + ACTIONS(6678), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(756), 5, + ACTIONS(1029), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77126] = 4, - ACTIONS(758), 1, + [77233] = 4, + ACTIONS(1037), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1896), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6680), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(756), 5, + ACTIONS(1035), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77144] = 4, - ACTIONS(514), 1, + [77251] = 4, + ACTIONS(1043), 1, aux_sym__whitespace_token1, - STATE(1854), 1, + STATE(1898), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6687), 2, + ACTIONS(6682), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(512), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1041), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77162] = 4, - ACTIONS(1143), 1, + [77269] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1918), 1, + STATE(1893), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6689), 2, + ACTIONS(6684), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1141), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(750), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77180] = 4, - ACTIONS(768), 1, + [77287] = 4, + ACTIONS(752), 1, aux_sym__whitespace_token1, - STATE(1883), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6691), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 5, + ACTIONS(750), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77198] = 4, - ACTIONS(768), 1, + [77305] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1917), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6686), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(766), 5, + ACTIONS(1065), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77216] = 4, - ACTIONS(774), 1, + [77323] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1884), 1, + STATE(1918), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6693), 2, + ACTIONS(6688), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 5, + ACTIONS(867), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77234] = 4, - ACTIONS(774), 1, + [77341] = 4, + ACTIONS(869), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(772), 5, + ACTIONS(867), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77252] = 4, - ACTIONS(782), 1, + [77359] = 4, + ACTIONS(1067), 1, aux_sym__whitespace_token1, - STATE(1887), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6695), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 5, + ACTIONS(1065), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77270] = 4, - ACTIONS(782), 1, + [77377] = 4, + ACTIONS(909), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1919), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6690), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(780), 5, + ACTIONS(907), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77288] = 4, - ACTIONS(1084), 1, + [77395] = 4, + ACTIONS(758), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1082), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(756), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77306] = 4, - ACTIONS(6701), 1, + [77413] = 4, + ACTIONS(1049), 1, aux_sym__whitespace_token1, - STATE(1881), 1, - aux_sym__tag_name_repeat1, - ACTIONS(6697), 3, - anon_sym_DASH, - sym__word_no_digit, - sym__digits, - ACTIONS(6699), 4, - anon_sym_SLASH, - anon_sym_GT, + STATE(1907), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6692), 2, + sym__block_continuation, + sym__last_token_whitespace, + ACTIONS(1047), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77324] = 4, - ACTIONS(1084), 1, + [77431] = 4, + ACTIONS(1126), 1, aux_sym__whitespace_token1, - STATE(1831), 1, + STATE(1858), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6703), 2, + ACTIONS(6597), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1082), 5, + ACTIONS(1124), 5, anon_sym_SLASH, anon_sym_GT, sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [77342] = 4, - ACTIONS(619), 1, + [77449] = 4, + ACTIONS(762), 1, aux_sym__whitespace_token1, - STATE(1888), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6705), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 5, + ACTIONS(760), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77360] = 4, - ACTIONS(619), 1, + [77467] = 4, + ACTIONS(766), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(617), 5, + ACTIONS(764), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77378] = 4, - ACTIONS(790), 1, + [77485] = 4, + ACTIONS(1055), 1, aux_sym__whitespace_token1, - STATE(1889), 1, + STATE(1862), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6707), 2, + ACTIONS(6694), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 5, + ACTIONS(1053), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77396] = 4, - ACTIONS(790), 1, + [77503] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1831), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6696), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(788), 5, + ACTIONS(921), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77414] = 4, - ACTIONS(822), 1, + [77521] = 4, + ACTIONS(923), 1, aux_sym__whitespace_token1, - STATE(1892), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6709), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 5, + ACTIONS(921), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77432] = 4, - ACTIONS(822), 1, + [77539] = 4, + ACTIONS(770), 1, aux_sym__whitespace_token1, - STATE(1830), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6623), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(820), 5, + ACTIONS(768), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77450] = 4, - ACTIONS(758), 1, + [77557] = 4, + ACTIONS(774), 1, aux_sym__whitespace_token1, - STATE(1890), 1, + STATE(1866), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6711), 2, + ACTIONS(6586), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(756), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(772), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77468] = 4, - ACTIONS(1108), 1, + [77575] = 4, + ACTIONS(1025), 1, aux_sym__whitespace_token1, - STATE(1836), 1, + STATE(1890), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6597), 2, + ACTIONS(6698), 2, sym__block_continuation, sym__last_token_whitespace, - ACTIONS(1106), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, + ACTIONS(1023), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [77486] = 6, + [77593] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6466), 1, + ACTIONS(6451), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1977), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77507] = 6, + [77614] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6713), 1, - anon_sym_GT, + ACTIONS(6700), 1, + anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77528] = 6, + [77635] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6715), 1, - anon_sym_EQ, + ACTIONS(6445), 1, + anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1989), 3, + STATE(1932), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77549] = 6, + [77656] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6448), 1, + ACTIONS(4247), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1995), 3, + STATE(1979), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77570] = 6, + [77677] = 4, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(6702), 1, + anon_sym_RPAREN, + ACTIONS(6704), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1957), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + [77694] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6446), 1, + ACTIONS(6706), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77591] = 6, + [77715] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6456), 1, + ACTIONS(6449), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1934), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77612] = 6, + [77736] = 8, + ACTIONS(1410), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, + aux_sym__whitespace_token1, + STATE(2047), 1, + sym__whitespace, + STATE(2135), 1, + sym_link_title, + [77761] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6468), 1, + ACTIONS(6449), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77633] = 6, + [77782] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6446), 1, + ACTIONS(6453), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1999), 3, + STATE(1936), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77654] = 6, + [77803] = 8, + ACTIONS(1424), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, + aux_sym__whitespace_token1, + STATE(2037), 1, + sym__whitespace, + STATE(2142), 1, + sym_link_title, + [77828] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6456), 1, + ACTIONS(6453), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1746), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77675] = 6, + [77849] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6466), 1, + ACTIONS(4213), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1935), 3, + STATE(1746), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77696] = 6, + [77870] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6717), 1, + ACTIONS(6712), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77717] = 6, + [77891] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6717), 1, + ACTIONS(6712), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1932), 3, + STATE(1939), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77738] = 6, + [77912] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6468), 1, + ACTIONS(6714), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1929), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77759] = 6, + [77933] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6719), 1, + ACTIONS(6714), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1940), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77780] = 6, + [77954] = 8, + ACTIONS(1294), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, + aux_sym__whitespace_token1, + STATE(2049), 1, + sym__whitespace, + STATE(2134), 1, + sym_link_title, + [77979] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6456), 1, + ACTIONS(6716), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1939), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77801] = 6, + [78000] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6721), 1, + ACTIONS(6718), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77822] = 6, + [78021] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6723), 1, + ACTIONS(6720), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77843] = 6, + [78042] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6452), 1, + ACTIONS(4213), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1951), 3, + STATE(1955), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77864] = 6, + [78063] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6723), 1, + ACTIONS(6706), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1934), 3, + STATE(1949), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77885] = 6, + [78084] = 8, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, + aux_sym__whitespace_token1, + ACTIONS(6722), 1, + sym__no_indented_chunk, + STATE(2055), 1, + sym__whitespace, + STATE(2130), 1, + sym_link_title, + [78109] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6444), 1, - anon_sym_RPAREN, + ACTIONS(6724), 1, + anon_sym_EQ, STATE(2097), 1, sym__newline, - STATE(1744), 3, + STATE(1998), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77906] = 6, + [78130] = 8, + ACTIONS(722), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, + aux_sym__whitespace_token1, + STATE(2067), 1, + sym__whitespace, + STATE(2225), 1, + sym_link_title, + [78155] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6452), 1, + ACTIONS(6720), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1948), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77927] = 4, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(6725), 1, - anon_sym_RPAREN, - ACTIONS(6727), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1988), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - [77944] = 6, + [78176] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6450), 1, + ACTIONS(6726), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1954), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77965] = 6, + [78197] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6454), 1, + ACTIONS(6728), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [77986] = 6, + [78218] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4276), 1, + ACTIONS(4217), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1966), 3, + STATE(1747), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78007] = 6, + [78239] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6450), 1, + ACTIONS(4217), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1960), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78028] = 6, + [78260] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6448), 1, - anon_sym_RPAREN, + ACTIONS(6730), 1, + anon_sym_GT, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1990), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78049] = 6, + [78281] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4276), 1, - anon_sym_RPAREN, + ACTIONS(6732), 1, + anon_sym_GT, STATE(2097), 1, sym__newline, - STATE(1741), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78070] = 6, + [78302] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4288), 1, - anon_sym_RPAREN, + ACTIONS(6734), 1, + anon_sym_GT, STATE(2097), 1, sym__newline, - STATE(1748), 3, + STATE(1953), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78091] = 6, + [78323] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6454), 1, + ACTIONS(6433), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1745), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78112] = 6, + [78344] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6454), 1, + ACTIONS(6433), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1944), 3, + STATE(1749), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78133] = 8, - ACTIONS(1437), 1, + [78365] = 4, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(6736), 1, + anon_sym_RPAREN, + ACTIONS(6738), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1986), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + [78382] = 8, + ACTIONS(1434), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - STATE(2058), 1, + STATE(2040), 1, sym__whitespace, - STATE(2210), 1, + STATE(2149), 1, sym_link_title, - [78158] = 6, + [78407] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6733), 1, + ACTIONS(6433), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1967), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78179] = 6, + [78428] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6733), 1, + ACTIONS(6435), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1964), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78200] = 6, + [78449] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4272), 1, + ACTIONS(6435), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1980), 3, + STATE(1751), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78221] = 6, + [78470] = 8, + ACTIONS(681), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, + aux_sym__whitespace_token1, + STATE(2051), 1, + sym__whitespace, + STATE(2226), 1, + sym_link_title, + [78495] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6735), 1, + ACTIONS(6451), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78242] = 6, + [78516] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6735), 1, + ACTIONS(6435), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1965), 3, + STATE(1969), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78263] = 6, + [78537] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4272), 1, + ACTIONS(6439), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1750), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78284] = 6, + [78558] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6462), 1, + ACTIONS(6437), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1919), 3, + STATE(1922), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78305] = 6, + [78579] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6462), 1, + ACTIONS(6437), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1755), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78326] = 6, + [78600] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6462), 1, + ACTIONS(6441), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(2001), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78347] = 6, + [78621] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6460), 1, + ACTIONS(6441), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1925), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78368] = 6, + [78642] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6460), 1, + ACTIONS(6740), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1756), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78389] = 6, + [78663] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6460), 1, + ACTIONS(6742), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78410] = 8, - ACTIONS(6438), 1, + [78684] = 8, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6737), 1, + ACTIONS(6744), 1, sym__no_indented_chunk, - STATE(2046), 1, + STATE(2058), 1, sym__whitespace, - STATE(2153), 1, + STATE(2229), 1, sym_link_title, - [78435] = 6, + [78709] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6739), 1, + ACTIONS(6445), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78456] = 6, + [78730] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6741), 1, + ACTIONS(6439), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1926), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78477] = 6, + [78751] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6444), 1, + ACTIONS(6443), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1929), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78498] = 6, + [78772] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6743), 1, + ACTIONS(6451), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1745), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78519] = 6, + [78793] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6444), 1, + ACTIONS(6431), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1945), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78540] = 6, - ACTIONS(41), 1, - aux_sym__newline_token1, - ACTIONS(4166), 1, + [78814] = 8, + ACTIONS(948), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6745), 1, - anon_sym_RPAREN, - STATE(2097), 1, - sym__newline, - STATE(1740), 3, - sym__soft_line_break, + STATE(2038), 1, sym__whitespace, - aux_sym_inline_link_repeat1, - [78561] = 6, + STATE(2227), 1, + sym_link_title, + [78839] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6458), 1, + ACTIONS(6447), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1923), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78582] = 6, + [78860] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4182), 1, + ACTIONS(6431), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1959), 3, + STATE(1941), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78603] = 8, - ACTIONS(1131), 1, + [78881] = 8, + ACTIONS(987), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6729), 1, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - STATE(2052), 1, + STATE(2048), 1, sym__whitespace, - STATE(2152), 1, + STATE(2228), 1, sym_link_title, - [78628] = 6, + [78906] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4182), 1, + ACTIONS(6443), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1752), 3, + STATE(1755), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78649] = 4, - ACTIONS(6747), 1, - anon_sym_LPAREN, - ACTIONS(6750), 1, - anon_sym_RPAREN, - ACTIONS(6752), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1974), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - [78666] = 6, + [78927] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6755), 1, - anon_sym_GT, + ACTIONS(6447), 1, + anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1750), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78687] = 6, + [78948] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6458), 1, + ACTIONS(6443), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1743), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78708] = 8, - ACTIONS(1373), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - STATE(2062), 1, - sym__whitespace, - STATE(2235), 1, - sym_link_title, - [78733] = 6, + [78969] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4242), 1, + ACTIONS(6447), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1962), 3, + STATE(1965), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78754] = 6, + [78990] = 4, + ACTIONS(6746), 1, + anon_sym_LPAREN, + ACTIONS(6749), 1, + anon_sym_RPAREN, + ACTIONS(6751), 3, + sym_backslash_escape, + sym__word_no_digit, + sym__digits, + STATE(1986), 3, + sym__link_destination_parenthesis, + sym__word, + aux_sym__link_destination_parenthesis_repeat1, + [79007] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4242), 1, + ACTIONS(6445), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1751), 3, + STATE(1757), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78775] = 6, + [79028] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6458), 1, - anon_sym_RPAREN, + ACTIONS(6754), 1, + anon_sym_GT, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1993), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78796] = 8, - ACTIONS(1169), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - STATE(2044), 1, - sym__whitespace, - STATE(2190), 1, - sym_link_title, - [78821] = 8, - ACTIONS(883), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - STATE(2060), 1, - sym__whitespace, - STATE(2214), 1, - sym_link_title, - [78846] = 6, + [79049] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6757), 1, - anon_sym_GT, + ACTIONS(6700), 1, + anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1991), 3, + STATE(1971), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78867] = 6, + [79070] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4288), 1, - anon_sym_RPAREN, + ACTIONS(6756), 1, + anon_sym_GT, STATE(2097), 1, sym__newline, - STATE(1924), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78888] = 8, - ACTIONS(1475), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - STATE(2053), 1, - sym__whitespace, - STATE(2216), 1, - sym_link_title, - [78913] = 6, + [79091] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(6510), 1, + ACTIONS(6508), 1, sym__whitespace_ge_2, - ACTIONS(6512), 1, + ACTIONS(6510), 1, aux_sym__whitespace_token1, - ACTIONS(6571), 1, + ACTIONS(6564), 1, sym__attribute_name, - STATE(2102), 1, + STATE(2122), 1, sym__newline, - STATE(1824), 3, + STATE(1827), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78934] = 8, - ACTIONS(1439), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - STATE(2061), 1, - sym__whitespace, - STATE(2125), 1, - sym_link_title, - [78959] = 4, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(6759), 1, - anon_sym_RPAREN, - ACTIONS(6761), 3, - sym_backslash_escape, - sym__word_no_digit, - sym__digits, - STATE(1974), 3, - sym__link_destination_parenthesis, - sym__word, - aux_sym__link_destination_parenthesis_repeat1, - [78976] = 6, + [79112] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6763), 1, - anon_sym_EQ, + ACTIONS(4247), 1, + anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1754), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [78997] = 8, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - ACTIONS(6765), 1, - sym__no_indented_chunk, - STATE(2048), 1, - sym__whitespace, - STATE(2228), 1, - sym_link_title, - [79022] = 6, + [79133] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6767), 1, + ACTIONS(6758), 1, anon_sym_GT, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79043] = 6, + [79154] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6769), 1, + ACTIONS(4195), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1967), 3, + STATE(1752), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79064] = 6, + [79175] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6771), 1, - anon_sym_GT, + ACTIONS(4195), 1, + anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1920), 3, + STATE(1984), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79085] = 6, + [79196] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6773), 1, - anon_sym_GT, + ACTIONS(4265), 1, + anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1975), 3, + STATE(1963), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79106] = 6, + [79217] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6769), 1, + ACTIONS(4265), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1756), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79127] = 8, - ACTIONS(1471), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6729), 1, + [79238] = 6, + ACTIONS(41), 1, + aux_sym__newline_token1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - STATE(2057), 1, + ACTIONS(6760), 1, + anon_sym_EQ, + STATE(2097), 1, + sym__newline, + STATE(1742), 3, + sym__soft_line_break, sym__whitespace, - STATE(2132), 1, - sym_link_title, - [79152] = 6, + aux_sym_inline_link_repeat1, + [79259] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4161), 1, + anon_sym_RPAREN, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6775), 1, - anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1969), 3, + STATE(1973), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79173] = 6, + [79280] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4286), 1, + ACTIONS(6762), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1942), 3, + STATE(1970), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79194] = 6, + [79301] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(6775), 1, + ACTIONS(6762), 1, anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1740), 3, + STATE(1742), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79215] = 6, + [79322] = 6, ACTIONS(41), 1, aux_sym__newline_token1, - ACTIONS(4166), 1, + ACTIONS(4161), 1, + anon_sym_RPAREN, + ACTIONS(4167), 1, sym__whitespace_ge_2, - ACTIONS(4168), 1, + ACTIONS(4169), 1, aux_sym__whitespace_token1, - ACTIONS(4286), 1, - anon_sym_RPAREN, STATE(2097), 1, sym__newline, - STATE(1747), 3, + STATE(1753), 3, sym__soft_line_break, sym__whitespace, aux_sym_inline_link_repeat1, - [79236] = 7, - ACTIONS(1471), 1, + [79343] = 7, + ACTIONS(681), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1987), 1, + STATE(1978), 1, sym__newline, - STATE(2132), 1, + STATE(2226), 1, sym_link_title, - [79258] = 7, - ACTIONS(1475), 1, + [79365] = 3, + ACTIONS(2885), 1, + aux_sym__whitespace_token1, + ACTIONS(6766), 1, + sym__last_token_whitespace, + ACTIONS(2883), 5, + anon_sym_SLASH, + anon_sym_GT, + sym__attribute_name, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79379] = 7, + ACTIONS(1410), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1990), 1, + STATE(1938), 1, sym__newline, - STATE(2216), 1, + STATE(2135), 1, sym_link_title, - [79280] = 7, - ACTIONS(1439), 1, + [79401] = 7, + ACTIONS(1444), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1977), 1, + STATE(1958), 1, sym__newline, - STATE(2125), 1, + STATE(2169), 1, sym_link_title, - [79302] = 3, - ACTIONS(2906), 1, - aux_sym__whitespace_token1, - ACTIONS(6779), 1, - sym__last_token_whitespace, - ACTIONS(2904), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [79316] = 7, - ACTIONS(694), 1, + [79423] = 7, + ACTIONS(1424), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1996), 1, + STATE(1928), 1, sym__newline, STATE(2142), 1, sym_link_title, - [79338] = 7, - ACTIONS(1169), 1, + [79445] = 7, + ACTIONS(1294), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1950), 1, + STATE(1944), 1, sym__newline, - STATE(2190), 1, + STATE(2134), 1, sym_link_title, - [79360] = 7, - ACTIONS(1373), 1, + [79467] = 7, + ACTIONS(987), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, STATE(1972), 1, sym__newline, - STATE(2235), 1, + STATE(2228), 1, sym_link_title, - [79382] = 3, - ACTIONS(2906), 1, - aux_sym__whitespace_token1, - ACTIONS(6781), 1, - sym__last_token_whitespace, - ACTIONS(2904), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [79396] = 7, - ACTIONS(1131), 1, + [79489] = 7, + ACTIONS(948), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1963), 1, + STATE(1981), 1, sym__newline, - STATE(2152), 1, + STATE(2227), 1, sym_link_title, - [79418] = 7, - ACTIONS(883), 1, + [79511] = 3, + ACTIONS(3636), 1, + aux_sym__whitespace_token1, + STATE(2020), 1, + sym__newline, + ACTIONS(3634), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79525] = 7, + ACTIONS(805), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1981), 1, + STATE(1946), 1, sym__newline, - STATE(2214), 1, + STATE(2224), 1, sym_link_title, - [79440] = 7, - ACTIONS(1437), 1, + [79547] = 7, + ACTIONS(1434), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1985), 1, + STATE(1931), 1, sym__newline, - STATE(2210), 1, + STATE(2149), 1, sym_link_title, - [79462] = 3, - ACTIONS(3652), 1, - aux_sym__whitespace_token1, - STATE(2030), 1, - sym__newline, - ACTIONS(3650), 5, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym__attribute_value_token1, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [79476] = 7, - ACTIONS(702), 1, + [79569] = 7, + ACTIONS(722), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6777), 1, + ACTIONS(6764), 1, aux_sym__newline_token1, - STATE(1982), 1, + STATE(1962), 1, sym__newline, - STATE(2221), 1, + STATE(2225), 1, sym_link_title, - [79498] = 2, - ACTIONS(1968), 1, + [79591] = 3, + ACTIONS(2885), 1, aux_sym__whitespace_token1, - ACTIONS(1966), 5, + ACTIONS(6768), 1, + sym__last_token_whitespace, + ACTIONS(2883), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79509] = 2, - ACTIONS(3717), 1, + [79605] = 2, + ACTIONS(1741), 1, aux_sym__whitespace_token1, - ACTIONS(3715), 5, + ACTIONS(1739), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79520] = 2, - ACTIONS(1802), 1, + [79616] = 2, + ACTIONS(2081), 1, aux_sym__whitespace_token1, - ACTIONS(1800), 5, + ACTIONS(2079), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79531] = 2, - ACTIONS(396), 1, + [79627] = 2, + ACTIONS(1971), 1, aux_sym__whitespace_token1, - ACTIONS(394), 5, + ACTIONS(1969), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79542] = 2, - ACTIONS(2058), 1, + [79638] = 2, + ACTIONS(2087), 1, aux_sym__whitespace_token1, - ACTIONS(2056), 5, + ACTIONS(2085), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79553] = 2, - ACTIONS(2989), 1, - aux_sym__whitespace_token1, - ACTIONS(2987), 5, - anon_sym_SLASH, - anon_sym_GT, - sym__attribute_name, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [79564] = 2, - ACTIONS(1852), 1, + [79649] = 2, + ACTIONS(2025), 1, aux_sym__whitespace_token1, - ACTIONS(1850), 5, + ACTIONS(2023), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79575] = 2, - ACTIONS(1848), 1, + [79660] = 2, + ACTIONS(2173), 1, aux_sym__whitespace_token1, - ACTIONS(1846), 5, + ACTIONS(2171), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79586] = 2, - ACTIONS(6783), 1, - sym__last_token_whitespace, - ACTIONS(2904), 5, - sym__no_indented_chunk, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - aux_sym__newline_token1, - [79597] = 2, - ACTIONS(2062), 1, + [79671] = 2, + ACTIONS(2029), 1, aux_sym__whitespace_token1, - ACTIONS(2060), 5, + ACTIONS(2027), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79608] = 2, - ACTIONS(3652), 1, + [79682] = 2, + ACTIONS(1837), 1, aux_sym__whitespace_token1, - ACTIONS(3650), 5, + ACTIONS(1835), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79619] = 2, - ACTIONS(2066), 1, + [79693] = 2, + ACTIONS(3636), 1, aux_sym__whitespace_token1, - ACTIONS(2064), 5, + ACTIONS(3634), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79630] = 4, - ACTIONS(6785), 1, + [79704] = 4, + ACTIONS(6770), 1, sym__line_ending, - STATE(2041), 1, + STATE(2062), 1, aux_sym__ignore_matching_tokens, - ACTIONS(384), 2, + ACTIONS(461), 2, sym__split_token, sym__soft_line_break_marker, - ACTIONS(6787), 2, + ACTIONS(6772), 2, sym__block_continuation, sym__last_token_whitespace, - [79645] = 2, - ACTIONS(2016), 1, + [79719] = 2, + ACTIONS(3721), 1, aux_sym__whitespace_token1, - ACTIONS(2014), 5, + ACTIONS(3719), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79656] = 2, - ACTIONS(3745), 1, + [79730] = 2, + ACTIONS(3002), 1, aux_sym__whitespace_token1, - ACTIONS(3743), 5, + ACTIONS(3000), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79667] = 2, - ACTIONS(2989), 1, + [79741] = 2, + ACTIONS(383), 1, aux_sym__whitespace_token1, - ACTIONS(2987), 5, + ACTIONS(381), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79678] = 2, - ACTIONS(1844), 1, + [79752] = 2, + ACTIONS(2039), 1, aux_sym__whitespace_token1, - ACTIONS(1842), 5, + ACTIONS(2037), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79689] = 2, - ACTIONS(1836), 1, + [79763] = 2, + ACTIONS(6774), 1, + sym__last_token_whitespace, + ACTIONS(2883), 5, + sym__no_indented_chunk, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + aux_sym__newline_token1, + [79774] = 2, + ACTIONS(3736), 1, aux_sym__whitespace_token1, - ACTIONS(1834), 5, + ACTIONS(3734), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym__attribute_value_token1, sym__whitespace_ge_2, aux_sym__newline_token1, - [79700] = 1, - ACTIONS(2987), 5, - sym__no_indented_chunk, + [79785] = 2, + ACTIONS(2177), 1, + aux_sym__whitespace_token1, + ACTIONS(2175), 5, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, + aux_sym__attribute_value_token1, + sym__whitespace_ge_2, aux_sym__newline_token1, - [79708] = 2, - ACTIONS(6791), 1, + [79796] = 2, + ACTIONS(3002), 1, aux_sym__whitespace_token1, - ACTIONS(6789), 4, + ACTIONS(3000), 5, anon_sym_SLASH, anon_sym_GT, + sym__attribute_name, sym__whitespace_ge_2, aux_sym__newline_token1, - [79718] = 2, - ACTIONS(6795), 1, + [79807] = 2, + ACTIONS(6778), 1, aux_sym__whitespace_token1, - ACTIONS(6793), 4, + ACTIONS(6776), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79728] = 2, - ACTIONS(6799), 1, + [79817] = 2, + ACTIONS(6782), 1, aux_sym__whitespace_token1, - ACTIONS(6797), 4, + ACTIONS(6780), 4, anon_sym_SLASH, anon_sym_GT, sym__whitespace_ge_2, aux_sym__newline_token1, - [79738] = 5, - ACTIONS(6729), 1, + [79827] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6801), 1, + ACTIONS(6784), 1, aux_sym__newline_token1, - STATE(253), 1, + STATE(273), 1, sym__newline, - STATE(2007), 1, + STATE(2013), 1, sym__whitespace, - [79754] = 3, - STATE(2054), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(512), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6803), 2, - sym__block_continuation, - sym__last_token_whitespace, - [79766] = 4, - ACTIONS(384), 1, - sym__close_block, - ACTIONS(6805), 1, + [79843] = 5, + ACTIONS(1410), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2135), 1, + sym_link_title, + [79859] = 5, + ACTIONS(987), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2228), 1, + sym_link_title, + [79875] = 4, + ACTIONS(461), 1, + sym__trigger_error, + ACTIONS(6786), 1, sym__line_ending, - STATE(2080), 1, + STATE(2079), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6807), 2, + ACTIONS(6788), 2, sym__block_continuation, sym__last_token_whitespace, - [79780] = 3, - STATE(2039), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(520), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6809), 2, - sym__block_continuation, - sym__last_token_whitespace, - [79792] = 5, - ACTIONS(6729), 1, + [79889] = 5, + ACTIONS(1424), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2142), 1, + sym_link_title, + [79905] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6812), 1, + ACTIONS(6784), 1, aux_sym__newline_token1, - STATE(125), 1, + STATE(252), 1, sym__newline, - STATE(2013), 1, + STATE(2005), 1, sym__whitespace, - [79808] = 3, - STATE(2039), 1, + [79921] = 4, + ACTIONS(461), 1, + sym__close_block, + ACTIONS(6790), 1, + sym__line_ending, + STATE(2078), 1, aux_sym__ignore_matching_tokens, - ACTIONS(512), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6814), 2, + ACTIONS(6792), 2, sym__block_continuation, sym__last_token_whitespace, - [79820] = 5, - ACTIONS(6729), 1, + [79935] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6812), 1, + ACTIONS(6784), 1, aux_sym__newline_token1, - STATE(313), 1, + STATE(242), 1, sym__newline, - STATE(2002), 1, + STATE(2008), 1, sym__whitespace, - [79836] = 5, - ACTIONS(6729), 1, + [79951] = 2, + ACTIONS(6796), 1, + aux_sym__whitespace_token1, + ACTIONS(6794), 4, + anon_sym_SLASH, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79961] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6801), 1, + ACTIONS(6784), 1, aux_sym__newline_token1, - STATE(311), 1, + STATE(295), 1, sym__newline, - STATE(2001), 1, + STATE(2006), 1, sym__whitespace, - [79852] = 5, - ACTIONS(1437), 1, + [79977] = 2, + ACTIONS(6800), 1, + aux_sym__whitespace_token1, + ACTIONS(6798), 4, + anon_sym_SLASH, + anon_sym_GT, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [79987] = 5, + ACTIONS(1294), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2210), 1, + STATE(2134), 1, sym_link_title, - [79868] = 5, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - ACTIONS(6812), 1, - aux_sym__newline_token1, - STATE(169), 1, - sym__newline, - STATE(2010), 1, - sym__whitespace, - [79884] = 5, - ACTIONS(6438), 1, + [80003] = 5, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6816), 1, + ACTIONS(6744), 1, sym__no_indented_chunk, - STATE(2155), 1, + STATE(2229), 1, sym_link_title, - [79900] = 5, - ACTIONS(6729), 1, - sym__whitespace_ge_2, - ACTIONS(6731), 1, - aux_sym__whitespace_token1, - ACTIONS(6801), 1, - aux_sym__newline_token1, - STATE(226), 1, - sym__newline, - STATE(2009), 1, - sym__whitespace, - [79916] = 5, - ACTIONS(6438), 1, + [80019] = 5, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6818), 1, + ACTIONS(6722), 1, sym__no_indented_chunk, - STATE(2238), 1, + STATE(2130), 1, sym_link_title, - [79932] = 5, - ACTIONS(6729), 1, + [80035] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6812), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(238), 1, + STATE(119), 1, sym__newline, - STATE(2006), 1, + STATE(2003), 1, sym__whitespace, - [79948] = 5, - ACTIONS(1471), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - STATE(2132), 1, - sym_link_title, - [79964] = 4, - ACTIONS(384), 1, - sym__trigger_error, - ACTIONS(6820), 1, - sym__line_ending, - STATE(2085), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6822), 2, - sym__block_continuation, - sym__last_token_whitespace, - [79978] = 5, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - ACTIONS(6737), 1, + [80051] = 5, + ACTIONS(948), 1, sym__no_indented_chunk, - STATE(2153), 1, - sym_link_title, - [79994] = 5, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - ACTIONS(6765), 1, - sym__no_indented_chunk, - STATE(2228), 1, + STATE(2227), 1, sym_link_title, - [80010] = 3, - STATE(2039), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(527), 2, - sym__split_token, - sym__soft_line_break_marker, - ACTIONS(6814), 2, - sym__block_continuation, - sym__last_token_whitespace, - [80022] = 5, - ACTIONS(6729), 1, + [80067] = 2, + ACTIONS(6806), 1, + aux_sym__whitespace_token1, + ACTIONS(6804), 4, + anon_sym_SLASH, + anon_sym_GT, sym__whitespace_ge_2, - ACTIONS(6731), 1, + aux_sym__newline_token1, + [80077] = 5, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6801), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(283), 1, + STATE(180), 1, sym__newline, - STATE(2003), 1, + STATE(2009), 1, sym__whitespace, - [80038] = 5, - ACTIONS(6729), 1, + [80093] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6801), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(122), 1, + STATE(174), 1, sym__newline, - STATE(2005), 1, + STATE(2010), 1, sym__whitespace, - [80054] = 5, - ACTIONS(1439), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, + [80109] = 5, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2125), 1, - sym_link_title, - [80070] = 5, - ACTIONS(1475), 1, + ACTIONS(6808), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - STATE(2216), 1, + STATE(2128), 1, sym_link_title, - [80086] = 5, - ACTIONS(883), 1, + [80125] = 5, + ACTIONS(6708), 1, + sym__whitespace_ge_2, + ACTIONS(6710), 1, + aux_sym__whitespace_token1, + ACTIONS(6802), 1, + aux_sym__newline_token1, + STATE(143), 1, + sym__newline, + STATE(2012), 1, + sym__whitespace, + [80141] = 5, + ACTIONS(722), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2214), 1, + STATE(2225), 1, sym_link_title, - [80102] = 5, - ACTIONS(1169), 1, - sym__no_indented_chunk, - ACTIONS(6438), 1, + [80157] = 5, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2190), 1, + ACTIONS(6810), 1, + sym__no_indented_chunk, + STATE(2230), 1, sym_link_title, - [80118] = 5, - ACTIONS(1373), 1, + [80173] = 3, + STATE(2066), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(482), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6812), 2, + sym__block_continuation, + sym__last_token_whitespace, + [80185] = 5, + ACTIONS(1434), 1, sym__no_indented_chunk, - ACTIONS(6438), 1, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2235), 1, + STATE(2149), 1, sym_link_title, - [80134] = 5, - ACTIONS(1131), 1, + [80201] = 1, + ACTIONS(3000), 5, sym__no_indented_chunk, - ACTIONS(6438), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, anon_sym_LPAREN, - STATE(2152), 1, - sym_link_title, - [80150] = 5, - ACTIONS(6729), 1, + aux_sym__newline_token1, + [80209] = 3, + STATE(2064), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(482), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6814), 2, + sym__block_continuation, + sym__last_token_whitespace, + [80221] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - ACTIONS(6731), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6812), 1, + ACTIONS(6802), 1, aux_sym__newline_token1, - STATE(282), 1, + STATE(126), 1, sym__newline, - STATE(2011), 1, + STATE(2014), 1, sym__whitespace, - [80166] = 2, - ACTIONS(6826), 1, - aux_sym__whitespace_token1, - ACTIONS(6824), 4, - anon_sym_SLASH, - anon_sym_GT, + [80237] = 3, + STATE(2064), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(473), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6816), 2, + sym__block_continuation, + sym__last_token_whitespace, + [80249] = 5, + ACTIONS(6708), 1, sym__whitespace_ge_2, - aux_sym__newline_token1, - [80176] = 2, - ACTIONS(6830), 1, + ACTIONS(6710), 1, aux_sym__whitespace_token1, - ACTIONS(6828), 4, - anon_sym_SLASH, - anon_sym_GT, - sym__whitespace_ge_2, + ACTIONS(6784), 1, aux_sym__newline_token1, - [80186] = 4, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - STATE(2125), 1, - sym_link_title, - [80199] = 4, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - STATE(2132), 1, - sym_link_title, - [80212] = 4, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - STATE(2190), 1, - sym_link_title, - [80225] = 4, - ACTIONS(6438), 1, + STATE(265), 1, + sym__newline, + STATE(2007), 1, + sym__whitespace, + [80265] = 3, + STATE(2064), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(492), 2, + sym__split_token, + sym__soft_line_break_marker, + ACTIONS(6814), 2, + sym__block_continuation, + sym__last_token_whitespace, + [80277] = 5, + ACTIONS(681), 1, + sym__no_indented_chunk, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2214), 1, + STATE(2226), 1, sym_link_title, - [80238] = 4, - ACTIONS(6438), 1, + [80293] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2235), 1, + STATE(2230), 1, sym_link_title, - [80251] = 4, - ACTIONS(6438), 1, + [80306] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2216), 1, + STATE(2128), 1, sym_link_title, - [80264] = 3, - ACTIONS(520), 1, - sym__trigger_error, - STATE(2072), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6832), 2, - sym__block_continuation, - sym__last_token_whitespace, - [80275] = 2, - ACTIONS(5139), 1, - aux_sym__whitespace_token1, - ACTIONS(5135), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [80284] = 2, - ACTIONS(5252), 1, - aux_sym__whitespace_token1, - ACTIONS(5250), 3, - anon_sym_RPAREN, - sym__whitespace_ge_2, - aux_sym__newline_token1, - [80293] = 4, - ACTIONS(6438), 1, + [80319] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2152), 1, + STATE(2135), 1, sym_link_title, - [80306] = 2, - ACTIONS(6837), 1, + [80332] = 2, + ACTIONS(5188), 1, aux_sym__whitespace_token1, - ACTIONS(6835), 3, + ACTIONS(5186), 3, anon_sym_RPAREN, sym__whitespace_ge_2, aux_sym__newline_token1, - [80315] = 3, - ACTIONS(512), 1, - sym__close_block, - STATE(2083), 1, + [80341] = 3, + ACTIONS(482), 1, + sym__trigger_error, + STATE(2080), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6839), 2, + ACTIONS(6819), 2, sym__block_continuation, sym__last_token_whitespace, - [80326] = 3, - ACTIONS(527), 1, + [80352] = 3, + ACTIONS(473), 1, sym__trigger_error, - STATE(2072), 1, + STATE(2073), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6841), 2, + ACTIONS(6821), 2, sym__block_continuation, sym__last_token_whitespace, - [80337] = 4, - ACTIONS(6438), 1, + [80363] = 2, + ACTIONS(5024), 1, + aux_sym__whitespace_token1, + ACTIONS(5020), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [80372] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2153), 1, + STATE(2226), 1, sym_link_title, - [80350] = 3, - ACTIONS(512), 1, - sym__close_block, - STATE(2087), 1, - aux_sym__ignore_matching_tokens, - ACTIONS(6843), 2, - sym__block_continuation, - sym__last_token_whitespace, - [80361] = 4, - ACTIONS(6438), 1, + [80385] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, STATE(2228), 1, sym_link_title, - [80374] = 4, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - STATE(2210), 1, - sym_link_title, - [80387] = 3, - ACTIONS(527), 1, + [80398] = 3, + ACTIONS(482), 1, sym__close_block, - STATE(2087), 1, + STATE(2092), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6843), 2, + ACTIONS(6824), 2, sym__block_continuation, sym__last_token_whitespace, - [80398] = 4, - ACTIONS(6438), 1, - anon_sym_DQUOTE, - ACTIONS(6440), 1, - anon_sym_SQUOTE, - ACTIONS(6442), 1, - anon_sym_LPAREN, - STATE(2242), 1, - sym_link_title, - [80411] = 3, - ACTIONS(512), 1, - sym__trigger_error, - STATE(2072), 1, + [80409] = 3, + ACTIONS(482), 1, + sym__close_block, + STATE(2091), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6841), 2, + ACTIONS(6826), 2, sym__block_continuation, sym__last_token_whitespace, - [80422] = 3, - ACTIONS(512), 1, + [80420] = 3, + ACTIONS(482), 1, sym__trigger_error, - STATE(2078), 1, + STATE(2073), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6845), 2, + ACTIONS(6828), 2, sym__block_continuation, sym__last_token_whitespace, - [80433] = 3, - ACTIONS(520), 1, - sym__close_block, - STATE(2087), 1, + [80431] = 3, + ACTIONS(492), 1, + sym__trigger_error, + STATE(2073), 1, aux_sym__ignore_matching_tokens, - ACTIONS(6847), 2, + ACTIONS(6828), 2, sym__block_continuation, sym__last_token_whitespace, - [80444] = 4, - ACTIONS(6438), 1, + [80442] = 2, + ACTIONS(6832), 1, + aux_sym__whitespace_token1, + ACTIONS(6830), 3, + anon_sym_RPAREN, + sym__whitespace_ge_2, + aux_sym__newline_token1, + [80451] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2155), 1, + STATE(2231), 1, sym_link_title, - [80457] = 4, - ACTIONS(6438), 1, + [80464] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2238), 1, + STATE(2229), 1, sym_link_title, - [80470] = 2, - ACTIONS(6852), 1, + [80477] = 2, + ACTIONS(6836), 1, aux_sym__whitespace_token1, - ACTIONS(6850), 3, + ACTIONS(6834), 3, anon_sym_RPAREN, sym__whitespace_ge_2, aux_sym__newline_token1, - [80479] = 4, - ACTIONS(6438), 1, + [80486] = 4, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2134), 1, + sym_link_title, + [80499] = 4, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2142), 1, + sym_link_title, + [80512] = 4, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2225), 1, + sym_link_title, + [80525] = 4, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2130), 1, + sym_link_title, + [80538] = 4, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2244), 1, + sym_link_title, + [80551] = 4, + ACTIONS(6425), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + anon_sym_LPAREN, + STATE(2227), 1, + sym_link_title, + [80564] = 3, + ACTIONS(473), 1, + sym__close_block, + STATE(2091), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6838), 2, + sym__block_continuation, + sym__last_token_whitespace, + [80575] = 3, + ACTIONS(492), 1, + sym__close_block, + STATE(2091), 1, + aux_sym__ignore_matching_tokens, + ACTIONS(6826), 2, + sym__block_continuation, + sym__last_token_whitespace, + [80586] = 4, + ACTIONS(6425), 1, anon_sym_DQUOTE, - ACTIONS(6440), 1, + ACTIONS(6427), 1, anon_sym_SQUOTE, - ACTIONS(6442), 1, + ACTIONS(6429), 1, anon_sym_LPAREN, - STATE(2156), 1, + STATE(2149), 1, sym_link_title, - [80492] = 3, - ACTIONS(6854), 1, + [80599] = 3, + ACTIONS(6841), 1, + sym__split_token, + ACTIONS(6843), 1, + sym__soft_line_break_marker, + STATE(2103), 1, + aux_sym__soft_line_break_repeat1, + [80609] = 3, + ACTIONS(6845), 1, + sym__split_token, + ACTIONS(6847), 1, + sym__soft_line_break_marker, + STATE(2105), 1, + aux_sym__soft_line_break_repeat1, + [80619] = 3, + ACTIONS(6849), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, + ACTIONS(6851), 1, anon_sym_LBRACK, - STATE(730), 1, + STATE(729), 1, sym_link_label, - [80502] = 3, - ACTIONS(6858), 1, + [80629] = 3, + ACTIONS(6853), 1, sym__split_token, - ACTIONS(6860), 1, + ACTIONS(6855), 1, sym__soft_line_break_marker, - STATE(2119), 1, + STATE(2124), 1, aux_sym__soft_line_break_repeat1, - [80512] = 3, - ACTIONS(6862), 1, + [80639] = 3, + ACTIONS(6857), 1, anon_sym_LPAREN, - ACTIONS(6864), 1, + ACTIONS(6859), 1, anon_sym_LBRACK, - STATE(767), 1, + STATE(826), 1, sym_link_label, - [80522] = 3, - ACTIONS(6858), 1, + [80649] = 3, + ACTIONS(6845), 1, sym__split_token, - ACTIONS(6866), 1, + ACTIONS(6861), 1, sym__soft_line_break_marker, - STATE(2119), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80532] = 3, - ACTIONS(6858), 1, + [80659] = 3, + ACTIONS(6863), 1, sym__split_token, - ACTIONS(6868), 1, + ACTIONS(6865), 1, sym__soft_line_break_marker, - STATE(2119), 1, + STATE(2099), 1, aux_sym__soft_line_break_repeat1, - [80542] = 3, - ACTIONS(6870), 1, + [80669] = 3, + ACTIONS(6867), 1, + anon_sym_LPAREN, + ACTIONS(6869), 1, + anon_sym_LBRACK, + STATE(730), 1, + sym_link_label, + [80679] = 3, + ACTIONS(6871), 1, sym__split_token, - ACTIONS(6872), 1, + ACTIONS(6873), 1, sym__soft_line_break_marker, - STATE(2101), 1, + STATE(2118), 1, aux_sym__soft_line_break_repeat1, - [80552] = 3, - ACTIONS(6858), 1, + [80689] = 3, + ACTIONS(6845), 1, sym__split_token, - ACTIONS(6874), 1, + ACTIONS(6875), 1, sym__soft_line_break_marker, - STATE(2119), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80562] = 3, - ACTIONS(6876), 1, - anon_sym_LPAREN, - ACTIONS(6878), 1, - anon_sym_LBRACK, - STATE(768), 1, - sym_link_label, - [80572] = 3, - ACTIONS(6880), 1, + [80699] = 3, + ACTIONS(6877), 1, sym__split_token, - ACTIONS(6882), 1, + ACTIONS(6879), 1, sym__soft_line_break_marker, - STATE(2116), 1, + STATE(2123), 1, + aux_sym__soft_line_break_repeat1, + [80709] = 2, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80582] = 3, - ACTIONS(6858), 1, + ACTIONS(6881), 2, sym__split_token, + sym__soft_line_break_marker, + [80717] = 3, ACTIONS(6884), 1, + sym__split_token, + ACTIONS(6886), 1, sym__soft_line_break_marker, - STATE(2119), 1, + STATE(2095), 1, aux_sym__soft_line_break_repeat1, - [80592] = 3, - ACTIONS(6886), 1, - sym__split_token, + [80727] = 3, ACTIONS(6888), 1, + sym__split_token, + ACTIONS(6890), 1, sym__soft_line_break_marker, - STATE(2111), 1, + STATE(2113), 1, aux_sym__soft_line_break_repeat1, - [80602] = 3, - ACTIONS(6890), 1, + [80737] = 3, + ACTIONS(545), 1, + sym__soft_line_break_marker, + ACTIONS(4371), 1, sym__split_token, + STATE(2115), 1, + aux_sym__soft_line_break_repeat1, + [80747] = 3, ACTIONS(6892), 1, + sym__split_token, + ACTIONS(6894), 1, sym__soft_line_break_marker, - STATE(2120), 1, + STATE(2114), 1, aux_sym__soft_line_break_repeat1, - [80612] = 3, - ACTIONS(6894), 1, - sym__split_token, + [80757] = 3, ACTIONS(6896), 1, + sym__split_token, + ACTIONS(6898), 1, sym__soft_line_break_marker, - STATE(2093), 1, + STATE(2121), 1, aux_sym__soft_line_break_repeat1, - [80622] = 3, - ACTIONS(6898), 1, + [80767] = 3, + ACTIONS(6845), 1, sym__split_token, ACTIONS(6900), 1, sym__soft_line_break_marker, - STATE(2112), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80632] = 3, + [80777] = 3, ACTIONS(6902), 1, anon_sym_LPAREN, ACTIONS(6904), 1, anon_sym_LBRACK, - STATE(731), 1, + STATE(828), 1, sym_link_label, - [80642] = 3, + [80787] = 3, + ACTIONS(6845), 1, + sym__split_token, ACTIONS(6906), 1, + sym__soft_line_break_marker, + STATE(2105), 1, + aux_sym__soft_line_break_repeat1, + [80797] = 3, + ACTIONS(6845), 1, sym__split_token, ACTIONS(6908), 1, sym__soft_line_break_marker, - STATE(2110), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80652] = 3, - ACTIONS(6910), 1, + [80807] = 3, + ACTIONS(6845), 1, sym__split_token, - ACTIONS(6912), 1, + ACTIONS(6910), 1, sym__soft_line_break_marker, - STATE(2118), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80662] = 3, - ACTIONS(6858), 1, + [80817] = 3, + ACTIONS(6912), 1, sym__split_token, ACTIONS(6914), 1, sym__soft_line_break_marker, STATE(2119), 1, aux_sym__soft_line_break_repeat1, - [80672] = 3, - ACTIONS(6858), 1, - sym__split_token, + [80827] = 3, ACTIONS(6916), 1, - sym__soft_line_break_marker, - STATE(2119), 1, - aux_sym__soft_line_break_repeat1, - [80682] = 3, - ACTIONS(6858), 1, - sym__split_token, + anon_sym_LPAREN, ACTIONS(6918), 1, - sym__soft_line_break_marker, - STATE(2119), 1, - aux_sym__soft_line_break_repeat1, - [80692] = 3, - ACTIONS(6858), 1, + anon_sym_LBRACK, + STATE(681), 1, + sym_link_label, + [80837] = 3, + ACTIONS(6845), 1, sym__split_token, ACTIONS(6920), 1, sym__soft_line_break_marker, - STATE(2119), 1, - aux_sym__soft_line_break_repeat1, - [80702] = 3, - ACTIONS(6922), 1, - sym__split_token, - ACTIONS(6924), 1, - sym__soft_line_break_marker, - STATE(2109), 1, - aux_sym__soft_line_break_repeat1, - [80712] = 3, - ACTIONS(550), 1, - sym__soft_line_break_marker, - ACTIONS(4476), 1, - sym__split_token, - STATE(2095), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80722] = 3, - ACTIONS(6926), 1, - anon_sym_LPAREN, - ACTIONS(6928), 1, - anon_sym_LBRACK, - STATE(901), 1, - sym_link_label, - [80732] = 3, - ACTIONS(6858), 1, + [80847] = 3, + ACTIONS(6845), 1, sym__split_token, - ACTIONS(6930), 1, + ACTIONS(6922), 1, sym__soft_line_break_marker, - STATE(2119), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80742] = 3, - ACTIONS(6932), 1, + [80857] = 3, + ACTIONS(6924), 1, anon_sym_LPAREN, - ACTIONS(6934), 1, + ACTIONS(6926), 1, anon_sym_LBRACK, - STATE(906), 1, + STATE(771), 1, sym_link_label, - [80752] = 3, - ACTIONS(6858), 1, + [80867] = 3, + ACTIONS(6845), 1, sym__split_token, - ACTIONS(6936), 1, + ACTIONS(6928), 1, sym__soft_line_break_marker, - STATE(2119), 1, - aux_sym__soft_line_break_repeat1, - [80762] = 2, - STATE(2119), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - ACTIONS(6938), 2, - sym__split_token, - sym__soft_line_break_marker, - [80770] = 3, - ACTIONS(6858), 1, + [80877] = 3, + ACTIONS(6930), 1, sym__split_token, - ACTIONS(6941), 1, + ACTIONS(6932), 1, sym__soft_line_break_marker, - STATE(2119), 1, + STATE(2111), 1, aux_sym__soft_line_break_repeat1, - [80780] = 3, - ACTIONS(6943), 1, + [80887] = 3, + ACTIONS(6845), 1, sym__split_token, - ACTIONS(6945), 1, + ACTIONS(6934), 1, sym__soft_line_break_marker, - STATE(2098), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80790] = 3, - ACTIONS(6947), 1, + [80897] = 3, + ACTIONS(6845), 1, sym__split_token, - ACTIONS(6949), 1, + ACTIONS(6936), 1, sym__soft_line_break_marker, - STATE(2096), 1, + STATE(2105), 1, aux_sym__soft_line_break_repeat1, - [80800] = 2, - ACTIONS(4484), 1, - aux_sym__newline_token1, - STATE(1034), 1, - sym__newline, - [80807] = 2, - ACTIONS(4484), 1, - aux_sym__newline_token1, - STATE(1051), 1, - sym__newline, - [80814] = 2, - ACTIONS(1722), 1, - aux_sym__newline_token1, - STATE(417), 1, - sym__newline, - [80821] = 2, - ACTIONS(1728), 1, + [80907] = 2, + ACTIONS(6938), 1, + sym__block_close, + ACTIONS(6940), 1, + sym__fenced_code_block_end_tilde, + [80914] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(409), 1, + STATE(1039), 1, sym__newline, - [80828] = 2, - ACTIONS(5030), 1, + [80921] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(2313), 1, + STATE(400), 1, sym__newline, - [80835] = 2, - ACTIONS(5030), 1, + [80928] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(2314), 1, + STATE(406), 1, sym__newline, - [80842] = 2, - ACTIONS(5030), 1, + [80935] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2318), 1, + STATE(2317), 1, sym__newline, - [80849] = 2, - ACTIONS(4484), 1, + [80942] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(1039), 1, + STATE(407), 1, sym__newline, - [80856] = 2, - ACTIONS(4550), 1, - sym__block_close, - ACTIONS(4552), 1, - sym__fenced_code_block_end_backtick, - [80863] = 2, - ACTIONS(1722), 1, + [80949] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(401), 1, + STATE(2321), 1, sym__newline, - [80870] = 2, - ACTIONS(4550), 1, - sym__block_close, - ACTIONS(4552), 1, - sym__fenced_code_block_end_tilde, - [80877] = 2, - ACTIONS(4486), 1, + [80956] = 2, + ACTIONS(1713), 1, aux_sym__newline_token1, - STATE(1042), 1, + STATE(1642), 1, sym__newline, - [80884] = 2, - ACTIONS(5030), 1, + [80963] = 2, + ACTIONS(1717), 1, aux_sym__newline_token1, - STATE(2370), 1, + STATE(1801), 1, sym__newline, - [80891] = 2, - ACTIONS(5030), 1, + [80970] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(2373), 1, + STATE(408), 1, sym__newline, - [80898] = 2, - ACTIONS(6951), 1, - sym__block_close, - ACTIONS(6953), 1, - sym__fenced_code_block_end_backtick, - [80905] = 2, - ACTIONS(6951), 1, - sym__block_close, - ACTIONS(6953), 1, - sym__fenced_code_block_end_tilde, - [80912] = 2, - ACTIONS(6955), 1, - sym__block_close, - ACTIONS(6957), 1, - sym__fenced_code_block_end_tilde, - [80919] = 2, - ACTIONS(5030), 1, + [80977] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(2377), 1, + STATE(410), 1, sym__newline, - [80926] = 2, - ACTIONS(4484), 1, + [80984] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1066), 1, + STATE(2332), 1, sym__newline, - [80933] = 2, - ACTIONS(1722), 1, + [80991] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(371), 1, + STATE(1049), 1, sym__newline, - [80940] = 2, - ACTIONS(4486), 1, + [80998] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(1033), 1, + STATE(1071), 1, sym__newline, - [80947] = 2, - ACTIONS(5030), 1, + [81005] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2420), 1, + STATE(2380), 1, sym__newline, - [80954] = 2, - ACTIONS(5030), 1, + [81012] = 2, + ACTIONS(4547), 1, + sym__block_close, + ACTIONS(4549), 1, + sym__fenced_code_block_end_backtick, + [81019] = 2, + ACTIONS(4547), 1, + sym__block_close, + ACTIONS(4549), 1, + sym__fenced_code_block_end_tilde, + [81026] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(2311), 1, + STATE(412), 1, sym__newline, - [80961] = 2, - ACTIONS(6955), 1, + [81033] = 2, + ACTIONS(6942), 1, sym__block_close, - ACTIONS(6957), 1, + ACTIONS(6944), 1, sym__fenced_code_block_end_backtick, - [80968] = 2, - ACTIONS(1754), 1, + [81040] = 2, + ACTIONS(6942), 1, + sym__block_close, + ACTIONS(6944), 1, + sym__fenced_code_block_end_tilde, + [81047] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1804), 1, + STATE(2385), 1, sym__newline, - [80975] = 2, - ACTIONS(6959), 1, + [81054] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2304), 1, + STATE(2386), 1, sym__newline, - [80982] = 2, - ACTIONS(5030), 1, + [81061] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(2421), 1, + STATE(1041), 1, sym__newline, - [80989] = 2, - ACTIONS(5030), 1, + [81068] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(2423), 1, + STATE(1036), 1, sym__newline, - [80996] = 2, - ACTIONS(4484), 1, + [81075] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(1043), 1, + STATE(416), 1, sym__newline, - [81003] = 2, - ACTIONS(1722), 1, + [81082] = 2, + ACTIONS(1705), 1, aux_sym__newline_token1, - STATE(413), 1, + STATE(1811), 1, sym__newline, - [81010] = 2, - ACTIONS(1722), 1, + [81089] = 2, + ACTIONS(6946), 1, aux_sym__newline_token1, - STATE(404), 1, + STATE(2335), 1, sym__newline, - [81017] = 2, - ACTIONS(4486), 1, + [81096] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1041), 1, + STATE(2423), 1, sym__newline, - [81024] = 2, - ACTIONS(1722), 1, + [81103] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(395), 1, + STATE(2425), 1, sym__newline, - [81031] = 2, - ACTIONS(1722), 1, + [81110] = 2, + ACTIONS(6938), 1, + sym__block_close, + ACTIONS(6940), 1, + sym__fenced_code_block_end_backtick, + [81117] = 2, + ACTIONS(4589), 1, + sym__block_close, + ACTIONS(4591), 1, + sym__fenced_code_block_end_tilde, + [81124] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(386), 1, + STATE(2429), 1, sym__newline, - [81038] = 2, - ACTIONS(5030), 1, + [81131] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2395), 1, + STATE(2427), 1, sym__newline, - [81045] = 2, - ACTIONS(5030), 1, + [81138] = 2, + ACTIONS(4589), 1, + sym__block_close, + ACTIONS(4591), 1, + sym__fenced_code_block_end_backtick, + [81145] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(2382), 1, + STATE(1053), 1, sym__newline, - [81052] = 2, - ACTIONS(5030), 1, + [81152] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(2375), 1, + STATE(1054), 1, sym__newline, - [81059] = 2, - ACTIONS(4484), 1, + [81159] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1035), 1, + STATE(2441), 1, sym__newline, - [81066] = 2, - ACTIONS(1742), 1, + [81166] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1796), 1, + STATE(2451), 1, sym__newline, - [81073] = 2, - ACTIONS(1714), 1, + [81173] = 2, + ACTIONS(6948), 1, + sym__block_close, + ACTIONS(6950), 1, + sym__fenced_code_block_end_backtick, + [81180] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1638), 1, + STATE(2326), 1, sym__newline, - [81080] = 2, - ACTIONS(4486), 1, + [81187] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1037), 1, + STATE(1079), 1, sym__newline, - [81087] = 2, - ACTIONS(4522), 1, + [81194] = 2, + ACTIONS(4501), 1, sym__block_close, - ACTIONS(4524), 1, + ACTIONS(4503), 1, sym__fenced_code_block_end_backtick, - [81094] = 2, - ACTIONS(5030), 1, + [81201] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(2312), 1, + STATE(1078), 1, sym__newline, - [81101] = 2, - ACTIONS(4522), 1, + [81208] = 2, + ACTIONS(4501), 1, sym__block_close, - ACTIONS(4524), 1, + ACTIONS(4503), 1, sym__fenced_code_block_end_tilde, - [81108] = 2, - ACTIONS(5030), 1, + [81215] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(2310), 1, + STATE(419), 1, sym__newline, - [81115] = 2, - ACTIONS(5030), 1, + [81222] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2301), 1, + STATE(2392), 1, sym__newline, - [81122] = 2, - ACTIONS(4484), 1, + [81229] = 2, + ACTIONS(1689), 1, aux_sym__newline_token1, - STATE(1054), 1, + STATE(682), 1, sym__newline, - [81129] = 2, - ACTIONS(1756), 1, + [81236] = 2, + ACTIONS(1717), 1, aux_sym__newline_token1, - STATE(905), 1, + STATE(1811), 1, sym__newline, - [81136] = 2, - ACTIONS(4486), 1, + [81243] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1055), 1, + STATE(2390), 1, sym__newline, - [81143] = 2, - ACTIONS(4592), 1, - sym__block_close, - ACTIONS(4594), 1, - sym__fenced_code_block_end_backtick, - [81150] = 2, - ACTIONS(4486), 1, + [81250] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1071), 1, + STATE(2388), 1, sym__newline, - [81157] = 2, - ACTIONS(6961), 1, + [81257] = 2, + ACTIONS(6952), 1, + sym__block_close, + ACTIONS(6954), 1, + sym__fenced_code_block_end_backtick, + [81264] = 2, + ACTIONS(6956), 1, sym__block_close, - ACTIONS(6963), 1, + ACTIONS(6958), 1, sym__fenced_code_block_end_backtick, - [81164] = 2, - ACTIONS(6961), 1, + [81271] = 2, + ACTIONS(6956), 1, + sym__block_close, + ACTIONS(6958), 1, + sym__fenced_code_block_end_tilde, + [81278] = 2, + ACTIONS(6960), 1, sym__block_close, - ACTIONS(6963), 1, + ACTIONS(6962), 1, sym__fenced_code_block_end_tilde, - [81171] = 2, - ACTIONS(5030), 1, + [81285] = 2, + ACTIONS(6960), 1, + sym__block_close, + ACTIONS(6962), 1, + sym__fenced_code_block_end_backtick, + [81292] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(2259), 1, + STATE(1058), 1, sym__newline, - [81178] = 2, - ACTIONS(6965), 1, + [81299] = 2, + ACTIONS(4497), 1, + sym__block_close, + ACTIONS(4499), 1, + sym__fenced_code_block_end_tilde, + [81306] = 2, + ACTIONS(4497), 1, + sym__block_close, + ACTIONS(4499), 1, + sym__fenced_code_block_end_backtick, + [81313] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(2280), 1, + STATE(1034), 1, sym__newline, - [81185] = 2, - ACTIONS(5030), 1, + [81320] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(2308), 1, + STATE(1069), 1, sym__newline, - [81192] = 2, - ACTIONS(5030), 1, + [81327] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(2309), 1, + STATE(1062), 1, sym__newline, - [81199] = 2, - ACTIONS(6967), 1, - sym__block_close, - ACTIONS(6969), 1, - sym__fenced_code_block_end_tilde, - [81206] = 2, - ACTIONS(4484), 1, + [81334] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1036), 1, + STATE(2362), 1, sym__newline, - [81213] = 2, - ACTIONS(4484), 1, + [81341] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1069), 1, + STATE(2346), 1, sym__newline, - [81220] = 2, - ACTIONS(6967), 1, - sym__block_close, - ACTIONS(6969), 1, - sym__fenced_code_block_end_backtick, - [81227] = 2, - ACTIONS(4486), 1, + [81348] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1065), 1, + STATE(2345), 1, sym__newline, - [81234] = 2, - ACTIONS(6971), 1, - sym__block_close, - ACTIONS(6973), 1, - sym__fenced_code_block_end_tilde, - [81241] = 2, - ACTIONS(6975), 1, + [81355] = 2, + ACTIONS(6964), 1, sym__word_no_digit, - STATE(1994), 1, + STATE(1952), 1, sym__tag_name, - [81248] = 2, - ACTIONS(6971), 1, - sym__block_close, - ACTIONS(6973), 1, - sym__fenced_code_block_end_backtick, - [81255] = 2, - ACTIONS(1748), 1, + [81362] = 2, + ACTIONS(1701), 1, aux_sym__newline_token1, - STATE(2030), 1, + STATE(2020), 1, sym__newline, - [81262] = 2, - ACTIONS(1714), 1, + [81369] = 2, + ACTIONS(1713), 1, aux_sym__newline_token1, - STATE(1558), 1, + STATE(1624), 1, sym__newline, - [81269] = 2, - ACTIONS(1728), 1, + [81376] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(427), 1, + STATE(1075), 1, sym__newline, - [81276] = 2, - ACTIONS(4592), 1, - sym__block_close, - ACTIONS(4594), 1, - sym__fenced_code_block_end_tilde, - [81283] = 2, - ACTIONS(4530), 1, + [81383] = 2, + ACTIONS(4471), 1, + aux_sym__newline_token1, + STATE(1043), 1, + sym__newline, + [81390] = 2, + ACTIONS(6952), 1, sym__block_close, - ACTIONS(4532), 1, + ACTIONS(6954), 1, sym__fenced_code_block_end_tilde, - [81290] = 2, - ACTIONS(5030), 1, + [81397] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2335), 1, + STATE(2284), 1, sym__newline, - [81297] = 2, - ACTIONS(5030), 1, + [81404] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2336), 1, + STATE(2315), 1, sym__newline, - [81304] = 2, - ACTIONS(4530), 1, - sym__block_close, - ACTIONS(4532), 1, - sym__fenced_code_block_end_backtick, - [81311] = 2, - ACTIONS(5030), 1, + [81411] = 2, + ACTIONS(1707), 1, aux_sym__newline_token1, - STATE(2337), 1, + STATE(789), 1, sym__newline, - [81318] = 2, - ACTIONS(4484), 1, + [81418] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(1072), 1, + STATE(2312), 1, sym__newline, - [81325] = 2, - ACTIONS(4486), 1, + [81425] = 2, + ACTIONS(1689), 1, aux_sym__newline_token1, - STATE(1076), 1, + STATE(799), 1, sym__newline, - [81332] = 1, - ACTIONS(6977), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - [81337] = 2, - ACTIONS(1728), 1, + [81432] = 2, + ACTIONS(1709), 1, + aux_sym__newline_token1, + STATE(384), 1, + sym__newline, + [81439] = 2, + ACTIONS(4473), 1, + aux_sym__newline_token1, + STATE(1055), 1, + sym__newline, + [81446] = 2, + ACTIONS(4471), 1, + aux_sym__newline_token1, + STATE(1056), 1, + sym__newline, + [81453] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(405), 1, + STATE(2415), 1, sym__newline, - [81344] = 2, - ACTIONS(5030), 1, + [81460] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2334), 1, + STATE(2283), 1, sym__newline, - [81351] = 2, - ACTIONS(5030), 1, + [81467] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2343), 1, + STATE(2267), 1, sym__newline, - [81358] = 2, - ACTIONS(5030), 1, + [81474] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2330), 1, + STATE(2270), 1, sym__newline, - [81365] = 2, - ACTIONS(6975), 1, + [81481] = 2, + ACTIONS(6964), 1, sym__word_no_digit, - STATE(1983), 1, + STATE(1988), 1, sym__tag_name, - [81372] = 2, - ACTIONS(6979), 1, + [81488] = 2, + ACTIONS(4513), 1, sym__block_close, - ACTIONS(6981), 1, - sym__fenced_code_block_end_backtick, - [81379] = 2, - ACTIONS(4486), 1, + ACTIONS(4515), 1, + sym__fenced_code_block_end_tilde, + [81495] = 2, + ACTIONS(4473), 1, aux_sym__newline_token1, - STATE(1070), 1, + STATE(1050), 1, sym__newline, - [81386] = 2, - ACTIONS(6979), 1, + [81502] = 2, + ACTIONS(6966), 1, sym__block_close, - ACTIONS(6981), 1, + ACTIONS(6968), 1, sym__fenced_code_block_end_tilde, - [81393] = 2, - ACTIONS(1750), 1, - aux_sym__newline_token1, - STATE(821), 1, - sym__newline, - [81400] = 2, - ACTIONS(4542), 1, + [81509] = 2, + ACTIONS(4539), 1, sym__block_close, - ACTIONS(4544), 1, + ACTIONS(4541), 1, sym__fenced_code_block_end_backtick, - [81407] = 2, - ACTIONS(1728), 1, - aux_sym__newline_token1, - STATE(411), 1, - sym__newline, - [81414] = 2, - ACTIONS(4542), 1, + [81516] = 2, + ACTIONS(6966), 1, + sym__block_close, + ACTIONS(6968), 1, + sym__fenced_code_block_end_backtick, + [81523] = 2, + ACTIONS(4539), 1, sym__block_close, - ACTIONS(4544), 1, + ACTIONS(4541), 1, sym__fenced_code_block_end_tilde, - [81421] = 2, - ACTIONS(1724), 1, - aux_sym__newline_token1, - STATE(1704), 1, - sym__newline, - [81428] = 2, - ACTIONS(1724), 1, - aux_sym__newline_token1, - STATE(1713), 1, - sym__newline, - [81435] = 2, - ACTIONS(1728), 1, + [81530] = 2, + ACTIONS(4525), 1, + sym__block_close, + ACTIONS(4527), 1, + sym__fenced_code_block_end_tilde, + [81537] = 2, + ACTIONS(4525), 1, + sym__block_close, + ACTIONS(4527), 1, + sym__fenced_code_block_end_backtick, + [81544] = 2, + ACTIONS(4471), 1, aux_sym__newline_token1, - STATE(384), 1, + STATE(1047), 1, sym__newline, - [81442] = 2, - ACTIONS(1756), 1, + [81551] = 2, + ACTIONS(4513), 1, + sym__block_close, + ACTIONS(4515), 1, + sym__fenced_code_block_end_backtick, + [81558] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(868), 1, + STATE(427), 1, sym__newline, - [81449] = 2, - ACTIONS(1728), 1, + [81565] = 1, + ACTIONS(6970), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + [81570] = 2, + ACTIONS(1703), 1, aux_sym__newline_token1, - STATE(388), 1, + STATE(1711), 1, sym__newline, - [81456] = 2, - ACTIONS(4588), 1, - sym__block_close, - ACTIONS(4590), 1, - sym__fenced_code_block_end_backtick, - [81463] = 2, - ACTIONS(4588), 1, + [81577] = 2, + ACTIONS(6972), 1, sym__block_close, - ACTIONS(4590), 1, - sym__fenced_code_block_end_tilde, - [81470] = 2, - ACTIONS(6983), 1, - sym__block_close, - ACTIONS(6985), 1, + ACTIONS(6974), 1, sym__fenced_code_block_end_backtick, - [81477] = 2, - ACTIONS(6983), 1, + [81584] = 2, + ACTIONS(6972), 1, sym__block_close, - ACTIONS(6985), 1, + ACTIONS(6974), 1, sym__fenced_code_block_end_tilde, - [81484] = 2, - ACTIONS(1728), 1, + [81591] = 2, + ACTIONS(1707), 1, aux_sym__newline_token1, - STATE(415), 1, + STATE(699), 1, sym__newline, - [81491] = 2, - ACTIONS(1758), 1, + [81598] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(806), 1, + STATE(413), 1, sym__newline, - [81498] = 2, - ACTIONS(6987), 1, - sym__block_close, - ACTIONS(6989), 1, - sym__fenced_code_block_end_backtick, - [81505] = 2, - ACTIONS(1742), 1, + [81605] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(1804), 1, + STATE(421), 1, sym__newline, - [81512] = 2, - ACTIONS(6991), 1, - sym__block_close, - ACTIONS(6993), 1, - sym__fenced_code_block_end_backtick, - [81519] = 2, - ACTIONS(5030), 1, + [81612] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(2435), 1, + STATE(425), 1, sym__newline, - [81526] = 2, - ACTIONS(4572), 1, - sym__block_close, - ACTIONS(4574), 1, - sym__fenced_code_block_end_tilde, - [81533] = 2, - ACTIONS(1728), 1, + [81619] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(390), 1, + STATE(428), 1, sym__newline, - [81540] = 2, - ACTIONS(6991), 1, - sym__block_close, - ACTIONS(6993), 1, - sym__fenced_code_block_end_tilde, - [81547] = 2, - ACTIONS(6987), 1, - sym__block_close, - ACTIONS(6989), 1, - sym__fenced_code_block_end_tilde, - [81554] = 2, - ACTIONS(4566), 1, - sym__block_close, - ACTIONS(4568), 1, - sym__fenced_code_block_end_tilde, - [81561] = 2, - ACTIONS(5030), 1, + [81626] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(2425), 1, + STATE(429), 1, sym__newline, - [81568] = 2, - ACTIONS(1752), 1, + [81633] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(1724), 1, + STATE(430), 1, sym__newline, - [81575] = 2, - ACTIONS(1754), 1, + [81640] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(1796), 1, + STATE(403), 1, sym__newline, - [81582] = 2, - ACTIONS(1722), 1, + [81647] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(422), 1, + STATE(379), 1, sym__newline, - [81589] = 2, - ACTIONS(4566), 1, - sym__block_close, - ACTIONS(4568), 1, - sym__fenced_code_block_end_backtick, - [81596] = 2, - ACTIONS(5030), 1, + [81654] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2307), 1, + STATE(2325), 1, sym__newline, - [81603] = 2, - ACTIONS(1728), 1, + [81661] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(407), 1, + STATE(402), 1, sym__newline, - [81610] = 2, - ACTIONS(1758), 1, + [81668] = 2, + ACTIONS(1719), 1, aux_sym__newline_token1, - STATE(761), 1, + STATE(907), 1, sym__newline, - [81617] = 2, - ACTIONS(5030), 1, + [81675] = 2, + ACTIONS(1711), 1, aux_sym__newline_token1, - STATE(2409), 1, + STATE(1727), 1, sym__newline, - [81624] = 2, - ACTIONS(6995), 1, - sym__block_close, - ACTIONS(6997), 1, - sym__fenced_code_block_end_tilde, - [81631] = 2, - ACTIONS(1728), 1, + [81682] = 2, + ACTIONS(1705), 1, aux_sym__newline_token1, - STATE(399), 1, + STATE(1801), 1, sym__newline, - [81638] = 2, - ACTIONS(4534), 1, + [81689] = 2, + ACTIONS(6948), 1, + sym__block_close, + ACTIONS(6950), 1, + sym__fenced_code_block_end_tilde, + [81696] = 2, + ACTIONS(4535), 1, sym__block_close, - ACTIONS(4536), 1, + ACTIONS(4537), 1, + sym__fenced_code_block_end_backtick, + [81703] = 2, + ACTIONS(4551), 1, + sym__block_close, + ACTIONS(4553), 1, sym__fenced_code_block_end_tilde, - [81645] = 2, - ACTIONS(6995), 1, + [81710] = 2, + ACTIONS(4551), 1, sym__block_close, - ACTIONS(6997), 1, + ACTIONS(4553), 1, sym__fenced_code_block_end_backtick, - [81652] = 2, - ACTIONS(1750), 1, + [81717] = 2, + ACTIONS(6976), 1, aux_sym__newline_token1, - STATE(763), 1, + STATE(2422), 1, sym__newline, - [81659] = 2, - ACTIONS(1722), 1, + [81724] = 2, + ACTIONS(1721), 1, aux_sym__newline_token1, - STATE(380), 1, + STATE(370), 1, sym__newline, - [81666] = 2, - ACTIONS(1722), 1, + [81731] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(383), 1, + STATE(2331), 1, sym__newline, - [81673] = 2, - ACTIONS(5030), 1, + [81738] = 2, + ACTIONS(1709), 1, aux_sym__newline_token1, - STATE(2331), 1, + STATE(404), 1, + sym__newline, + [81745] = 2, + ACTIONS(1721), 1, + aux_sym__newline_token1, + STATE(389), 1, sym__newline, - [81680] = 2, - ACTIONS(4526), 1, + [81752] = 2, + ACTIONS(6978), 1, sym__block_close, - ACTIONS(4528), 1, - sym__fenced_code_block_end_backtick, - [81687] = 2, - ACTIONS(4534), 1, + ACTIONS(6980), 1, + sym__fenced_code_block_end_tilde, + [81759] = 2, + ACTIONS(4897), 1, + aux_sym__newline_token1, + STATE(2340), 1, + sym__newline, + [81766] = 2, + ACTIONS(4563), 1, sym__block_close, - ACTIONS(4536), 1, + ACTIONS(4565), 1, sym__fenced_code_block_end_backtick, - [81694] = 2, - ACTIONS(6975), 1, - sym__word_no_digit, - STATE(1993), 1, - sym__tag_name, - [81701] = 2, - ACTIONS(4526), 1, + [81773] = 2, + ACTIONS(4563), 1, sym__block_close, - ACTIONS(4528), 1, + ACTIONS(4565), 1, sym__fenced_code_block_end_tilde, - [81708] = 2, - ACTIONS(4572), 1, - sym__block_close, - ACTIONS(4574), 1, - sym__fenced_code_block_end_backtick, - [81715] = 2, - ACTIONS(1722), 1, + [81780] = 2, + ACTIONS(6964), 1, + sym__word_no_digit, + STATE(1954), 1, + sym__tag_name, + [81787] = 2, + ACTIONS(1719), 1, aux_sym__newline_token1, - STATE(393), 1, + STATE(902), 1, sym__newline, - [81722] = 2, - ACTIONS(1748), 1, + [81794] = 2, + ACTIONS(4897), 1, aux_sym__newline_token1, - STATE(2020), 1, + STATE(2360), 1, + sym__newline, + [81801] = 2, + ACTIONS(6978), 1, + sym__block_close, + ACTIONS(6980), 1, + sym__fenced_code_block_end_backtick, + [81808] = 2, + ACTIONS(4473), 1, + aux_sym__newline_token1, + STATE(1037), 1, sym__newline, - [81729] = 2, - ACTIONS(1752), 1, + [81815] = 2, + ACTIONS(1703), 1, aux_sym__newline_token1, - STATE(1730), 1, + STATE(1712), 1, sym__newline, - [81736] = 2, - ACTIONS(1728), 1, + [81822] = 2, + ACTIONS(6982), 1, + sym__block_close, + ACTIONS(6984), 1, + sym__fenced_code_block_end_tilde, + [81829] = 2, + ACTIONS(1701), 1, aux_sym__newline_token1, - STATE(398), 1, + STATE(2016), 1, sym__newline, - [81743] = 2, - ACTIONS(4486), 1, + [81836] = 2, + ACTIONS(1711), 1, aux_sym__newline_token1, - STATE(1052), 1, + STATE(1734), 1, sym__newline, - [81750] = 1, - ACTIONS(6999), 1, + [81843] = 2, + ACTIONS(6982), 1, + sym__block_close, + ACTIONS(6984), 1, + sym__fenced_code_block_end_backtick, + [81850] = 2, + ACTIONS(4535), 1, sym__block_close, - [81754] = 1, - ACTIONS(7001), 1, + ACTIONS(4537), 1, + sym__fenced_code_block_end_tilde, + [81857] = 1, + ACTIONS(6986), 1, + sym__block_close, + [81861] = 1, + ACTIONS(6988), 1, sym__line_ending, - [81758] = 1, - ACTIONS(7003), 1, + [81865] = 1, + ACTIONS(6990), 1, sym__block_close, - [81762] = 1, - ACTIONS(7005), 1, + [81869] = 1, + ACTIONS(6992), 1, sym__block_close, - [81766] = 1, - ACTIONS(7007), 1, + [81873] = 1, + ACTIONS(6994), 1, sym__block_close, - [81770] = 1, - ACTIONS(3147), 1, - sym__open_block, - [81774] = 1, - ACTIONS(6520), 1, + [81877] = 1, + ACTIONS(6996), 1, + sym__block_close, + [81881] = 1, + ACTIONS(6998), 1, + sym__block_close, + [81885] = 1, + ACTIONS(7000), 1, anon_sym_GT, - [81778] = 1, - ACTIONS(3121), 1, - sym__open_block, - [81782] = 1, - ACTIONS(3613), 1, - sym__open_block, - [81786] = 1, - ACTIONS(3093), 1, + [81889] = 1, + ACTIONS(7002), 1, + sym__close_block, + [81893] = 1, + ACTIONS(7004), 1, + sym__block_close, + [81897] = 1, + ACTIONS(7006), 1, sym__open_block, - [81790] = 1, - ACTIONS(7009), 1, + [81901] = 1, + ACTIONS(6158), 1, + sym__close_block, + [81905] = 1, + ACTIONS(6506), 1, + anon_sym_GT, + [81909] = 1, + ACTIONS(6183), 1, + sym__close_block, + [81913] = 1, + ACTIONS(6568), 1, + anon_sym_GT, + [81917] = 1, + ACTIONS(7008), 1, sym__open_block, - [81794] = 1, - ACTIONS(3347), 1, + [81921] = 1, + ACTIONS(7010), 1, + sym__open_block_dont_interrupt_paragraph, + [81925] = 1, + ACTIONS(6309), 1, + sym__close_block, + [81929] = 1, + ACTIONS(3880), 1, + anon_sym_COLON, + [81933] = 1, + ACTIONS(7012), 1, sym__open_block, - [81798] = 1, - ACTIONS(7011), 1, + [81937] = 1, + ACTIONS(7014), 1, sym__block_close, - [81802] = 1, - ACTIONS(7013), 1, + [81941] = 1, + ACTIONS(6544), 1, + anon_sym_GT, + [81945] = 1, + ACTIONS(7016), 1, sym__block_close, - [81806] = 1, - ACTIONS(7015), 1, + [81949] = 1, + ACTIONS(7018), 1, sym__block_close, - [81810] = 1, - ACTIONS(7017), 1, + [81953] = 1, + ACTIONS(7020), 1, sym__open_block, - [81814] = 1, - ACTIONS(7019), 1, - sym__open_block_dont_interrupt_paragraph, - [81818] = 1, - ACTIONS(7021), 1, - sym__block_close, - [81822] = 1, - ACTIONS(7023), 1, - sym__block_close, - [81826] = 1, - ACTIONS(7025), 1, - anon_sym_COLON, - [81830] = 1, - ACTIONS(7027), 1, - anon_sym_GT, - [81834] = 1, - ACTIONS(1850), 1, + [81957] = 1, + ACTIONS(7022), 1, sym__close_block, - [81838] = 1, - ACTIONS(3189), 1, + [81961] = 1, + ACTIONS(7024), 1, sym__open_block, - [81842] = 1, - ACTIONS(7029), 1, - sym__block_close, - [81846] = 1, - ACTIONS(7031), 1, + [81965] = 1, + ACTIONS(7026), 1, + sym__line_ending, + [81969] = 1, + ACTIONS(7028), 1, + sym__line_ending, + [81973] = 1, + ACTIONS(6315), 1, + sym__close_block, + [81977] = 1, + ACTIONS(7030), 1, sym__open_block, - [81850] = 1, - ACTIONS(3600), 1, + [81981] = 1, + ACTIONS(7032), 1, sym__open_block, - [81854] = 1, - ACTIONS(7033), 1, + [81985] = 1, + ACTIONS(7034), 1, + sym__close_block, + [81989] = 1, + ACTIONS(7036), 1, sym__open_block, - [81858] = 1, - ACTIONS(7035), 1, - sym__line_ending, - [81862] = 1, - ACTIONS(7037), 1, - sym__line_ending, - [81866] = 1, - ACTIONS(7039), 1, + [81993] = 1, + ACTIONS(7038), 1, + sym__block_close, + [81997] = 1, + ACTIONS(7040), 1, + anon_sym_COLON, + [82001] = 1, + ACTIONS(3068), 1, sym__open_block, - [81870] = 1, - ACTIONS(7041), 1, - sym__line_ending, - [81874] = 1, - ACTIONS(7043), 1, + [82005] = 1, + ACTIONS(3596), 1, sym__open_block, - [81878] = 1, - ACTIONS(7045), 1, - sym__line_ending, - [81882] = 1, - ACTIONS(7047), 1, + [82009] = 1, + ACTIONS(7042), 1, sym__open_block, - [81886] = 1, - ACTIONS(7049), 1, + [82013] = 1, + ACTIONS(7044), 1, + sym__close_block, + [82017] = 1, + ACTIONS(7046), 1, sym__close_block, - [81890] = 1, - ACTIONS(7051), 1, + [82021] = 1, + ACTIONS(7048), 1, sym__open_block, - [81894] = 1, - ACTIONS(7053), 1, + [82025] = 1, + ACTIONS(3160), 1, sym__open_block, - [81898] = 1, - ACTIONS(7055), 1, + [82029] = 1, + ACTIONS(3346), 1, sym__open_block, - [81902] = 1, - ACTIONS(7057), 1, + [82033] = 1, + ACTIONS(7050), 1, sym__open_block, - [81906] = 1, - ACTIONS(7059), 1, - sym__close_block, - [81910] = 1, - ACTIONS(7061), 1, + [82037] = 1, + ACTIONS(7052), 1, + sym__open_block, + [82041] = 1, + ACTIONS(7054), 1, sym__close_block, - [81914] = 1, - ACTIONS(6185), 1, + [82045] = 1, + ACTIONS(7056), 1, sym__close_block, - [81918] = 1, - ACTIONS(7063), 1, + [82049] = 1, + ACTIONS(6562), 1, + anon_sym_GT, + [82053] = 1, + ACTIONS(7058), 1, + sym__open_block, + [82057] = 1, + ACTIONS(7060), 1, + sym__open_block, + [82061] = 1, + ACTIONS(7062), 1, + sym__block_close, + [82065] = 1, + ACTIONS(7064), 1, sym__block_close, - [81922] = 1, - ACTIONS(7065), 1, + [82069] = 1, + ACTIONS(7066), 1, + sym__block_close, + [82073] = 1, + ACTIONS(7068), 1, + sym__block_close, + [82077] = 1, + ACTIONS(7070), 1, sym__close_block, - [81926] = 1, - ACTIONS(6516), 1, - anon_sym_GT, - [81930] = 1, - ACTIONS(1850), 1, - sym__trigger_error, - [81934] = 1, - ACTIONS(7067), 1, + [82081] = 1, + ACTIONS(7072), 1, + sym__block_close, + [82085] = 1, + ACTIONS(7074), 1, sym__close_block, - [81938] = 1, - ACTIONS(7069), 1, + [82089] = 1, + ACTIONS(7076), 1, sym__close_block, - [81942] = 1, - ACTIONS(7071), 1, + [82093] = 1, + ACTIONS(7078), 1, sym__block_close, - [81946] = 1, - ACTIONS(7073), 1, + [82097] = 1, + ACTIONS(7080), 1, sym__block_close, - [81950] = 1, - ACTIONS(7075), 1, + [82101] = 1, + ACTIONS(7082), 1, sym__block_close, - [81954] = 1, - ACTIONS(7077), 1, + [82105] = 1, + ACTIONS(7084), 1, sym__block_close, - [81958] = 1, - ACTIONS(7079), 1, + [82109] = 1, + ACTIONS(7086), 1, sym__block_close, - [81962] = 1, - ACTIONS(7081), 1, + [82113] = 1, + ACTIONS(7088), 1, sym__block_close, - [81966] = 1, - ACTIONS(7083), 1, + [82117] = 1, + ACTIONS(7090), 1, sym__block_close, - [81970] = 1, - ACTIONS(7085), 1, + [82121] = 1, + ACTIONS(7092), 1, sym__block_close, - [81974] = 1, - ACTIONS(6585), 1, - anon_sym_GT, - [81978] = 1, - ACTIONS(6524), 1, - anon_sym_GT, - [81982] = 1, - ACTIONS(7087), 1, - anon_sym_GT, - [81986] = 1, - ACTIONS(7089), 1, + [82125] = 1, + ACTIONS(7094), 1, sym__block_close, - [81990] = 1, - ACTIONS(7091), 1, - sym__open_block, - [81994] = 1, - ACTIONS(6308), 1, - sym__close_block, - [81998] = 1, - ACTIONS(7093), 1, - sym__close_block, - [82002] = 1, - ACTIONS(7095), 1, - sym__open_block, - [82006] = 1, - ACTIONS(7097), 1, + [82129] = 1, + ACTIONS(7096), 1, + sym__block_close, + [82133] = 1, + ACTIONS(3315), 1, sym__open_block, - [82010] = 1, - ACTIONS(7099), 1, + [82137] = 1, + ACTIONS(7098), 1, + sym__block_close, + [82141] = 1, + ACTIONS(7100), 1, + sym__block_close, + [82145] = 1, + ACTIONS(3287), 1, sym__open_block, - [82014] = 1, - ACTIONS(7101), 1, + [82149] = 1, + ACTIONS(3609), 1, sym__open_block, - [82018] = 1, - ACTIONS(7103), 1, - sym__close_block, - [82022] = 1, - ACTIONS(7105), 1, + [82153] = 1, + ACTIONS(1739), 1, + sym__trigger_error, + [82157] = 1, + ACTIONS(7102), 1, sym__open_block, - [82026] = 1, - ACTIONS(7107), 1, + [82161] = 1, + ACTIONS(3044), 1, sym__open_block, - [82030] = 1, - ACTIONS(7109), 1, - sym__close_block, - [82034] = 1, - ACTIONS(7111), 1, - sym__block_close, - [82038] = 1, - ACTIONS(7113), 1, - sym__block_close, - [82042] = 1, - ACTIONS(7115), 1, + [82165] = 1, + ACTIONS(7104), 1, sym__open_block, - [82046] = 1, - ACTIONS(7117), 1, - sym__trigger_error, - [82050] = 1, - ACTIONS(7119), 1, - sym__block_close, - [82054] = 1, - ACTIONS(7121), 1, - sym__block_close, - [82058] = 1, - ACTIONS(7123), 1, - sym__block_close, - [82062] = 1, - ACTIONS(7125), 1, + [82169] = 1, + ACTIONS(7106), 1, + anon_sym_GT, + [82173] = 1, + ACTIONS(7108), 1, sym__block_close, - [82066] = 1, - ACTIONS(6269), 1, - sym__close_block, - [82070] = 1, - ACTIONS(7127), 1, + [82177] = 1, + ACTIONS(7110), 1, sym__open_block, - [82074] = 1, - ACTIONS(7129), 1, + [82181] = 1, + ACTIONS(7112), 1, sym__open_block, - [82078] = 1, - ACTIONS(7131), 1, + [82185] = 1, + ACTIONS(7114), 1, sym__open_block, - [82082] = 1, - ACTIONS(7133), 1, + [82189] = 1, + ACTIONS(7116), 1, sym__open_block, - [82086] = 1, - ACTIONS(7135), 1, + [82193] = 1, + ACTIONS(7118), 1, sym__block_close, - [82090] = 1, - ACTIONS(7137), 1, - sym__open_block, - [82094] = 1, - ACTIONS(7139), 1, - sym__trigger_error, - [82098] = 1, - ACTIONS(7141), 1, + [82197] = 1, + ACTIONS(7120), 1, + sym__block_close, + [82201] = 1, + ACTIONS(6534), 1, + anon_sym_GT, + [82205] = 1, + ACTIONS(7122), 1, sym__line_ending, - [82102] = 1, - ACTIONS(7143), 1, + [82209] = 1, + ACTIONS(7124), 1, sym__open_block, - [82106] = 1, - ACTIONS(7145), 1, + [82213] = 1, + ACTIONS(7126), 1, sym__close_block, - [82110] = 1, - ACTIONS(7147), 1, + [82217] = 1, + ACTIONS(7128), 1, sym__open_block, - [82114] = 1, - ACTIONS(7149), 1, + [82221] = 1, + ACTIONS(7130), 1, sym__close_block, - [82118] = 1, - ACTIONS(7151), 1, + [82225] = 1, + ACTIONS(7132), 1, sym__open_block, - [82122] = 1, - ACTIONS(7153), 1, - sym__block_close, - [82126] = 1, - ACTIONS(7155), 1, - sym__block_close, - [82130] = 1, - ACTIONS(7157), 1, + [82229] = 1, + ACTIONS(7134), 1, + sym__line_ending, + [82233] = 1, + ACTIONS(7136), 1, + sym__line_ending, + [82237] = 1, + ACTIONS(7138), 1, sym__open_block, - [82134] = 1, - ACTIONS(7159), 1, + [82241] = 1, + ACTIONS(7140), 1, sym__open_block, - [82138] = 1, - ACTIONS(7161), 1, - sym__block_close, - [82142] = 1, - ACTIONS(7163), 1, + [82245] = 1, + ACTIONS(7142), 1, + sym__open_block, + [82249] = 1, + ACTIONS(7144), 1, + sym__close_block, + [82253] = 1, + ACTIONS(7146), 1, sym__block_close, - [82146] = 1, - ACTIONS(7165), 1, - sym__trigger_error, - [82150] = 1, - ACTIONS(7167), 1, + [82257] = 1, + ACTIONS(7148), 1, sym__line_ending, - [82154] = 1, - ACTIONS(7169), 1, + [82261] = 1, + ACTIONS(7150), 1, sym__block_close, - [82158] = 1, - ACTIONS(7171), 1, - sym__close_block, - [82162] = 1, - ACTIONS(7173), 1, - sym__open_block, - [82166] = 1, - ACTIONS(7175), 1, + [82265] = 1, + ACTIONS(7152), 1, sym__close_block, - [82170] = 1, - ACTIONS(3723), 1, - anon_sym_COLON, - [82174] = 1, - ACTIONS(7177), 1, - sym__block_close, - [82178] = 1, - ACTIONS(7179), 1, + [82269] = 1, + ACTIONS(7154), 1, + anon_sym_GT, + [82273] = 1, + ACTIONS(7156), 1, sym__close_block, - [82182] = 1, - ACTIONS(7181), 1, + [82277] = 1, + ACTIONS(7158), 1, + sym__open_block, + [82281] = 1, + ACTIONS(6572), 1, + anon_sym_GT, + [82285] = 1, + ACTIONS(7160), 1, + sym__open_block, + [82289] = 1, + ACTIONS(7162), 1, sym__open_block, - [82186] = 1, - ACTIONS(7183), 1, + [82293] = 1, + ACTIONS(7164), 1, sym__open_block, - [82190] = 1, - ACTIONS(7185), 1, + [82297] = 1, + ACTIONS(7166), 1, sym__close_block, - [82194] = 1, - ACTIONS(7187), 1, - sym__block_close, - [82198] = 1, - ACTIONS(6595), 1, - anon_sym_GT, - [82202] = 1, - ACTIONS(7189), 1, - sym__block_close, - [82206] = 1, - ACTIONS(7191), 1, - sym__block_close, - [82210] = 1, - ACTIONS(7193), 1, + [82301] = 1, + ACTIONS(7168), 1, sym__close_block, - [82214] = 1, - ACTIONS(7195), 1, + [82305] = 1, + ACTIONS(7170), 1, + sym__open_block, + [82309] = 1, + ACTIONS(7172), 1, sym__block_close, - [82218] = 1, - ACTIONS(7197), 1, + [82313] = 1, + ACTIONS(7174), 1, sym__close_block, - [82222] = 1, - ACTIONS(7199), 1, - sym__block_close, - [82226] = 1, - ACTIONS(7201), 1, + [82317] = 1, + ACTIONS(7176), 1, sym__close_block, - [82230] = 1, - ACTIONS(7203), 1, + [82321] = 1, + ACTIONS(7178), 1, + sym__trigger_error, + [82325] = 1, + ACTIONS(7180), 1, + sym__close_block, + [82329] = 1, + ACTIONS(7182), 1, + sym__open_block, + [82333] = 1, + ACTIONS(7184), 1, sym__block_close, - [82234] = 1, - ACTIONS(7205), 1, + [82337] = 1, + ACTIONS(7186), 1, + sym__trigger_error, + [82341] = 1, + ACTIONS(7188), 1, sym__open_block, - [82238] = 1, - ACTIONS(7207), 1, + [82345] = 1, + ACTIONS(7190), 1, sym__open_block, - [82242] = 1, - ACTIONS(7209), 1, + [82349] = 1, + ACTIONS(7192), 1, + sym__trigger_error, + [82353] = 1, + ACTIONS(7194), 1, sym__block_close, - [82246] = 1, - ACTIONS(7211), 1, + [82357] = 1, + ACTIONS(7196), 1, sym__block_close, - [82250] = 1, - ACTIONS(7213), 1, - sym__open_block, - [82254] = 1, - ACTIONS(7215), 1, + [82361] = 1, + ACTIONS(7198), 1, sym__line_ending, - [82258] = 1, - ACTIONS(7217), 1, + [82365] = 1, + ACTIONS(7200), 1, sym__block_close, - [82262] = 1, - ACTIONS(7219), 1, + [82369] = 1, + ACTIONS(7202), 1, sym__close_block, - [82266] = 1, - ACTIONS(7221), 1, + [82373] = 1, + ACTIONS(7204), 1, sym__block_close, - [82270] = 1, - ACTIONS(7223), 1, + [82377] = 1, + ACTIONS(7206), 1, sym__close_block, - [82274] = 1, - ACTIONS(7225), 1, + [82381] = 1, + ACTIONS(7208), 1, sym__block_close, - [82278] = 1, - ACTIONS(7227), 1, + [82385] = 1, + ACTIONS(7210), 1, anon_sym_COLON, - [82282] = 1, - ACTIONS(7229), 1, + [82389] = 1, + ACTIONS(7212), 1, + sym__block_close, + [82393] = 1, + ACTIONS(7214), 1, sym__open_block, - [82286] = 1, - ACTIONS(7231), 1, + [82397] = 1, + ACTIONS(7216), 1, sym__open_block, - [82290] = 1, - ACTIONS(7233), 1, + [82401] = 1, + ACTIONS(7218), 1, sym__open_block, - [82294] = 1, - ACTIONS(7235), 1, - sym__block_close, - [82298] = 1, - ACTIONS(7237), 1, - sym__close_block, - [82302] = 1, - ACTIONS(7239), 1, + [82405] = 1, + ACTIONS(7220), 1, sym__open_block, - [82306] = 1, - ACTIONS(7241), 1, + [82409] = 1, + ACTIONS(7222), 1, + sym__block_close, + [82413] = 1, + ACTIONS(7224), 1, sym__line_ending, - [82310] = 1, - ACTIONS(7243), 1, + [82417] = 1, + ACTIONS(7226), 1, sym__open_block, - [82314] = 1, - ACTIONS(7245), 1, + [82421] = 1, + ACTIONS(7228), 1, sym__close_block, - [82318] = 1, - ACTIONS(7247), 1, + [82425] = 1, + ACTIONS(7230), 1, sym__open_block, - [82322] = 1, - ACTIONS(7249), 1, + [82429] = 1, + ACTIONS(7232), 1, sym__close_block, - [82326] = 1, - ACTIONS(7251), 1, + [82433] = 1, + ACTIONS(7234), 1, sym__open_block, - [82330] = 1, - ACTIONS(7253), 1, + [82437] = 1, + ACTIONS(7236), 1, ts_builtin_sym_end, - [82334] = 1, - ACTIONS(7255), 1, + [82441] = 1, + ACTIONS(7238), 1, + sym__block_close, + [82445] = 1, + ACTIONS(7240), 1, sym__open_block, - [82338] = 1, - ACTIONS(7257), 1, + [82449] = 1, + ACTIONS(7242), 1, sym__open_block, - [82342] = 1, - ACTIONS(7259), 1, + [82453] = 1, + ACTIONS(7244), 1, sym__open_block, - [82346] = 1, - ACTIONS(7261), 1, + [82457] = 1, + ACTIONS(7246), 1, sym__open_block, - [82350] = 1, - ACTIONS(7263), 1, - sym__block_close, - [82354] = 1, - ACTIONS(7265), 1, + [82461] = 1, + ACTIONS(7248), 1, sym__line_ending, - [82358] = 1, - ACTIONS(7267), 1, + [82465] = 1, + ACTIONS(7250), 1, sym__open_block, - [82362] = 1, - ACTIONS(7269), 1, + [82469] = 1, + ACTIONS(7252), 1, sym__close_block, - [82366] = 1, - ACTIONS(7271), 1, - anon_sym_GT, - [82370] = 1, - ACTIONS(7273), 1, - sym__close_block, - [82374] = 1, - ACTIONS(7275), 1, + [82473] = 1, + ACTIONS(7254), 1, + sym__block_close, + [82477] = 1, + ACTIONS(7256), 1, sym__close_block, - [82378] = 1, - ACTIONS(7277), 1, + [82481] = 1, + ACTIONS(7258), 1, + sym__block_close, + [82485] = 1, + ACTIONS(7260), 1, sym__open_block_dont_interrupt_paragraph, - [82382] = 1, - ACTIONS(7279), 1, + [82489] = 1, + ACTIONS(7262), 1, sym__open_block_dont_interrupt_paragraph, - [82386] = 1, - ACTIONS(7281), 1, + [82493] = 1, + ACTIONS(7264), 1, sym__open_block, - [82390] = 1, - ACTIONS(7283), 1, + [82497] = 1, + ACTIONS(7266), 1, sym__open_block, - [82394] = 1, - ACTIONS(7285), 1, - sym__block_close, - [82398] = 1, - ACTIONS(7287), 1, + [82501] = 1, + ACTIONS(1739), 1, + sym__close_block, + [82505] = 1, + ACTIONS(7268), 1, sym__block_close, - [82402] = 1, - ACTIONS(7289), 1, + [82509] = 1, + ACTIONS(7270), 1, sym__line_ending, - [82406] = 1, - ACTIONS(7291), 1, + [82513] = 1, + ACTIONS(7272), 1, sym__block_close, - [82410] = 1, - ACTIONS(7293), 1, + [82517] = 1, + ACTIONS(7274), 1, sym__close_block, - [82414] = 1, - ACTIONS(7295), 1, + [82521] = 1, + ACTIONS(7276), 1, sym__block_close, - [82418] = 1, - ACTIONS(7297), 1, + [82525] = 1, + ACTIONS(7278), 1, sym__close_block, - [82422] = 1, - ACTIONS(6255), 1, - sym__close_block, - [82426] = 1, - ACTIONS(7299), 1, + [82529] = 1, + ACTIONS(7280), 1, + sym__block_close, + [82533] = 1, + ACTIONS(7282), 1, sym__open_block, - [82430] = 1, - ACTIONS(7301), 1, + [82537] = 1, + ACTIONS(7284), 1, sym__open_block, - [82434] = 1, - ACTIONS(7303), 1, + [82541] = 1, + ACTIONS(7286), 1, sym__open_block, - [82438] = 1, - ACTIONS(7305), 1, + [82545] = 1, + ACTIONS(7288), 1, sym__open_block, - [82442] = 1, - ACTIONS(3367), 1, + [82549] = 1, + ACTIONS(7290), 1, sym__open_block, - [82446] = 1, - ACTIONS(6569), 1, - anon_sym_GT, - [82450] = 1, - ACTIONS(7307), 1, + [82553] = 1, + ACTIONS(7292), 1, + sym__open_block, + [82557] = 1, + ACTIONS(7294), 1, sym__line_ending, - [82454] = 1, - ACTIONS(7309), 1, - sym__block_close, - [82458] = 1, - ACTIONS(7311), 1, - sym__close_block, - [82462] = 1, - ACTIONS(7313), 1, + [82561] = 1, + ACTIONS(7296), 1, sym__open_block, - [82466] = 1, - ACTIONS(7315), 1, + [82565] = 1, + ACTIONS(7298), 1, sym__close_block, - [82470] = 1, - ACTIONS(7317), 1, + [82569] = 1, + ACTIONS(7300), 1, sym__open_block, - [82474] = 1, - ACTIONS(7319), 1, + [82573] = 1, + ACTIONS(7302), 1, + sym__close_block, + [82577] = 1, + ACTIONS(7304), 1, + sym__block_close, + [82581] = 1, + ACTIONS(7306), 1, sym__open_block, - [82478] = 1, - ACTIONS(7321), 1, + [82585] = 1, + ACTIONS(7308), 1, sym__open_block, - [82482] = 1, - ACTIONS(7323), 1, + [82589] = 1, + ACTIONS(7310), 1, sym__line_ending, - [82486] = 1, - ACTIONS(7325), 1, + [82593] = 1, + ACTIONS(7312), 1, sym__close_block, - [82490] = 1, - ACTIONS(7327), 1, + [82597] = 1, + ACTIONS(7314), 1, sym__close_block, - [82494] = 1, - ACTIONS(7329), 1, + [82601] = 1, + ACTIONS(7316), 1, sym__open_block, - [82498] = 1, - ACTIONS(7331), 1, + [82605] = 1, + ACTIONS(7318), 1, sym__open_block_dont_interrupt_paragraph, - [82502] = 1, - ACTIONS(7333), 1, + [82609] = 1, + ACTIONS(7320), 1, anon_sym_COLON, - [82506] = 1, - ACTIONS(7335), 1, + [82613] = 1, + ACTIONS(7322), 1, sym__open_block, - [82510] = 1, - ACTIONS(7337), 1, - sym__open_block, - [82514] = 1, - ACTIONS(7339), 1, + [82617] = 1, + ACTIONS(7324), 1, + sym__block_close, + [82621] = 1, + ACTIONS(7326), 1, anon_sym_COLON, - [82518] = 1, - ACTIONS(7341), 1, + [82625] = 1, + ACTIONS(7328), 1, sym__close_block, - [82522] = 1, - ACTIONS(7343), 1, + [82629] = 1, + ACTIONS(7330), 1, sym__close_block, - [82526] = 1, - ACTIONS(7345), 1, + [82633] = 1, + ACTIONS(7332), 1, sym__close_block, - [82530] = 1, - ACTIONS(7347), 1, + [82637] = 1, + ACTIONS(7334), 1, sym__open_block, - [82534] = 1, - ACTIONS(7349), 1, + [82641] = 1, + ACTIONS(7336), 1, sym__close_block, - [82538] = 1, - ACTIONS(7351), 1, + [82645] = 1, + ACTIONS(7338), 1, sym__close_block, - [82542] = 1, - ACTIONS(7353), 1, + [82649] = 1, + ACTIONS(7340), 1, sym__close_block, - [82546] = 1, - ACTIONS(7355), 1, + [82653] = 1, + ACTIONS(7342), 1, sym__open_block, - [82550] = 1, - ACTIONS(7357), 1, + [82657] = 1, + ACTIONS(7344), 1, sym__close_block, - [82554] = 1, - ACTIONS(7359), 1, + [82661] = 1, + ACTIONS(7346), 1, sym__close_block, - [82558] = 1, - ACTIONS(7361), 1, + [82665] = 1, + ACTIONS(7348), 1, sym__close_block, - [82562] = 1, - ACTIONS(7363), 1, + [82669] = 1, + ACTIONS(7350), 1, sym__open_block, - [82566] = 1, - ACTIONS(7365), 1, + [82673] = 1, + ACTIONS(7352), 1, sym__close_block, - [82570] = 1, - ACTIONS(7367), 1, + [82677] = 1, + ACTIONS(7354), 1, sym__close_block, - [82574] = 1, - ACTIONS(7369), 1, + [82681] = 1, + ACTIONS(7356), 1, sym__close_block, - [82578] = 1, - ACTIONS(7371), 1, + [82685] = 1, + ACTIONS(7358), 1, sym__open_block, - [82582] = 1, - ACTIONS(7373), 1, + [82689] = 1, + ACTIONS(7360), 1, sym__close_block, - [82586] = 1, - ACTIONS(7375), 1, + [82693] = 1, + ACTIONS(7362), 1, sym__close_block, - [82590] = 1, - ACTIONS(7377), 1, + [82697] = 1, + ACTIONS(7364), 1, sym__close_block, - [82594] = 1, - ACTIONS(7379), 1, + [82701] = 1, + ACTIONS(7366), 1, sym__open_block, - [82598] = 1, - ACTIONS(7381), 1, + [82705] = 1, + ACTIONS(7368), 1, sym__close_block, - [82602] = 1, - ACTIONS(7383), 1, + [82709] = 1, + ACTIONS(7370), 1, sym__close_block, - [82606] = 1, - ACTIONS(7385), 1, + [82713] = 1, + ACTIONS(7372), 1, sym__close_block, - [82610] = 1, - ACTIONS(7387), 1, + [82717] = 1, + ACTIONS(7374), 1, sym__open_block, - [82614] = 1, - ACTIONS(7389), 1, + [82721] = 1, + ACTIONS(7376), 1, sym__close_block, - [82618] = 1, - ACTIONS(7391), 1, + [82725] = 1, + ACTIONS(7378), 1, sym__close_block, - [82622] = 1, - ACTIONS(7393), 1, + [82729] = 1, + ACTIONS(7380), 1, sym__close_block, - [82626] = 1, - ACTIONS(7395), 1, + [82733] = 1, + ACTIONS(7382), 1, sym__open_block, - [82630] = 1, - ACTIONS(7397), 1, + [82737] = 1, + ACTIONS(7384), 1, sym__close_block, - [82634] = 1, - ACTIONS(7399), 1, + [82741] = 1, + ACTIONS(7386), 1, sym__close_block, - [82638] = 1, - ACTIONS(7401), 1, + [82745] = 1, + ACTIONS(7388), 1, sym__close_block, - [82642] = 1, - ACTIONS(7403), 1, + [82749] = 1, + ACTIONS(7390), 1, sym__open_block, - [82646] = 1, - ACTIONS(7405), 1, + [82753] = 1, + ACTIONS(7392), 1, sym__close_block, - [82650] = 1, - ACTIONS(7407), 1, + [82757] = 1, + ACTIONS(7394), 1, sym__close_block, - [82654] = 1, - ACTIONS(7409), 1, + [82761] = 1, + ACTIONS(7396), 1, sym__close_block, - [82658] = 1, - ACTIONS(7411), 1, + [82765] = 1, + ACTIONS(7398), 1, sym__open_block, }; @@ -144604,154 +144723,154 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(460)] = 93, [SMALL_STATE(461)] = 186, [SMALL_STATE(462)] = 258, - [SMALL_STATE(463)] = 340, - [SMALL_STATE(464)] = 404, - [SMALL_STATE(465)] = 486, - [SMALL_STATE(466)] = 566, + [SMALL_STATE(463)] = 338, + [SMALL_STATE(464)] = 418, + [SMALL_STATE(465)] = 482, + [SMALL_STATE(466)] = 564, [SMALL_STATE(467)] = 646, - [SMALL_STATE(468)] = 707, - [SMALL_STATE(469)] = 788, + [SMALL_STATE(468)] = 725, + [SMALL_STATE(469)] = 806, [SMALL_STATE(470)] = 867, - [SMALL_STATE(471)] = 949, - [SMALL_STATE(472)] = 1027, - [SMALL_STATE(473)] = 1105, - [SMALL_STATE(474)] = 1189, - [SMALL_STATE(475)] = 1269, - [SMALL_STATE(476)] = 1347, - [SMALL_STATE(477)] = 1425, - [SMALL_STATE(478)] = 1503, - [SMALL_STATE(479)] = 1583, - [SMALL_STATE(480)] = 1665, - [SMALL_STATE(481)] = 1741, - [SMALL_STATE(482)] = 1825, - [SMALL_STATE(483)] = 1901, - [SMALL_STATE(484)] = 1977, - [SMALL_STATE(485)] = 2053, - [SMALL_STATE(486)] = 2137, - [SMALL_STATE(487)] = 2219, - [SMALL_STATE(488)] = 2295, - [SMALL_STATE(489)] = 2379, - [SMALL_STATE(490)] = 2455, - [SMALL_STATE(491)] = 2531, - [SMALL_STATE(492)] = 2609, - [SMALL_STATE(493)] = 2685, + [SMALL_STATE(471)] = 943, + [SMALL_STATE(472)] = 1021, + [SMALL_STATE(473)] = 1101, + [SMALL_STATE(474)] = 1179, + [SMALL_STATE(475)] = 1257, + [SMALL_STATE(476)] = 1341, + [SMALL_STATE(477)] = 1419, + [SMALL_STATE(478)] = 1497, + [SMALL_STATE(479)] = 1573, + [SMALL_STATE(480)] = 1655, + [SMALL_STATE(481)] = 1731, + [SMALL_STATE(482)] = 1811, + [SMALL_STATE(483)] = 1893, + [SMALL_STATE(484)] = 1969, + [SMALL_STATE(485)] = 2045, + [SMALL_STATE(486)] = 2121, + [SMALL_STATE(487)] = 2203, + [SMALL_STATE(488)] = 2285, + [SMALL_STATE(489)] = 2361, + [SMALL_STATE(490)] = 2439, + [SMALL_STATE(491)] = 2523, + [SMALL_STATE(492)] = 2607, + [SMALL_STATE(493)] = 2683, [SMALL_STATE(494)] = 2767, - [SMALL_STATE(495)] = 2842, - [SMALL_STATE(496)] = 2907, - [SMALL_STATE(497)] = 2984, - [SMALL_STATE(498)] = 3059, - [SMALL_STATE(499)] = 3124, - [SMALL_STATE(500)] = 3207, - [SMALL_STATE(501)] = 3280, + [SMALL_STATE(495)] = 2832, + [SMALL_STATE(496)] = 2897, + [SMALL_STATE(497)] = 2972, + [SMALL_STATE(498)] = 3047, + [SMALL_STATE(499)] = 3128, + [SMALL_STATE(500)] = 3201, + [SMALL_STATE(501)] = 3274, [SMALL_STATE(502)] = 3357, - [SMALL_STATE(503)] = 3438, - [SMALL_STATE(504)] = 3511, + [SMALL_STATE(503)] = 3434, + [SMALL_STATE(504)] = 3507, [SMALL_STATE(505)] = 3584, [SMALL_STATE(506)] = 3646, - [SMALL_STATE(507)] = 3712, + [SMALL_STATE(507)] = 3708, [SMALL_STATE(508)] = 3774, - [SMALL_STATE(509)] = 3836, - [SMALL_STATE(510)] = 3898, - [SMALL_STATE(511)] = 3960, - [SMALL_STATE(512)] = 4022, - [SMALL_STATE(513)] = 4084, - [SMALL_STATE(514)] = 4146, - [SMALL_STATE(515)] = 4208, - [SMALL_STATE(516)] = 4270, - [SMALL_STATE(517)] = 4332, - [SMALL_STATE(518)] = 4394, - [SMALL_STATE(519)] = 4456, - [SMALL_STATE(520)] = 4518, - [SMALL_STATE(521)] = 4580, - [SMALL_STATE(522)] = 4642, - [SMALL_STATE(523)] = 4704, - [SMALL_STATE(524)] = 4766, - [SMALL_STATE(525)] = 4828, - [SMALL_STATE(526)] = 4890, - [SMALL_STATE(527)] = 4952, - [SMALL_STATE(528)] = 5014, - [SMALL_STATE(529)] = 5076, - [SMALL_STATE(530)] = 5138, - [SMALL_STATE(531)] = 5204, - [SMALL_STATE(532)] = 5266, - [SMALL_STATE(533)] = 5330, - [SMALL_STATE(534)] = 5392, - [SMALL_STATE(535)] = 5454, - [SMALL_STATE(536)] = 5516, - [SMALL_STATE(537)] = 5578, - [SMALL_STATE(538)] = 5640, - [SMALL_STATE(539)] = 5702, - [SMALL_STATE(540)] = 5764, - [SMALL_STATE(541)] = 5826, - [SMALL_STATE(542)] = 5888, - [SMALL_STATE(543)] = 5950, - [SMALL_STATE(544)] = 6012, - [SMALL_STATE(545)] = 6074, - [SMALL_STATE(546)] = 6140, - [SMALL_STATE(547)] = 6202, - [SMALL_STATE(548)] = 6264, - [SMALL_STATE(549)] = 6326, - [SMALL_STATE(550)] = 6388, - [SMALL_STATE(551)] = 6450, - [SMALL_STATE(552)] = 6512, - [SMALL_STATE(553)] = 6574, - [SMALL_STATE(554)] = 6636, - [SMALL_STATE(555)] = 6698, - [SMALL_STATE(556)] = 6760, - [SMALL_STATE(557)] = 6822, - [SMALL_STATE(558)] = 6884, - [SMALL_STATE(559)] = 6946, - [SMALL_STATE(560)] = 7008, - [SMALL_STATE(561)] = 7070, - [SMALL_STATE(562)] = 7132, - [SMALL_STATE(563)] = 7198, - [SMALL_STATE(564)] = 7260, - [SMALL_STATE(565)] = 7322, - [SMALL_STATE(566)] = 7388, - [SMALL_STATE(567)] = 7450, - [SMALL_STATE(568)] = 7512, - [SMALL_STATE(569)] = 7574, - [SMALL_STATE(570)] = 7636, - [SMALL_STATE(571)] = 7698, - [SMALL_STATE(572)] = 7760, - [SMALL_STATE(573)] = 7822, - [SMALL_STATE(574)] = 7884, - [SMALL_STATE(575)] = 7946, - [SMALL_STATE(576)] = 8008, - [SMALL_STATE(577)] = 8070, - [SMALL_STATE(578)] = 8132, - [SMALL_STATE(579)] = 8194, - [SMALL_STATE(580)] = 8256, - [SMALL_STATE(581)] = 8318, - [SMALL_STATE(582)] = 8380, - [SMALL_STATE(583)] = 8442, - [SMALL_STATE(584)] = 8504, - [SMALL_STATE(585)] = 8566, - [SMALL_STATE(586)] = 8628, + [SMALL_STATE(509)] = 3840, + [SMALL_STATE(510)] = 3902, + [SMALL_STATE(511)] = 3968, + [SMALL_STATE(512)] = 4034, + [SMALL_STATE(513)] = 4100, + [SMALL_STATE(514)] = 4162, + [SMALL_STATE(515)] = 4224, + [SMALL_STATE(516)] = 4286, + [SMALL_STATE(517)] = 4348, + [SMALL_STATE(518)] = 4410, + [SMALL_STATE(519)] = 4472, + [SMALL_STATE(520)] = 4534, + [SMALL_STATE(521)] = 4596, + [SMALL_STATE(522)] = 4662, + [SMALL_STATE(523)] = 4724, + [SMALL_STATE(524)] = 4786, + [SMALL_STATE(525)] = 4848, + [SMALL_STATE(526)] = 4910, + [SMALL_STATE(527)] = 4972, + [SMALL_STATE(528)] = 5034, + [SMALL_STATE(529)] = 5096, + [SMALL_STATE(530)] = 5158, + [SMALL_STATE(531)] = 5220, + [SMALL_STATE(532)] = 5282, + [SMALL_STATE(533)] = 5344, + [SMALL_STATE(534)] = 5406, + [SMALL_STATE(535)] = 5468, + [SMALL_STATE(536)] = 5530, + [SMALL_STATE(537)] = 5594, + [SMALL_STATE(538)] = 5656, + [SMALL_STATE(539)] = 5718, + [SMALL_STATE(540)] = 5780, + [SMALL_STATE(541)] = 5842, + [SMALL_STATE(542)] = 5904, + [SMALL_STATE(543)] = 5966, + [SMALL_STATE(544)] = 6028, + [SMALL_STATE(545)] = 6090, + [SMALL_STATE(546)] = 6152, + [SMALL_STATE(547)] = 6214, + [SMALL_STATE(548)] = 6276, + [SMALL_STATE(549)] = 6338, + [SMALL_STATE(550)] = 6400, + [SMALL_STATE(551)] = 6462, + [SMALL_STATE(552)] = 6524, + [SMALL_STATE(553)] = 6586, + [SMALL_STATE(554)] = 6648, + [SMALL_STATE(555)] = 6710, + [SMALL_STATE(556)] = 6772, + [SMALL_STATE(557)] = 6834, + [SMALL_STATE(558)] = 6896, + [SMALL_STATE(559)] = 6958, + [SMALL_STATE(560)] = 7020, + [SMALL_STATE(561)] = 7082, + [SMALL_STATE(562)] = 7144, + [SMALL_STATE(563)] = 7206, + [SMALL_STATE(564)] = 7268, + [SMALL_STATE(565)] = 7330, + [SMALL_STATE(566)] = 7392, + [SMALL_STATE(567)] = 7454, + [SMALL_STATE(568)] = 7516, + [SMALL_STATE(569)] = 7578, + [SMALL_STATE(570)] = 7640, + [SMALL_STATE(571)] = 7702, + [SMALL_STATE(572)] = 7764, + [SMALL_STATE(573)] = 7826, + [SMALL_STATE(574)] = 7888, + [SMALL_STATE(575)] = 7950, + [SMALL_STATE(576)] = 8012, + [SMALL_STATE(577)] = 8074, + [SMALL_STATE(578)] = 8136, + [SMALL_STATE(579)] = 8198, + [SMALL_STATE(580)] = 8260, + [SMALL_STATE(581)] = 8322, + [SMALL_STATE(582)] = 8384, + [SMALL_STATE(583)] = 8446, + [SMALL_STATE(584)] = 8508, + [SMALL_STATE(585)] = 8570, + [SMALL_STATE(586)] = 8632, [SMALL_STATE(587)] = 8694, [SMALL_STATE(588)] = 8756, - [SMALL_STATE(589)] = 8818, - [SMALL_STATE(590)] = 8880, - [SMALL_STATE(591)] = 8942, + [SMALL_STATE(589)] = 8822, + [SMALL_STATE(590)] = 8884, + [SMALL_STATE(591)] = 8946, [SMALL_STATE(592)] = 9008, [SMALL_STATE(593)] = 9070, [SMALL_STATE(594)] = 9132, - [SMALL_STATE(595)] = 9198, - [SMALL_STATE(596)] = 9260, - [SMALL_STATE(597)] = 9322, + [SMALL_STATE(595)] = 9194, + [SMALL_STATE(596)] = 9256, + [SMALL_STATE(597)] = 9318, [SMALL_STATE(598)] = 9384, - [SMALL_STATE(599)] = 9449, + [SMALL_STATE(599)] = 9445, [SMALL_STATE(600)] = 9510, [SMALL_STATE(601)] = 9571, - [SMALL_STATE(602)] = 9636, - [SMALL_STATE(603)] = 9697, + [SMALL_STATE(602)] = 9632, + [SMALL_STATE(603)] = 9693, [SMALL_STATE(604)] = 9758, [SMALL_STATE(605)] = 9819, [SMALL_STATE(606)] = 9880, [SMALL_STATE(607)] = 9941, [SMALL_STATE(608)] = 10002, - [SMALL_STATE(609)] = 10067, - [SMALL_STATE(610)] = 10128, + [SMALL_STATE(609)] = 10063, + [SMALL_STATE(610)] = 10124, [SMALL_STATE(611)] = 10189, [SMALL_STATE(612)] = 10250, [SMALL_STATE(613)] = 10311, @@ -144759,158 +144878,158 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(615)] = 10433, [SMALL_STATE(616)] = 10494, [SMALL_STATE(617)] = 10555, - [SMALL_STATE(618)] = 10620, - [SMALL_STATE(619)] = 10685, - [SMALL_STATE(620)] = 10750, - [SMALL_STATE(621)] = 10811, - [SMALL_STATE(622)] = 10872, - [SMALL_STATE(623)] = 10933, - [SMALL_STATE(624)] = 10994, - [SMALL_STATE(625)] = 11061, - [SMALL_STATE(626)] = 11122, - [SMALL_STATE(627)] = 11187, - [SMALL_STATE(628)] = 11252, - [SMALL_STATE(629)] = 11319, - [SMALL_STATE(630)] = 11380, - [SMALL_STATE(631)] = 11441, - [SMALL_STATE(632)] = 11502, - [SMALL_STATE(633)] = 11563, - [SMALL_STATE(634)] = 11624, - [SMALL_STATE(635)] = 11685, - [SMALL_STATE(636)] = 11746, - [SMALL_STATE(637)] = 11807, - [SMALL_STATE(638)] = 11868, - [SMALL_STATE(639)] = 11929, - [SMALL_STATE(640)] = 11990, - [SMALL_STATE(641)] = 12051, - [SMALL_STATE(642)] = 12112, - [SMALL_STATE(643)] = 12173, - [SMALL_STATE(644)] = 12234, - [SMALL_STATE(645)] = 12295, - [SMALL_STATE(646)] = 12356, - [SMALL_STATE(647)] = 12417, + [SMALL_STATE(618)] = 10616, + [SMALL_STATE(619)] = 10681, + [SMALL_STATE(620)] = 10742, + [SMALL_STATE(621)] = 10803, + [SMALL_STATE(622)] = 10864, + [SMALL_STATE(623)] = 10925, + [SMALL_STATE(624)] = 10986, + [SMALL_STATE(625)] = 11051, + [SMALL_STATE(626)] = 11112, + [SMALL_STATE(627)] = 11173, + [SMALL_STATE(628)] = 11234, + [SMALL_STATE(629)] = 11295, + [SMALL_STATE(630)] = 11356, + [SMALL_STATE(631)] = 11423, + [SMALL_STATE(632)] = 11484, + [SMALL_STATE(633)] = 11545, + [SMALL_STATE(634)] = 11610, + [SMALL_STATE(635)] = 11675, + [SMALL_STATE(636)] = 11736, + [SMALL_STATE(637)] = 11797, + [SMALL_STATE(638)] = 11858, + [SMALL_STATE(639)] = 11919, + [SMALL_STATE(640)] = 11980, + [SMALL_STATE(641)] = 12047, + [SMALL_STATE(642)] = 12108, + [SMALL_STATE(643)] = 12169, + [SMALL_STATE(644)] = 12230, + [SMALL_STATE(645)] = 12291, + [SMALL_STATE(646)] = 12352, + [SMALL_STATE(647)] = 12413, [SMALL_STATE(648)] = 12478, [SMALL_STATE(649)] = 12539, [SMALL_STATE(650)] = 12600, - [SMALL_STATE(651)] = 12658, - [SMALL_STATE(652)] = 12722, - [SMALL_STATE(653)] = 12786, - [SMALL_STATE(654)] = 12846, - [SMALL_STATE(655)] = 12908, - [SMALL_STATE(656)] = 12966, - [SMALL_STATE(657)] = 13024, - [SMALL_STATE(658)] = 13088, - [SMALL_STATE(659)] = 13148, - [SMALL_STATE(660)] = 13210, - [SMALL_STATE(661)] = 13304, - [SMALL_STATE(662)] = 13364, - [SMALL_STATE(663)] = 13458, - [SMALL_STATE(664)] = 13518, - [SMALL_STATE(665)] = 13576, - [SMALL_STATE(666)] = 13636, - [SMALL_STATE(667)] = 13694, - [SMALL_STATE(668)] = 13752, - [SMALL_STATE(669)] = 13816, - [SMALL_STATE(670)] = 13880, - [SMALL_STATE(671)] = 13942, - [SMALL_STATE(672)] = 14002, + [SMALL_STATE(651)] = 12660, + [SMALL_STATE(652)] = 12718, + [SMALL_STATE(653)] = 12776, + [SMALL_STATE(654)] = 12838, + [SMALL_STATE(655)] = 12896, + [SMALL_STATE(656)] = 12956, + [SMALL_STATE(657)] = 13018, + [SMALL_STATE(658)] = 13082, + [SMALL_STATE(659)] = 13140, + [SMALL_STATE(660)] = 13234, + [SMALL_STATE(661)] = 13294, + [SMALL_STATE(662)] = 13358, + [SMALL_STATE(663)] = 13418, + [SMALL_STATE(664)] = 13480, + [SMALL_STATE(665)] = 13540, + [SMALL_STATE(666)] = 13604, + [SMALL_STATE(667)] = 13668, + [SMALL_STATE(668)] = 13730, + [SMALL_STATE(669)] = 13790, + [SMALL_STATE(670)] = 13848, + [SMALL_STATE(671)] = 13912, + [SMALL_STATE(672)] = 14006, [SMALL_STATE(673)] = 14064, [SMALL_STATE(674)] = 14119, [SMALL_STATE(675)] = 14174, [SMALL_STATE(676)] = 14229, [SMALL_STATE(677)] = 14284, - [SMALL_STATE(678)] = 14343, - [SMALL_STATE(679)] = 14398, - [SMALL_STATE(680)] = 14453, - [SMALL_STATE(681)] = 14508, - [SMALL_STATE(682)] = 14565, - [SMALL_STATE(683)] = 14620, - [SMALL_STATE(684)] = 14675, - [SMALL_STATE(685)] = 14730, - [SMALL_STATE(686)] = 14787, - [SMALL_STATE(687)] = 14844, - [SMALL_STATE(688)] = 14899, - [SMALL_STATE(689)] = 14954, - [SMALL_STATE(690)] = 15009, - [SMALL_STATE(691)] = 15064, - [SMALL_STATE(692)] = 15119, - [SMALL_STATE(693)] = 15174, - [SMALL_STATE(694)] = 15231, - [SMALL_STATE(695)] = 15288, - [SMALL_STATE(696)] = 15343, - [SMALL_STATE(697)] = 15398, - [SMALL_STATE(698)] = 15453, - [SMALL_STATE(699)] = 15508, - [SMALL_STATE(700)] = 15571, - [SMALL_STATE(701)] = 15626, - [SMALL_STATE(702)] = 15689, - [SMALL_STATE(703)] = 15744, - [SMALL_STATE(704)] = 15803, - [SMALL_STATE(705)] = 15858, - [SMALL_STATE(706)] = 15913, - [SMALL_STATE(707)] = 15976, - [SMALL_STATE(708)] = 16031, - [SMALL_STATE(709)] = 16094, - [SMALL_STATE(710)] = 16149, - [SMALL_STATE(711)] = 16204, - [SMALL_STATE(712)] = 16263, - [SMALL_STATE(713)] = 16318, - [SMALL_STATE(714)] = 16373, - [SMALL_STATE(715)] = 16428, - [SMALL_STATE(716)] = 16487, - [SMALL_STATE(717)] = 16542, - [SMALL_STATE(718)] = 16597, - [SMALL_STATE(719)] = 16652, - [SMALL_STATE(720)] = 16707, - [SMALL_STATE(721)] = 16764, - [SMALL_STATE(722)] = 16819, - [SMALL_STATE(723)] = 16874, - [SMALL_STATE(724)] = 16929, - [SMALL_STATE(725)] = 16988, - [SMALL_STATE(726)] = 17043, - [SMALL_STATE(727)] = 17098, - [SMALL_STATE(728)] = 17155, - [SMALL_STATE(729)] = 17210, - [SMALL_STATE(730)] = 17267, - [SMALL_STATE(731)] = 17322, - [SMALL_STATE(732)] = 17377, - [SMALL_STATE(733)] = 17434, - [SMALL_STATE(734)] = 17489, - [SMALL_STATE(735)] = 17544, - [SMALL_STATE(736)] = 17599, - [SMALL_STATE(737)] = 17656, - [SMALL_STATE(738)] = 17711, - [SMALL_STATE(739)] = 17766, - [SMALL_STATE(740)] = 17821, - [SMALL_STATE(741)] = 17876, - [SMALL_STATE(742)] = 17931, - [SMALL_STATE(743)] = 17986, - [SMALL_STATE(744)] = 18041, - [SMALL_STATE(745)] = 18096, - [SMALL_STATE(746)] = 18157, - [SMALL_STATE(747)] = 18212, - [SMALL_STATE(748)] = 18267, - [SMALL_STATE(749)] = 18322, - [SMALL_STATE(750)] = 18377, - [SMALL_STATE(751)] = 18432, - [SMALL_STATE(752)] = 18487, - [SMALL_STATE(753)] = 18542, - [SMALL_STATE(754)] = 18597, - [SMALL_STATE(755)] = 18652, - [SMALL_STATE(756)] = 18707, - [SMALL_STATE(757)] = 18762, - [SMALL_STATE(758)] = 18817, - [SMALL_STATE(759)] = 18872, - [SMALL_STATE(760)] = 18927, - [SMALL_STATE(761)] = 18982, - [SMALL_STATE(762)] = 19037, - [SMALL_STATE(763)] = 19092, - [SMALL_STATE(764)] = 19147, - [SMALL_STATE(765)] = 19202, - [SMALL_STATE(766)] = 19257, - [SMALL_STATE(767)] = 19312, - [SMALL_STATE(768)] = 19367, - [SMALL_STATE(769)] = 19422, + [SMALL_STATE(678)] = 14339, + [SMALL_STATE(679)] = 14394, + [SMALL_STATE(680)] = 14449, + [SMALL_STATE(681)] = 14506, + [SMALL_STATE(682)] = 14561, + [SMALL_STATE(683)] = 14616, + [SMALL_STATE(684)] = 14671, + [SMALL_STATE(685)] = 14726, + [SMALL_STATE(686)] = 14781, + [SMALL_STATE(687)] = 14836, + [SMALL_STATE(688)] = 14891, + [SMALL_STATE(689)] = 14946, + [SMALL_STATE(690)] = 15003, + [SMALL_STATE(691)] = 15058, + [SMALL_STATE(692)] = 15113, + [SMALL_STATE(693)] = 15168, + [SMALL_STATE(694)] = 15225, + [SMALL_STATE(695)] = 15280, + [SMALL_STATE(696)] = 15337, + [SMALL_STATE(697)] = 15394, + [SMALL_STATE(698)] = 15449, + [SMALL_STATE(699)] = 15506, + [SMALL_STATE(700)] = 15561, + [SMALL_STATE(701)] = 15618, + [SMALL_STATE(702)] = 15673, + [SMALL_STATE(703)] = 15728, + [SMALL_STATE(704)] = 15787, + [SMALL_STATE(705)] = 15842, + [SMALL_STATE(706)] = 15899, + [SMALL_STATE(707)] = 15954, + [SMALL_STATE(708)] = 16009, + [SMALL_STATE(709)] = 16068, + [SMALL_STATE(710)] = 16123, + [SMALL_STATE(711)] = 16178, + [SMALL_STATE(712)] = 16233, + [SMALL_STATE(713)] = 16294, + [SMALL_STATE(714)] = 16349, + [SMALL_STATE(715)] = 16406, + [SMALL_STATE(716)] = 16463, + [SMALL_STATE(717)] = 16518, + [SMALL_STATE(718)] = 16575, + [SMALL_STATE(719)] = 16630, + [SMALL_STATE(720)] = 16685, + [SMALL_STATE(721)] = 16740, + [SMALL_STATE(722)] = 16795, + [SMALL_STATE(723)] = 16850, + [SMALL_STATE(724)] = 16905, + [SMALL_STATE(725)] = 16960, + [SMALL_STATE(726)] = 17015, + [SMALL_STATE(727)] = 17070, + [SMALL_STATE(728)] = 17125, + [SMALL_STATE(729)] = 17182, + [SMALL_STATE(730)] = 17237, + [SMALL_STATE(731)] = 17292, + [SMALL_STATE(732)] = 17349, + [SMALL_STATE(733)] = 17406, + [SMALL_STATE(734)] = 17461, + [SMALL_STATE(735)] = 17516, + [SMALL_STATE(736)] = 17571, + [SMALL_STATE(737)] = 17626, + [SMALL_STATE(738)] = 17681, + [SMALL_STATE(739)] = 17736, + [SMALL_STATE(740)] = 17799, + [SMALL_STATE(741)] = 17854, + [SMALL_STATE(742)] = 17909, + [SMALL_STATE(743)] = 17968, + [SMALL_STATE(744)] = 18023, + [SMALL_STATE(745)] = 18078, + [SMALL_STATE(746)] = 18133, + [SMALL_STATE(747)] = 18188, + [SMALL_STATE(748)] = 18243, + [SMALL_STATE(749)] = 18298, + [SMALL_STATE(750)] = 18361, + [SMALL_STATE(751)] = 18416, + [SMALL_STATE(752)] = 18471, + [SMALL_STATE(753)] = 18526, + [SMALL_STATE(754)] = 18581, + [SMALL_STATE(755)] = 18636, + [SMALL_STATE(756)] = 18691, + [SMALL_STATE(757)] = 18746, + [SMALL_STATE(758)] = 18801, + [SMALL_STATE(759)] = 18860, + [SMALL_STATE(760)] = 18915, + [SMALL_STATE(761)] = 18970, + [SMALL_STATE(762)] = 19029, + [SMALL_STATE(763)] = 19084, + [SMALL_STATE(764)] = 19139, + [SMALL_STATE(765)] = 19194, + [SMALL_STATE(766)] = 19249, + [SMALL_STATE(767)] = 19304, + [SMALL_STATE(768)] = 19359, + [SMALL_STATE(769)] = 19414, [SMALL_STATE(770)] = 19477, [SMALL_STATE(771)] = 19532, [SMALL_STATE(772)] = 19587, @@ -144920,4989 +145039,4985 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(776)] = 19807, [SMALL_STATE(777)] = 19862, [SMALL_STATE(778)] = 19917, - [SMALL_STATE(779)] = 19974, - [SMALL_STATE(780)] = 20029, - [SMALL_STATE(781)] = 20084, - [SMALL_STATE(782)] = 20143, - [SMALL_STATE(783)] = 20198, - [SMALL_STATE(784)] = 20253, - [SMALL_STATE(785)] = 20308, - [SMALL_STATE(786)] = 20363, - [SMALL_STATE(787)] = 20418, - [SMALL_STATE(788)] = 20473, - [SMALL_STATE(789)] = 20528, - [SMALL_STATE(790)] = 20583, - [SMALL_STATE(791)] = 20638, - [SMALL_STATE(792)] = 20693, - [SMALL_STATE(793)] = 20748, - [SMALL_STATE(794)] = 20803, - [SMALL_STATE(795)] = 20858, - [SMALL_STATE(796)] = 20913, - [SMALL_STATE(797)] = 20968, - [SMALL_STATE(798)] = 21023, - [SMALL_STATE(799)] = 21078, - [SMALL_STATE(800)] = 21133, - [SMALL_STATE(801)] = 21188, - [SMALL_STATE(802)] = 21243, - [SMALL_STATE(803)] = 21298, - [SMALL_STATE(804)] = 21353, - [SMALL_STATE(805)] = 21408, - [SMALL_STATE(806)] = 21463, - [SMALL_STATE(807)] = 21518, - [SMALL_STATE(808)] = 21573, - [SMALL_STATE(809)] = 21628, - [SMALL_STATE(810)] = 21691, - [SMALL_STATE(811)] = 21746, - [SMALL_STATE(812)] = 21801, - [SMALL_STATE(813)] = 21864, + [SMALL_STATE(779)] = 19972, + [SMALL_STATE(780)] = 20027, + [SMALL_STATE(781)] = 20082, + [SMALL_STATE(782)] = 20137, + [SMALL_STATE(783)] = 20192, + [SMALL_STATE(784)] = 20247, + [SMALL_STATE(785)] = 20302, + [SMALL_STATE(786)] = 20357, + [SMALL_STATE(787)] = 20412, + [SMALL_STATE(788)] = 20467, + [SMALL_STATE(789)] = 20526, + [SMALL_STATE(790)] = 20581, + [SMALL_STATE(791)] = 20636, + [SMALL_STATE(792)] = 20691, + [SMALL_STATE(793)] = 20750, + [SMALL_STATE(794)] = 20805, + [SMALL_STATE(795)] = 20860, + [SMALL_STATE(796)] = 20915, + [SMALL_STATE(797)] = 20970, + [SMALL_STATE(798)] = 21025, + [SMALL_STATE(799)] = 21080, + [SMALL_STATE(800)] = 21135, + [SMALL_STATE(801)] = 21190, + [SMALL_STATE(802)] = 21245, + [SMALL_STATE(803)] = 21300, + [SMALL_STATE(804)] = 21355, + [SMALL_STATE(805)] = 21410, + [SMALL_STATE(806)] = 21465, + [SMALL_STATE(807)] = 21520, + [SMALL_STATE(808)] = 21583, + [SMALL_STATE(809)] = 21638, + [SMALL_STATE(810)] = 21701, + [SMALL_STATE(811)] = 21756, + [SMALL_STATE(812)] = 21811, + [SMALL_STATE(813)] = 21866, [SMALL_STATE(814)] = 21921, - [SMALL_STATE(815)] = 21980, - [SMALL_STATE(816)] = 22035, - [SMALL_STATE(817)] = 22090, - [SMALL_STATE(818)] = 22145, - [SMALL_STATE(819)] = 22202, - [SMALL_STATE(820)] = 22257, - [SMALL_STATE(821)] = 22312, - [SMALL_STATE(822)] = 22367, + [SMALL_STATE(815)] = 21976, + [SMALL_STATE(816)] = 22031, + [SMALL_STATE(817)] = 22086, + [SMALL_STATE(818)] = 22141, + [SMALL_STATE(819)] = 22196, + [SMALL_STATE(820)] = 22251, + [SMALL_STATE(821)] = 22306, + [SMALL_STATE(822)] = 22369, [SMALL_STATE(823)] = 22424, [SMALL_STATE(824)] = 22478, - [SMALL_STATE(825)] = 22532, - [SMALL_STATE(826)] = 22586, - [SMALL_STATE(827)] = 22640, - [SMALL_STATE(828)] = 22694, - [SMALL_STATE(829)] = 22748, - [SMALL_STATE(830)] = 22802, - [SMALL_STATE(831)] = 22856, - [SMALL_STATE(832)] = 22910, - [SMALL_STATE(833)] = 22968, - [SMALL_STATE(834)] = 23034, - [SMALL_STATE(835)] = 23088, - [SMALL_STATE(836)] = 23142, - [SMALL_STATE(837)] = 23200, - [SMALL_STATE(838)] = 23254, - [SMALL_STATE(839)] = 23320, - [SMALL_STATE(840)] = 23374, - [SMALL_STATE(841)] = 23428, - [SMALL_STATE(842)] = 23482, - [SMALL_STATE(843)] = 23538, - [SMALL_STATE(844)] = 23592, - [SMALL_STATE(845)] = 23646, - [SMALL_STATE(846)] = 23700, - [SMALL_STATE(847)] = 23754, - [SMALL_STATE(848)] = 23808, - [SMALL_STATE(849)] = 23862, - [SMALL_STATE(850)] = 23928, - [SMALL_STATE(851)] = 23982, - [SMALL_STATE(852)] = 24036, - [SMALL_STATE(853)] = 24102, - [SMALL_STATE(854)] = 24158, - [SMALL_STATE(855)] = 24214, - [SMALL_STATE(856)] = 24268, - [SMALL_STATE(857)] = 24322, - [SMALL_STATE(858)] = 24378, - [SMALL_STATE(859)] = 24432, - [SMALL_STATE(860)] = 24486, - [SMALL_STATE(861)] = 24540, - [SMALL_STATE(862)] = 24594, - [SMALL_STATE(863)] = 24648, - [SMALL_STATE(864)] = 24702, - [SMALL_STATE(865)] = 24756, - [SMALL_STATE(866)] = 24810, - [SMALL_STATE(867)] = 24864, - [SMALL_STATE(868)] = 24918, - [SMALL_STATE(869)] = 24972, - [SMALL_STATE(870)] = 25030, - [SMALL_STATE(871)] = 25084, - [SMALL_STATE(872)] = 25138, - [SMALL_STATE(873)] = 25192, - [SMALL_STATE(874)] = 25248, - [SMALL_STATE(875)] = 25302, - [SMALL_STATE(876)] = 25356, - [SMALL_STATE(877)] = 25410, - [SMALL_STATE(878)] = 25466, - [SMALL_STATE(879)] = 25532, - [SMALL_STATE(880)] = 25586, - [SMALL_STATE(881)] = 25642, - [SMALL_STATE(882)] = 25696, - [SMALL_STATE(883)] = 25752, - [SMALL_STATE(884)] = 25806, - [SMALL_STATE(885)] = 25872, - [SMALL_STATE(886)] = 25926, - [SMALL_STATE(887)] = 25992, - [SMALL_STATE(888)] = 26046, - [SMALL_STATE(889)] = 26102, - [SMALL_STATE(890)] = 26156, - [SMALL_STATE(891)] = 26212, + [SMALL_STATE(825)] = 22544, + [SMALL_STATE(826)] = 22602, + [SMALL_STATE(827)] = 22656, + [SMALL_STATE(828)] = 22722, + [SMALL_STATE(829)] = 22776, + [SMALL_STATE(830)] = 22842, + [SMALL_STATE(831)] = 22896, + [SMALL_STATE(832)] = 22950, + [SMALL_STATE(833)] = 23004, + [SMALL_STATE(834)] = 23058, + [SMALL_STATE(835)] = 23112, + [SMALL_STATE(836)] = 23166, + [SMALL_STATE(837)] = 23220, + [SMALL_STATE(838)] = 23274, + [SMALL_STATE(839)] = 23330, + [SMALL_STATE(840)] = 23386, + [SMALL_STATE(841)] = 23440, + [SMALL_STATE(842)] = 23506, + [SMALL_STATE(843)] = 23560, + [SMALL_STATE(844)] = 23614, + [SMALL_STATE(845)] = 23668, + [SMALL_STATE(846)] = 23722, + [SMALL_STATE(847)] = 23788, + [SMALL_STATE(848)] = 23854, + [SMALL_STATE(849)] = 23908, + [SMALL_STATE(850)] = 23962, + [SMALL_STATE(851)] = 24028, + [SMALL_STATE(852)] = 24082, + [SMALL_STATE(853)] = 24136, + [SMALL_STATE(854)] = 24190, + [SMALL_STATE(855)] = 24244, + [SMALL_STATE(856)] = 24300, + [SMALL_STATE(857)] = 24354, + [SMALL_STATE(858)] = 24408, + [SMALL_STATE(859)] = 24464, + [SMALL_STATE(860)] = 24518, + [SMALL_STATE(861)] = 24572, + [SMALL_STATE(862)] = 24626, + [SMALL_STATE(863)] = 24684, + [SMALL_STATE(864)] = 24738, + [SMALL_STATE(865)] = 24794, + [SMALL_STATE(866)] = 24848, + [SMALL_STATE(867)] = 24902, + [SMALL_STATE(868)] = 24956, + [SMALL_STATE(869)] = 25010, + [SMALL_STATE(870)] = 25064, + [SMALL_STATE(871)] = 25118, + [SMALL_STATE(872)] = 25172, + [SMALL_STATE(873)] = 25226, + [SMALL_STATE(874)] = 25280, + [SMALL_STATE(875)] = 25334, + [SMALL_STATE(876)] = 25388, + [SMALL_STATE(877)] = 25442, + [SMALL_STATE(878)] = 25496, + [SMALL_STATE(879)] = 25552, + [SMALL_STATE(880)] = 25606, + [SMALL_STATE(881)] = 25660, + [SMALL_STATE(882)] = 25718, + [SMALL_STATE(883)] = 25772, + [SMALL_STATE(884)] = 25826, + [SMALL_STATE(885)] = 25884, + [SMALL_STATE(886)] = 25942, + [SMALL_STATE(887)] = 25996, + [SMALL_STATE(888)] = 26050, + [SMALL_STATE(889)] = 26104, + [SMALL_STATE(890)] = 26162, + [SMALL_STATE(891)] = 26216, [SMALL_STATE(892)] = 26270, - [SMALL_STATE(893)] = 26324, - [SMALL_STATE(894)] = 26378, - [SMALL_STATE(895)] = 26436, - [SMALL_STATE(896)] = 26490, - [SMALL_STATE(897)] = 26544, - [SMALL_STATE(898)] = 26602, - [SMALL_STATE(899)] = 26656, - [SMALL_STATE(900)] = 26710, - [SMALL_STATE(901)] = 26764, - [SMALL_STATE(902)] = 26818, - [SMALL_STATE(903)] = 26884, - [SMALL_STATE(904)] = 26938, - [SMALL_STATE(905)] = 26992, - [SMALL_STATE(906)] = 27046, - [SMALL_STATE(907)] = 27100, - [SMALL_STATE(908)] = 27154, - [SMALL_STATE(909)] = 27220, - [SMALL_STATE(910)] = 27274, - [SMALL_STATE(911)] = 27328, - [SMALL_STATE(912)] = 27382, - [SMALL_STATE(913)] = 27448, - [SMALL_STATE(914)] = 27502, - [SMALL_STATE(915)] = 27556, - [SMALL_STATE(916)] = 27610, - [SMALL_STATE(917)] = 27664, - [SMALL_STATE(918)] = 27718, - [SMALL_STATE(919)] = 27772, - [SMALL_STATE(920)] = 27826, - [SMALL_STATE(921)] = 27880, - [SMALL_STATE(922)] = 27934, - [SMALL_STATE(923)] = 27988, - [SMALL_STATE(924)] = 28042, - [SMALL_STATE(925)] = 28100, - [SMALL_STATE(926)] = 28154, - [SMALL_STATE(927)] = 28208, - [SMALL_STATE(928)] = 28262, - [SMALL_STATE(929)] = 28316, - [SMALL_STATE(930)] = 28370, - [SMALL_STATE(931)] = 28424, - [SMALL_STATE(932)] = 28478, - [SMALL_STATE(933)] = 28532, - [SMALL_STATE(934)] = 28598, + [SMALL_STATE(893)] = 26326, + [SMALL_STATE(894)] = 26380, + [SMALL_STATE(895)] = 26434, + [SMALL_STATE(896)] = 26488, + [SMALL_STATE(897)] = 26542, + [SMALL_STATE(898)] = 26596, + [SMALL_STATE(899)] = 26650, + [SMALL_STATE(900)] = 26704, + [SMALL_STATE(901)] = 26770, + [SMALL_STATE(902)] = 26824, + [SMALL_STATE(903)] = 26878, + [SMALL_STATE(904)] = 26932, + [SMALL_STATE(905)] = 26986, + [SMALL_STATE(906)] = 27044, + [SMALL_STATE(907)] = 27098, + [SMALL_STATE(908)] = 27152, + [SMALL_STATE(909)] = 27206, + [SMALL_STATE(910)] = 27260, + [SMALL_STATE(911)] = 27314, + [SMALL_STATE(912)] = 27368, + [SMALL_STATE(913)] = 27422, + [SMALL_STATE(914)] = 27476, + [SMALL_STATE(915)] = 27532, + [SMALL_STATE(916)] = 27588, + [SMALL_STATE(917)] = 27642, + [SMALL_STATE(918)] = 27696, + [SMALL_STATE(919)] = 27750, + [SMALL_STATE(920)] = 27804, + [SMALL_STATE(921)] = 27858, + [SMALL_STATE(922)] = 27914, + [SMALL_STATE(923)] = 27970, + [SMALL_STATE(924)] = 28024, + [SMALL_STATE(925)] = 28090, + [SMALL_STATE(926)] = 28156, + [SMALL_STATE(927)] = 28210, + [SMALL_STATE(928)] = 28264, + [SMALL_STATE(929)] = 28318, + [SMALL_STATE(930)] = 28372, + [SMALL_STATE(931)] = 28438, + [SMALL_STATE(932)] = 28492, + [SMALL_STATE(933)] = 28546, + [SMALL_STATE(934)] = 28600, [SMALL_STATE(935)] = 28654, - [SMALL_STATE(936)] = 28707, - [SMALL_STATE(937)] = 28798, - [SMALL_STATE(938)] = 28879, - [SMALL_STATE(939)] = 28960, - [SMALL_STATE(940)] = 29041, - [SMALL_STATE(941)] = 29094, - [SMALL_STATE(942)] = 29185, - [SMALL_STATE(943)] = 29238, - [SMALL_STATE(944)] = 29291, - [SMALL_STATE(945)] = 29372, - [SMALL_STATE(946)] = 29425, - [SMALL_STATE(947)] = 29478, - [SMALL_STATE(948)] = 29533, - [SMALL_STATE(949)] = 29624, - [SMALL_STATE(950)] = 29683, - [SMALL_STATE(951)] = 29736, - [SMALL_STATE(952)] = 29827, - [SMALL_STATE(953)] = 29908, - [SMALL_STATE(954)] = 29971, - [SMALL_STATE(955)] = 30024, - [SMALL_STATE(956)] = 30079, - [SMALL_STATE(957)] = 30132, - [SMALL_STATE(958)] = 30187, - [SMALL_STATE(959)] = 30242, - [SMALL_STATE(960)] = 30295, - [SMALL_STATE(961)] = 30348, - [SMALL_STATE(962)] = 30403, - [SMALL_STATE(963)] = 30484, - [SMALL_STATE(964)] = 30537, - [SMALL_STATE(965)] = 30592, - [SMALL_STATE(966)] = 30645, - [SMALL_STATE(967)] = 30726, - [SMALL_STATE(968)] = 30781, - [SMALL_STATE(969)] = 30834, - [SMALL_STATE(970)] = 30915, - [SMALL_STATE(971)] = 30968, - [SMALL_STATE(972)] = 31021, - [SMALL_STATE(973)] = 31074, - [SMALL_STATE(974)] = 31127, - [SMALL_STATE(975)] = 31208, - [SMALL_STATE(976)] = 31289, - [SMALL_STATE(977)] = 31370, - [SMALL_STATE(978)] = 31451, - [SMALL_STATE(979)] = 31523, - [SMALL_STATE(980)] = 31595, - [SMALL_STATE(981)] = 31667, - [SMALL_STATE(982)] = 31739, - [SMALL_STATE(983)] = 31811, - [SMALL_STATE(984)] = 31883, - [SMALL_STATE(985)] = 31955, - [SMALL_STATE(986)] = 32027, - [SMALL_STATE(987)] = 32099, - [SMALL_STATE(988)] = 32171, - [SMALL_STATE(989)] = 32243, - [SMALL_STATE(990)] = 32315, - [SMALL_STATE(991)] = 32387, - [SMALL_STATE(992)] = 32459, - [SMALL_STATE(993)] = 32515, - [SMALL_STATE(994)] = 32587, - [SMALL_STATE(995)] = 32659, - [SMALL_STATE(996)] = 32715, - [SMALL_STATE(997)] = 32771, - [SMALL_STATE(998)] = 32827, - [SMALL_STATE(999)] = 32903, - [SMALL_STATE(1000)] = 32979, - [SMALL_STATE(1001)] = 33051, - [SMALL_STATE(1002)] = 33123, - [SMALL_STATE(1003)] = 33195, - [SMALL_STATE(1004)] = 33267, - [SMALL_STATE(1005)] = 33339, - [SMALL_STATE(1006)] = 33411, - [SMALL_STATE(1007)] = 33483, - [SMALL_STATE(1008)] = 33555, - [SMALL_STATE(1009)] = 33627, - [SMALL_STATE(1010)] = 33699, - [SMALL_STATE(1011)] = 33757, - [SMALL_STATE(1012)] = 33822, - [SMALL_STATE(1013)] = 33887, - [SMALL_STATE(1014)] = 33952, - [SMALL_STATE(1015)] = 34017, - [SMALL_STATE(1016)] = 34082, - [SMALL_STATE(1017)] = 34147, - [SMALL_STATE(1018)] = 34212, - [SMALL_STATE(1019)] = 34277, - [SMALL_STATE(1020)] = 34342, - [SMALL_STATE(1021)] = 34415, - [SMALL_STATE(1022)] = 34480, - [SMALL_STATE(1023)] = 34545, - [SMALL_STATE(1024)] = 34610, - [SMALL_STATE(1025)] = 34675, - [SMALL_STATE(1026)] = 34740, - [SMALL_STATE(1027)] = 34805, - [SMALL_STATE(1028)] = 34870, - [SMALL_STATE(1029)] = 34935, - [SMALL_STATE(1030)] = 35000, - [SMALL_STATE(1031)] = 35065, - [SMALL_STATE(1032)] = 35130, - [SMALL_STATE(1033)] = 35194, - [SMALL_STATE(1034)] = 35258, - [SMALL_STATE(1035)] = 35322, - [SMALL_STATE(1036)] = 35386, - [SMALL_STATE(1037)] = 35450, - [SMALL_STATE(1038)] = 35514, - [SMALL_STATE(1039)] = 35578, - [SMALL_STATE(1040)] = 35642, - [SMALL_STATE(1041)] = 35706, - [SMALL_STATE(1042)] = 35770, - [SMALL_STATE(1043)] = 35834, - [SMALL_STATE(1044)] = 35898, - [SMALL_STATE(1045)] = 35962, - [SMALL_STATE(1046)] = 36026, - [SMALL_STATE(1047)] = 36090, - [SMALL_STATE(1048)] = 36154, - [SMALL_STATE(1049)] = 36226, - [SMALL_STATE(1050)] = 36290, - [SMALL_STATE(1051)] = 36354, - [SMALL_STATE(1052)] = 36418, - [SMALL_STATE(1053)] = 36482, - [SMALL_STATE(1054)] = 36534, - [SMALL_STATE(1055)] = 36598, - [SMALL_STATE(1056)] = 36662, - [SMALL_STATE(1057)] = 36734, - [SMALL_STATE(1058)] = 36798, - [SMALL_STATE(1059)] = 36862, - [SMALL_STATE(1060)] = 36926, - [SMALL_STATE(1061)] = 36990, - [SMALL_STATE(1062)] = 37062, - [SMALL_STATE(1063)] = 37126, - [SMALL_STATE(1064)] = 37190, - [SMALL_STATE(1065)] = 37254, - [SMALL_STATE(1066)] = 37318, - [SMALL_STATE(1067)] = 37382, - [SMALL_STATE(1068)] = 37446, - [SMALL_STATE(1069)] = 37510, - [SMALL_STATE(1070)] = 37574, - [SMALL_STATE(1071)] = 37638, - [SMALL_STATE(1072)] = 37702, - [SMALL_STATE(1073)] = 37766, - [SMALL_STATE(1074)] = 37838, - [SMALL_STATE(1075)] = 37894, - [SMALL_STATE(1076)] = 37958, - [SMALL_STATE(1077)] = 38022, - [SMALL_STATE(1078)] = 38086, - [SMALL_STATE(1079)] = 38138, - [SMALL_STATE(1080)] = 38199, - [SMALL_STATE(1081)] = 38258, - [SMALL_STATE(1082)] = 38321, - [SMALL_STATE(1083)] = 38384, - [SMALL_STATE(1084)] = 38437, - [SMALL_STATE(1085)] = 38490, - [SMALL_STATE(1086)] = 38553, - [SMALL_STATE(1087)] = 38606, - [SMALL_STATE(1088)] = 38665, - [SMALL_STATE(1089)] = 38718, - [SMALL_STATE(1090)] = 38779, - [SMALL_STATE(1091)] = 38838, - [SMALL_STATE(1092)] = 38897, - [SMALL_STATE(1093)] = 38958, - [SMALL_STATE(1094)] = 39017, - [SMALL_STATE(1095)] = 39076, - [SMALL_STATE(1096)] = 39135, - [SMALL_STATE(1097)] = 39198, - [SMALL_STATE(1098)] = 39261, - [SMALL_STATE(1099)] = 39310, - [SMALL_STATE(1100)] = 39369, - [SMALL_STATE(1101)] = 39432, - [SMALL_STATE(1102)] = 39491, - [SMALL_STATE(1103)] = 39552, - [SMALL_STATE(1104)] = 39607, - [SMALL_STATE(1105)] = 39668, - [SMALL_STATE(1106)] = 39717, - [SMALL_STATE(1107)] = 39779, - [SMALL_STATE(1108)] = 39833, - [SMALL_STATE(1109)] = 39895, - [SMALL_STATE(1110)] = 39957, - [SMALL_STATE(1111)] = 40019, - [SMALL_STATE(1112)] = 40081, - [SMALL_STATE(1113)] = 40143, - [SMALL_STATE(1114)] = 40205, - [SMALL_STATE(1115)] = 40267, - [SMALL_STATE(1116)] = 40329, - [SMALL_STATE(1117)] = 40391, - [SMALL_STATE(1118)] = 40453, - [SMALL_STATE(1119)] = 40515, - [SMALL_STATE(1120)] = 40577, - [SMALL_STATE(1121)] = 40639, - [SMALL_STATE(1122)] = 40693, - [SMALL_STATE(1123)] = 40755, - [SMALL_STATE(1124)] = 40817, - [SMALL_STATE(1125)] = 40879, - [SMALL_STATE(1126)] = 40941, - [SMALL_STATE(1127)] = 40995, - [SMALL_STATE(1128)] = 41049, - [SMALL_STATE(1129)] = 41103, - [SMALL_STATE(1130)] = 41157, - [SMALL_STATE(1131)] = 41215, - [SMALL_STATE(1132)] = 41277, - [SMALL_STATE(1133)] = 41339, - [SMALL_STATE(1134)] = 41401, - [SMALL_STATE(1135)] = 41463, - [SMALL_STATE(1136)] = 41525, - [SMALL_STATE(1137)] = 41587, - [SMALL_STATE(1138)] = 41649, - [SMALL_STATE(1139)] = 41711, - [SMALL_STATE(1140)] = 41773, - [SMALL_STATE(1141)] = 41835, - [SMALL_STATE(1142)] = 41897, - [SMALL_STATE(1143)] = 41949, - [SMALL_STATE(1144)] = 42011, - [SMALL_STATE(1145)] = 42063, - [SMALL_STATE(1146)] = 42115, - [SMALL_STATE(1147)] = 42177, - [SMALL_STATE(1148)] = 42229, - [SMALL_STATE(1149)] = 42287, - [SMALL_STATE(1150)] = 42341, - [SMALL_STATE(1151)] = 42403, - [SMALL_STATE(1152)] = 42465, - [SMALL_STATE(1153)] = 42527, - [SMALL_STATE(1154)] = 42589, - [SMALL_STATE(1155)] = 42651, - [SMALL_STATE(1156)] = 42713, - [SMALL_STATE(1157)] = 42775, - [SMALL_STATE(1158)] = 42837, - [SMALL_STATE(1159)] = 42895, - [SMALL_STATE(1160)] = 42957, - [SMALL_STATE(1161)] = 43019, - [SMALL_STATE(1162)] = 43081, - [SMALL_STATE(1163)] = 43143, - [SMALL_STATE(1164)] = 43205, - [SMALL_STATE(1165)] = 43267, - [SMALL_STATE(1166)] = 43329, - [SMALL_STATE(1167)] = 43387, - [SMALL_STATE(1168)] = 43445, - [SMALL_STATE(1169)] = 43507, - [SMALL_STATE(1170)] = 43569, - [SMALL_STATE(1171)] = 43631, - [SMALL_STATE(1172)] = 43693, - [SMALL_STATE(1173)] = 43755, - [SMALL_STATE(1174)] = 43817, - [SMALL_STATE(1175)] = 43879, - [SMALL_STATE(1176)] = 43941, - [SMALL_STATE(1177)] = 44003, - [SMALL_STATE(1178)] = 44065, - [SMALL_STATE(1179)] = 44127, - [SMALL_STATE(1180)] = 44189, - [SMALL_STATE(1181)] = 44251, - [SMALL_STATE(1182)] = 44313, - [SMALL_STATE(1183)] = 44375, - [SMALL_STATE(1184)] = 44427, - [SMALL_STATE(1185)] = 44489, - [SMALL_STATE(1186)] = 44551, - [SMALL_STATE(1187)] = 44613, - [SMALL_STATE(1188)] = 44675, - [SMALL_STATE(1189)] = 44737, - [SMALL_STATE(1190)] = 44799, - [SMALL_STATE(1191)] = 44861, - [SMALL_STATE(1192)] = 44923, - [SMALL_STATE(1193)] = 44985, - [SMALL_STATE(1194)] = 45047, - [SMALL_STATE(1195)] = 45105, - [SMALL_STATE(1196)] = 45163, - [SMALL_STATE(1197)] = 45221, - [SMALL_STATE(1198)] = 45279, - [SMALL_STATE(1199)] = 45341, - [SMALL_STATE(1200)] = 45403, - [SMALL_STATE(1201)] = 45465, - [SMALL_STATE(1202)] = 45517, - [SMALL_STATE(1203)] = 45579, - [SMALL_STATE(1204)] = 45641, - [SMALL_STATE(1205)] = 45703, - [SMALL_STATE(1206)] = 45765, - [SMALL_STATE(1207)] = 45827, - [SMALL_STATE(1208)] = 45889, - [SMALL_STATE(1209)] = 45951, - [SMALL_STATE(1210)] = 46013, - [SMALL_STATE(1211)] = 46075, - [SMALL_STATE(1212)] = 46133, - [SMALL_STATE(1213)] = 46195, - [SMALL_STATE(1214)] = 46257, - [SMALL_STATE(1215)] = 46319, - [SMALL_STATE(1216)] = 46381, - [SMALL_STATE(1217)] = 46443, - [SMALL_STATE(1218)] = 46505, - [SMALL_STATE(1219)] = 46567, - [SMALL_STATE(1220)] = 46629, - [SMALL_STATE(1221)] = 46681, - [SMALL_STATE(1222)] = 46743, - [SMALL_STATE(1223)] = 46795, - [SMALL_STATE(1224)] = 46847, - [SMALL_STATE(1225)] = 46899, - [SMALL_STATE(1226)] = 46951, - [SMALL_STATE(1227)] = 47013, - [SMALL_STATE(1228)] = 47075, - [SMALL_STATE(1229)] = 47127, - [SMALL_STATE(1230)] = 47179, - [SMALL_STATE(1231)] = 47231, - [SMALL_STATE(1232)] = 47283, - [SMALL_STATE(1233)] = 47345, - [SMALL_STATE(1234)] = 47397, - [SMALL_STATE(1235)] = 47449, - [SMALL_STATE(1236)] = 47501, - [SMALL_STATE(1237)] = 47553, - [SMALL_STATE(1238)] = 47605, - [SMALL_STATE(1239)] = 47657, - [SMALL_STATE(1240)] = 47709, - [SMALL_STATE(1241)] = 47761, - [SMALL_STATE(1242)] = 47813, - [SMALL_STATE(1243)] = 47865, - [SMALL_STATE(1244)] = 47917, - [SMALL_STATE(1245)] = 47969, - [SMALL_STATE(1246)] = 48021, - [SMALL_STATE(1247)] = 48073, - [SMALL_STATE(1248)] = 48135, - [SMALL_STATE(1249)] = 48187, - [SMALL_STATE(1250)] = 48239, - [SMALL_STATE(1251)] = 48291, - [SMALL_STATE(1252)] = 48343, - [SMALL_STATE(1253)] = 48395, - [SMALL_STATE(1254)] = 48457, - [SMALL_STATE(1255)] = 48519, - [SMALL_STATE(1256)] = 48581, - [SMALL_STATE(1257)] = 48633, - [SMALL_STATE(1258)] = 48685, - [SMALL_STATE(1259)] = 48737, - [SMALL_STATE(1260)] = 48789, - [SMALL_STATE(1261)] = 48841, - [SMALL_STATE(1262)] = 48893, - [SMALL_STATE(1263)] = 48945, - [SMALL_STATE(1264)] = 48997, - [SMALL_STATE(1265)] = 49059, - [SMALL_STATE(1266)] = 49121, - [SMALL_STATE(1267)] = 49180, - [SMALL_STATE(1268)] = 49239, - [SMALL_STATE(1269)] = 49298, - [SMALL_STATE(1270)] = 49357, - [SMALL_STATE(1271)] = 49416, - [SMALL_STATE(1272)] = 49479, - [SMALL_STATE(1273)] = 49542, - [SMALL_STATE(1274)] = 49605, - [SMALL_STATE(1275)] = 49668, - [SMALL_STATE(1276)] = 49731, - [SMALL_STATE(1277)] = 49790, - [SMALL_STATE(1278)] = 49849, - [SMALL_STATE(1279)] = 49908, - [SMALL_STATE(1280)] = 49967, - [SMALL_STATE(1281)] = 50026, - [SMALL_STATE(1282)] = 50085, - [SMALL_STATE(1283)] = 50144, - [SMALL_STATE(1284)] = 50203, - [SMALL_STATE(1285)] = 50262, - [SMALL_STATE(1286)] = 50315, - [SMALL_STATE(1287)] = 50374, - [SMALL_STATE(1288)] = 50433, - [SMALL_STATE(1289)] = 50492, - [SMALL_STATE(1290)] = 50551, - [SMALL_STATE(1291)] = 50610, - [SMALL_STATE(1292)] = 50669, - [SMALL_STATE(1293)] = 50728, - [SMALL_STATE(1294)] = 50787, - [SMALL_STATE(1295)] = 50846, - [SMALL_STATE(1296)] = 50905, - [SMALL_STATE(1297)] = 50964, - [SMALL_STATE(1298)] = 51023, - [SMALL_STATE(1299)] = 51082, - [SMALL_STATE(1300)] = 51141, - [SMALL_STATE(1301)] = 51200, - [SMALL_STATE(1302)] = 51259, - [SMALL_STATE(1303)] = 51318, - [SMALL_STATE(1304)] = 51377, - [SMALL_STATE(1305)] = 51436, - [SMALL_STATE(1306)] = 51495, - [SMALL_STATE(1307)] = 51554, - [SMALL_STATE(1308)] = 51613, - [SMALL_STATE(1309)] = 51672, - [SMALL_STATE(1310)] = 51731, - [SMALL_STATE(1311)] = 51790, - [SMALL_STATE(1312)] = 51849, - [SMALL_STATE(1313)] = 51908, - [SMALL_STATE(1314)] = 51967, - [SMALL_STATE(1315)] = 52026, - [SMALL_STATE(1316)] = 52085, - [SMALL_STATE(1317)] = 52148, - [SMALL_STATE(1318)] = 52211, - [SMALL_STATE(1319)] = 52270, - [SMALL_STATE(1320)] = 52329, - [SMALL_STATE(1321)] = 52388, - [SMALL_STATE(1322)] = 52447, - [SMALL_STATE(1323)] = 52506, - [SMALL_STATE(1324)] = 52565, - [SMALL_STATE(1325)] = 52624, - [SMALL_STATE(1326)] = 52683, - [SMALL_STATE(1327)] = 52742, - [SMALL_STATE(1328)] = 52801, - [SMALL_STATE(1329)] = 52860, - [SMALL_STATE(1330)] = 52919, - [SMALL_STATE(1331)] = 52978, - [SMALL_STATE(1332)] = 53037, - [SMALL_STATE(1333)] = 53096, - [SMALL_STATE(1334)] = 53147, - [SMALL_STATE(1335)] = 53206, - [SMALL_STATE(1336)] = 53265, - [SMALL_STATE(1337)] = 53324, - [SMALL_STATE(1338)] = 53383, - [SMALL_STATE(1339)] = 53442, - [SMALL_STATE(1340)] = 53501, - [SMALL_STATE(1341)] = 53560, - [SMALL_STATE(1342)] = 53619, - [SMALL_STATE(1343)] = 53678, - [SMALL_STATE(1344)] = 53737, - [SMALL_STATE(1345)] = 53790, - [SMALL_STATE(1346)] = 53849, - [SMALL_STATE(1347)] = 53900, - [SMALL_STATE(1348)] = 53951, - [SMALL_STATE(1349)] = 54010, - [SMALL_STATE(1350)] = 54069, - [SMALL_STATE(1351)] = 54128, - [SMALL_STATE(1352)] = 54187, - [SMALL_STATE(1353)] = 54246, - [SMALL_STATE(1354)] = 54305, - [SMALL_STATE(1355)] = 54364, - [SMALL_STATE(1356)] = 54423, - [SMALL_STATE(1357)] = 54482, - [SMALL_STATE(1358)] = 54541, - [SMALL_STATE(1359)] = 54604, - [SMALL_STATE(1360)] = 54667, - [SMALL_STATE(1361)] = 54726, - [SMALL_STATE(1362)] = 54785, - [SMALL_STATE(1363)] = 54844, - [SMALL_STATE(1364)] = 54903, - [SMALL_STATE(1365)] = 54962, - [SMALL_STATE(1366)] = 55021, - [SMALL_STATE(1367)] = 55080, - [SMALL_STATE(1368)] = 55139, - [SMALL_STATE(1369)] = 55198, - [SMALL_STATE(1370)] = 55257, - [SMALL_STATE(1371)] = 55316, - [SMALL_STATE(1372)] = 55375, - [SMALL_STATE(1373)] = 55434, - [SMALL_STATE(1374)] = 55493, - [SMALL_STATE(1375)] = 55552, - [SMALL_STATE(1376)] = 55611, - [SMALL_STATE(1377)] = 55670, - [SMALL_STATE(1378)] = 55729, - [SMALL_STATE(1379)] = 55788, - [SMALL_STATE(1380)] = 55847, - [SMALL_STATE(1381)] = 55906, - [SMALL_STATE(1382)] = 55965, - [SMALL_STATE(1383)] = 56024, - [SMALL_STATE(1384)] = 56083, - [SMALL_STATE(1385)] = 56142, - [SMALL_STATE(1386)] = 56201, - [SMALL_STATE(1387)] = 56260, - [SMALL_STATE(1388)] = 56319, - [SMALL_STATE(1389)] = 56378, - [SMALL_STATE(1390)] = 56437, - [SMALL_STATE(1391)] = 56496, - [SMALL_STATE(1392)] = 56555, - [SMALL_STATE(1393)] = 56614, - [SMALL_STATE(1394)] = 56673, - [SMALL_STATE(1395)] = 56732, - [SMALL_STATE(1396)] = 56795, - [SMALL_STATE(1397)] = 56854, - [SMALL_STATE(1398)] = 56913, - [SMALL_STATE(1399)] = 56972, - [SMALL_STATE(1400)] = 57031, - [SMALL_STATE(1401)] = 57090, - [SMALL_STATE(1402)] = 57149, - [SMALL_STATE(1403)] = 57208, - [SMALL_STATE(1404)] = 57267, - [SMALL_STATE(1405)] = 57320, - [SMALL_STATE(1406)] = 57379, - [SMALL_STATE(1407)] = 57438, - [SMALL_STATE(1408)] = 57497, - [SMALL_STATE(1409)] = 57556, - [SMALL_STATE(1410)] = 57615, - [SMALL_STATE(1411)] = 57674, - [SMALL_STATE(1412)] = 57733, - [SMALL_STATE(1413)] = 57792, - [SMALL_STATE(1414)] = 57851, - [SMALL_STATE(1415)] = 57910, - [SMALL_STATE(1416)] = 57969, - [SMALL_STATE(1417)] = 58028, - [SMALL_STATE(1418)] = 58087, - [SMALL_STATE(1419)] = 58146, - [SMALL_STATE(1420)] = 58205, - [SMALL_STATE(1421)] = 58264, - [SMALL_STATE(1422)] = 58323, - [SMALL_STATE(1423)] = 58382, - [SMALL_STATE(1424)] = 58441, - [SMALL_STATE(1425)] = 58500, - [SMALL_STATE(1426)] = 58551, - [SMALL_STATE(1427)] = 58610, - [SMALL_STATE(1428)] = 58669, - [SMALL_STATE(1429)] = 58728, - [SMALL_STATE(1430)] = 58787, - [SMALL_STATE(1431)] = 58846, - [SMALL_STATE(1432)] = 58905, - [SMALL_STATE(1433)] = 58964, - [SMALL_STATE(1434)] = 59023, - [SMALL_STATE(1435)] = 59082, - [SMALL_STATE(1436)] = 59141, - [SMALL_STATE(1437)] = 59200, - [SMALL_STATE(1438)] = 59259, - [SMALL_STATE(1439)] = 59318, - [SMALL_STATE(1440)] = 59371, - [SMALL_STATE(1441)] = 59430, - [SMALL_STATE(1442)] = 59489, - [SMALL_STATE(1443)] = 59548, - [SMALL_STATE(1444)] = 59607, - [SMALL_STATE(1445)] = 59666, - [SMALL_STATE(1446)] = 59725, - [SMALL_STATE(1447)] = 59784, - [SMALL_STATE(1448)] = 59843, - [SMALL_STATE(1449)] = 59902, - [SMALL_STATE(1450)] = 59953, - [SMALL_STATE(1451)] = 60004, - [SMALL_STATE(1452)] = 60055, - [SMALL_STATE(1453)] = 60108, - [SMALL_STATE(1454)] = 60159, - [SMALL_STATE(1455)] = 60210, - [SMALL_STATE(1456)] = 60261, - [SMALL_STATE(1457)] = 60312, - [SMALL_STATE(1458)] = 60363, - [SMALL_STATE(1459)] = 60414, - [SMALL_STATE(1460)] = 60465, - [SMALL_STATE(1461)] = 60516, - [SMALL_STATE(1462)] = 60567, - [SMALL_STATE(1463)] = 60618, - [SMALL_STATE(1464)] = 60669, - [SMALL_STATE(1465)] = 60720, - [SMALL_STATE(1466)] = 60771, - [SMALL_STATE(1467)] = 60822, - [SMALL_STATE(1468)] = 60873, - [SMALL_STATE(1469)] = 60924, - [SMALL_STATE(1470)] = 60975, - [SMALL_STATE(1471)] = 61026, - [SMALL_STATE(1472)] = 61077, - [SMALL_STATE(1473)] = 61128, - [SMALL_STATE(1474)] = 61179, - [SMALL_STATE(1475)] = 61230, - [SMALL_STATE(1476)] = 61281, - [SMALL_STATE(1477)] = 61331, - [SMALL_STATE(1478)] = 61381, - [SMALL_STATE(1479)] = 61431, - [SMALL_STATE(1480)] = 61479, - [SMALL_STATE(1481)] = 61529, - [SMALL_STATE(1482)] = 61579, - [SMALL_STATE(1483)] = 61633, - [SMALL_STATE(1484)] = 61681, - [SMALL_STATE(1485)] = 61731, - [SMALL_STATE(1486)] = 61785, - [SMALL_STATE(1487)] = 61835, - [SMALL_STATE(1488)] = 61891, - [SMALL_STATE(1489)] = 61941, - [SMALL_STATE(1490)] = 61997, - [SMALL_STATE(1491)] = 62047, - [SMALL_STATE(1492)] = 62103, - [SMALL_STATE(1493)] = 62151, - [SMALL_STATE(1494)] = 62201, - [SMALL_STATE(1495)] = 62251, - [SMALL_STATE(1496)] = 62301, - [SMALL_STATE(1497)] = 62351, - [SMALL_STATE(1498)] = 62407, - [SMALL_STATE(1499)] = 62457, - [SMALL_STATE(1500)] = 62511, - [SMALL_STATE(1501)] = 62561, - [SMALL_STATE(1502)] = 62611, - [SMALL_STATE(1503)] = 62661, - [SMALL_STATE(1504)] = 62711, - [SMALL_STATE(1505)] = 62761, - [SMALL_STATE(1506)] = 62811, - [SMALL_STATE(1507)] = 62861, - [SMALL_STATE(1508)] = 62911, - [SMALL_STATE(1509)] = 62961, - [SMALL_STATE(1510)] = 63017, - [SMALL_STATE(1511)] = 63067, - [SMALL_STATE(1512)] = 63117, - [SMALL_STATE(1513)] = 63165, - [SMALL_STATE(1514)] = 63221, - [SMALL_STATE(1515)] = 63271, - [SMALL_STATE(1516)] = 63325, - [SMALL_STATE(1517)] = 63375, - [SMALL_STATE(1518)] = 63425, - [SMALL_STATE(1519)] = 63475, - [SMALL_STATE(1520)] = 63525, - [SMALL_STATE(1521)] = 63575, - [SMALL_STATE(1522)] = 63625, - [SMALL_STATE(1523)] = 63675, - [SMALL_STATE(1524)] = 63725, - [SMALL_STATE(1525)] = 63775, - [SMALL_STATE(1526)] = 63825, - [SMALL_STATE(1527)] = 63875, - [SMALL_STATE(1528)] = 63927, - [SMALL_STATE(1529)] = 63977, - [SMALL_STATE(1530)] = 64025, - [SMALL_STATE(1531)] = 64073, - [SMALL_STATE(1532)] = 64121, - [SMALL_STATE(1533)] = 64177, - [SMALL_STATE(1534)] = 64227, - [SMALL_STATE(1535)] = 64275, - [SMALL_STATE(1536)] = 64325, - [SMALL_STATE(1537)] = 64375, - [SMALL_STATE(1538)] = 64425, - [SMALL_STATE(1539)] = 64475, - [SMALL_STATE(1540)] = 64525, - [SMALL_STATE(1541)] = 64575, - [SMALL_STATE(1542)] = 64625, - [SMALL_STATE(1543)] = 64677, - [SMALL_STATE(1544)] = 64727, - [SMALL_STATE(1545)] = 64777, - [SMALL_STATE(1546)] = 64827, - [SMALL_STATE(1547)] = 64877, - [SMALL_STATE(1548)] = 64927, - [SMALL_STATE(1549)] = 64977, - [SMALL_STATE(1550)] = 65027, - [SMALL_STATE(1551)] = 65077, - [SMALL_STATE(1552)] = 65127, - [SMALL_STATE(1553)] = 65177, - [SMALL_STATE(1554)] = 65227, - [SMALL_STATE(1555)] = 65277, - [SMALL_STATE(1556)] = 65327, - [SMALL_STATE(1557)] = 65376, - [SMALL_STATE(1558)] = 65425, - [SMALL_STATE(1559)] = 65470, - [SMALL_STATE(1560)] = 65515, - [SMALL_STATE(1561)] = 65560, - [SMALL_STATE(1562)] = 65609, - [SMALL_STATE(1563)] = 65656, - [SMALL_STATE(1564)] = 65701, - [SMALL_STATE(1565)] = 65750, - [SMALL_STATE(1566)] = 65799, - [SMALL_STATE(1567)] = 65848, - [SMALL_STATE(1568)] = 65895, - [SMALL_STATE(1569)] = 65944, - [SMALL_STATE(1570)] = 65993, - [SMALL_STATE(1571)] = 66040, - [SMALL_STATE(1572)] = 66089, - [SMALL_STATE(1573)] = 66138, - [SMALL_STATE(1574)] = 66187, - [SMALL_STATE(1575)] = 66232, - [SMALL_STATE(1576)] = 66281, - [SMALL_STATE(1577)] = 66326, - [SMALL_STATE(1578)] = 66373, - [SMALL_STATE(1579)] = 66422, - [SMALL_STATE(1580)] = 66467, - [SMALL_STATE(1581)] = 66512, - [SMALL_STATE(1582)] = 66557, - [SMALL_STATE(1583)] = 66606, - [SMALL_STATE(1584)] = 66655, - [SMALL_STATE(1585)] = 66704, - [SMALL_STATE(1586)] = 66751, - [SMALL_STATE(1587)] = 66800, - [SMALL_STATE(1588)] = 66849, - [SMALL_STATE(1589)] = 66898, - [SMALL_STATE(1590)] = 66945, - [SMALL_STATE(1591)] = 66994, - [SMALL_STATE(1592)] = 67039, - [SMALL_STATE(1593)] = 67088, - [SMALL_STATE(1594)] = 67137, - [SMALL_STATE(1595)] = 67186, - [SMALL_STATE(1596)] = 67241, - [SMALL_STATE(1597)] = 67290, - [SMALL_STATE(1598)] = 67335, - [SMALL_STATE(1599)] = 67384, - [SMALL_STATE(1600)] = 67439, - [SMALL_STATE(1601)] = 67484, - [SMALL_STATE(1602)] = 67529, - [SMALL_STATE(1603)] = 67578, - [SMALL_STATE(1604)] = 67627, - [SMALL_STATE(1605)] = 67676, - [SMALL_STATE(1606)] = 67725, - [SMALL_STATE(1607)] = 67772, - [SMALL_STATE(1608)] = 67821, - [SMALL_STATE(1609)] = 67866, - [SMALL_STATE(1610)] = 67915, - [SMALL_STATE(1611)] = 67964, - [SMALL_STATE(1612)] = 68013, - [SMALL_STATE(1613)] = 68062, - [SMALL_STATE(1614)] = 68109, - [SMALL_STATE(1615)] = 68154, - [SMALL_STATE(1616)] = 68201, - [SMALL_STATE(1617)] = 68250, - [SMALL_STATE(1618)] = 68299, - [SMALL_STATE(1619)] = 68346, - [SMALL_STATE(1620)] = 68393, - [SMALL_STATE(1621)] = 68442, - [SMALL_STATE(1622)] = 68491, - [SMALL_STATE(1623)] = 68540, - [SMALL_STATE(1624)] = 68585, - [SMALL_STATE(1625)] = 68640, - [SMALL_STATE(1626)] = 68689, - [SMALL_STATE(1627)] = 68738, - [SMALL_STATE(1628)] = 68787, - [SMALL_STATE(1629)] = 68832, - [SMALL_STATE(1630)] = 68881, - [SMALL_STATE(1631)] = 68930, - [SMALL_STATE(1632)] = 68975, - [SMALL_STATE(1633)] = 69020, - [SMALL_STATE(1634)] = 69065, - [SMALL_STATE(1635)] = 69114, - [SMALL_STATE(1636)] = 69163, - [SMALL_STATE(1637)] = 69210, - [SMALL_STATE(1638)] = 69255, - [SMALL_STATE(1639)] = 69300, - [SMALL_STATE(1640)] = 69347, - [SMALL_STATE(1641)] = 69392, - [SMALL_STATE(1642)] = 69439, - [SMALL_STATE(1643)] = 69484, - [SMALL_STATE(1644)] = 69529, - [SMALL_STATE(1645)] = 69578, - [SMALL_STATE(1646)] = 69623, - [SMALL_STATE(1647)] = 69668, - [SMALL_STATE(1648)] = 69722, - [SMALL_STATE(1649)] = 69766, - [SMALL_STATE(1650)] = 69810, - [SMALL_STATE(1651)] = 69854, - [SMALL_STATE(1652)] = 69900, - [SMALL_STATE(1653)] = 69944, - [SMALL_STATE(1654)] = 69988, - [SMALL_STATE(1655)] = 70034, - [SMALL_STATE(1656)] = 70078, - [SMALL_STATE(1657)] = 70122, - [SMALL_STATE(1658)] = 70168, - [SMALL_STATE(1659)] = 70214, - [SMALL_STATE(1660)] = 70258, - [SMALL_STATE(1661)] = 70302, - [SMALL_STATE(1662)] = 70348, - [SMALL_STATE(1663)] = 70402, - [SMALL_STATE(1664)] = 70456, - [SMALL_STATE(1665)] = 70500, - [SMALL_STATE(1666)] = 70546, - [SMALL_STATE(1667)] = 70600, - [SMALL_STATE(1668)] = 70650, - [SMALL_STATE(1669)] = 70700, - [SMALL_STATE(1670)] = 70746, - [SMALL_STATE(1671)] = 70792, - [SMALL_STATE(1672)] = 70836, - [SMALL_STATE(1673)] = 70890, - [SMALL_STATE(1674)] = 70936, - [SMALL_STATE(1675)] = 70986, - [SMALL_STATE(1676)] = 71030, - [SMALL_STATE(1677)] = 71084, - [SMALL_STATE(1678)] = 71130, - [SMALL_STATE(1679)] = 71176, - [SMALL_STATE(1680)] = 71220, - [SMALL_STATE(1681)] = 71266, - [SMALL_STATE(1682)] = 71312, - [SMALL_STATE(1683)] = 71356, - [SMALL_STATE(1684)] = 71402, - [SMALL_STATE(1685)] = 71445, - [SMALL_STATE(1686)] = 71488, - [SMALL_STATE(1687)] = 71531, - [SMALL_STATE(1688)] = 71576, - [SMALL_STATE(1689)] = 71621, - [SMALL_STATE(1690)] = 71666, - [SMALL_STATE(1691)] = 71709, - [SMALL_STATE(1692)] = 71752, - [SMALL_STATE(1693)] = 71795, - [SMALL_STATE(1694)] = 71838, - [SMALL_STATE(1695)] = 71881, - [SMALL_STATE(1696)] = 71924, - [SMALL_STATE(1697)] = 71967, - [SMALL_STATE(1698)] = 72010, - [SMALL_STATE(1699)] = 72053, - [SMALL_STATE(1700)] = 72096, - [SMALL_STATE(1701)] = 72139, - [SMALL_STATE(1702)] = 72182, - [SMALL_STATE(1703)] = 72225, - [SMALL_STATE(1704)] = 72268, - [SMALL_STATE(1705)] = 72311, - [SMALL_STATE(1706)] = 72354, - [SMALL_STATE(1707)] = 72397, - [SMALL_STATE(1708)] = 72440, - [SMALL_STATE(1709)] = 72483, - [SMALL_STATE(1710)] = 72526, - [SMALL_STATE(1711)] = 72569, - [SMALL_STATE(1712)] = 72614, - [SMALL_STATE(1713)] = 72657, - [SMALL_STATE(1714)] = 72700, - [SMALL_STATE(1715)] = 72743, - [SMALL_STATE(1716)] = 72788, - [SMALL_STATE(1717)] = 72831, - [SMALL_STATE(1718)] = 72874, - [SMALL_STATE(1719)] = 72916, - [SMALL_STATE(1720)] = 72958, - [SMALL_STATE(1721)] = 73000, - [SMALL_STATE(1722)] = 73042, - [SMALL_STATE(1723)] = 73084, - [SMALL_STATE(1724)] = 73126, - [SMALL_STATE(1725)] = 73168, - [SMALL_STATE(1726)] = 73210, - [SMALL_STATE(1727)] = 73252, - [SMALL_STATE(1728)] = 73296, - [SMALL_STATE(1729)] = 73338, - [SMALL_STATE(1730)] = 73380, - [SMALL_STATE(1731)] = 73422, - [SMALL_STATE(1732)] = 73466, - [SMALL_STATE(1733)] = 73508, - [SMALL_STATE(1734)] = 73550, - [SMALL_STATE(1735)] = 73592, - [SMALL_STATE(1736)] = 73634, - [SMALL_STATE(1737)] = 73676, - [SMALL_STATE(1738)] = 73718, - [SMALL_STATE(1739)] = 73759, - [SMALL_STATE(1740)] = 73800, - [SMALL_STATE(1741)] = 73826, - [SMALL_STATE(1742)] = 73859, - [SMALL_STATE(1743)] = 73880, - [SMALL_STATE(1744)] = 73913, - [SMALL_STATE(1745)] = 73946, - [SMALL_STATE(1746)] = 73979, - [SMALL_STATE(1747)] = 74012, - [SMALL_STATE(1748)] = 74045, - [SMALL_STATE(1749)] = 74078, - [SMALL_STATE(1750)] = 74097, - [SMALL_STATE(1751)] = 74130, - [SMALL_STATE(1752)] = 74163, - [SMALL_STATE(1753)] = 74196, - [SMALL_STATE(1754)] = 74217, - [SMALL_STATE(1755)] = 74238, - [SMALL_STATE(1756)] = 74271, - [SMALL_STATE(1757)] = 74304, - [SMALL_STATE(1758)] = 74325, - [SMALL_STATE(1759)] = 74346, - [SMALL_STATE(1760)] = 74367, - [SMALL_STATE(1761)] = 74388, - [SMALL_STATE(1762)] = 74409, - [SMALL_STATE(1763)] = 74430, - [SMALL_STATE(1764)] = 74451, - [SMALL_STATE(1765)] = 74472, - [SMALL_STATE(1766)] = 74493, - [SMALL_STATE(1767)] = 74514, - [SMALL_STATE(1768)] = 74535, - [SMALL_STATE(1769)] = 74556, - [SMALL_STATE(1770)] = 74577, - [SMALL_STATE(1771)] = 74598, - [SMALL_STATE(1772)] = 74619, - [SMALL_STATE(1773)] = 74640, - [SMALL_STATE(1774)] = 74661, - [SMALL_STATE(1775)] = 74682, - [SMALL_STATE(1776)] = 74703, - [SMALL_STATE(1777)] = 74724, - [SMALL_STATE(1778)] = 74745, - [SMALL_STATE(1779)] = 74766, - [SMALL_STATE(1780)] = 74787, - [SMALL_STATE(1781)] = 74808, - [SMALL_STATE(1782)] = 74829, - [SMALL_STATE(1783)] = 74850, - [SMALL_STATE(1784)] = 74871, - [SMALL_STATE(1785)] = 74892, - [SMALL_STATE(1786)] = 74913, - [SMALL_STATE(1787)] = 74934, - [SMALL_STATE(1788)] = 74955, - [SMALL_STATE(1789)] = 74976, - [SMALL_STATE(1790)] = 74997, - [SMALL_STATE(1791)] = 75018, - [SMALL_STATE(1792)] = 75039, - [SMALL_STATE(1793)] = 75067, - [SMALL_STATE(1794)] = 75083, - [SMALL_STATE(1795)] = 75099, - [SMALL_STATE(1796)] = 75115, - [SMALL_STATE(1797)] = 75131, - [SMALL_STATE(1798)] = 75147, - [SMALL_STATE(1799)] = 75175, - [SMALL_STATE(1800)] = 75191, - [SMALL_STATE(1801)] = 75219, - [SMALL_STATE(1802)] = 75235, - [SMALL_STATE(1803)] = 75263, - [SMALL_STATE(1804)] = 75279, - [SMALL_STATE(1805)] = 75295, - [SMALL_STATE(1806)] = 75311, - [SMALL_STATE(1807)] = 75327, - [SMALL_STATE(1808)] = 75343, - [SMALL_STATE(1809)] = 75359, - [SMALL_STATE(1810)] = 75385, - [SMALL_STATE(1811)] = 75415, - [SMALL_STATE(1812)] = 75445, - [SMALL_STATE(1813)] = 75461, - [SMALL_STATE(1814)] = 75489, - [SMALL_STATE(1815)] = 75519, - [SMALL_STATE(1816)] = 75549, - [SMALL_STATE(1817)] = 75577, - [SMALL_STATE(1818)] = 75598, - [SMALL_STATE(1819)] = 75619, - [SMALL_STATE(1820)] = 75646, - [SMALL_STATE(1821)] = 75673, - [SMALL_STATE(1822)] = 75696, - [SMALL_STATE(1823)] = 75717, - [SMALL_STATE(1824)] = 75744, - [SMALL_STATE(1825)] = 75767, - [SMALL_STATE(1826)] = 75794, - [SMALL_STATE(1827)] = 75821, - [SMALL_STATE(1828)] = 75848, - [SMALL_STATE(1829)] = 75866, - [SMALL_STATE(1830)] = 75884, - [SMALL_STATE(1831)] = 75902, - [SMALL_STATE(1832)] = 75920, - [SMALL_STATE(1833)] = 75938, - [SMALL_STATE(1834)] = 75956, - [SMALL_STATE(1835)] = 75974, - [SMALL_STATE(1836)] = 75992, - [SMALL_STATE(1837)] = 76010, - [SMALL_STATE(1838)] = 76028, - [SMALL_STATE(1839)] = 76046, - [SMALL_STATE(1840)] = 76064, - [SMALL_STATE(1841)] = 76082, - [SMALL_STATE(1842)] = 76100, - [SMALL_STATE(1843)] = 76118, - [SMALL_STATE(1844)] = 76136, - [SMALL_STATE(1845)] = 76154, - [SMALL_STATE(1846)] = 76172, - [SMALL_STATE(1847)] = 76190, - [SMALL_STATE(1848)] = 76208, - [SMALL_STATE(1849)] = 76226, - [SMALL_STATE(1850)] = 76244, - [SMALL_STATE(1851)] = 76262, - [SMALL_STATE(1852)] = 76280, - [SMALL_STATE(1853)] = 76298, - [SMALL_STATE(1854)] = 76316, - [SMALL_STATE(1855)] = 76334, - [SMALL_STATE(1856)] = 76352, - [SMALL_STATE(1857)] = 76370, - [SMALL_STATE(1858)] = 76388, - [SMALL_STATE(1859)] = 76406, - [SMALL_STATE(1860)] = 76424, - [SMALL_STATE(1861)] = 76442, - [SMALL_STATE(1862)] = 76460, - [SMALL_STATE(1863)] = 76478, - [SMALL_STATE(1864)] = 76496, - [SMALL_STATE(1865)] = 76514, - [SMALL_STATE(1866)] = 76532, - [SMALL_STATE(1867)] = 76550, - [SMALL_STATE(1868)] = 76568, - [SMALL_STATE(1869)] = 76586, - [SMALL_STATE(1870)] = 76604, - [SMALL_STATE(1871)] = 76622, - [SMALL_STATE(1872)] = 76640, - [SMALL_STATE(1873)] = 76658, - [SMALL_STATE(1874)] = 76676, - [SMALL_STATE(1875)] = 76694, - [SMALL_STATE(1876)] = 76712, - [SMALL_STATE(1877)] = 76730, - [SMALL_STATE(1878)] = 76748, - [SMALL_STATE(1879)] = 76766, - [SMALL_STATE(1880)] = 76784, - [SMALL_STATE(1881)] = 76802, - [SMALL_STATE(1882)] = 76820, - [SMALL_STATE(1883)] = 76838, - [SMALL_STATE(1884)] = 76856, - [SMALL_STATE(1885)] = 76874, - [SMALL_STATE(1886)] = 76892, - [SMALL_STATE(1887)] = 76910, - [SMALL_STATE(1888)] = 76928, - [SMALL_STATE(1889)] = 76946, - [SMALL_STATE(1890)] = 76964, - [SMALL_STATE(1891)] = 76982, - [SMALL_STATE(1892)] = 77000, - [SMALL_STATE(1893)] = 77018, - [SMALL_STATE(1894)] = 77036, - [SMALL_STATE(1895)] = 77054, - [SMALL_STATE(1896)] = 77072, - [SMALL_STATE(1897)] = 77090, - [SMALL_STATE(1898)] = 77108, - [SMALL_STATE(1899)] = 77126, - [SMALL_STATE(1900)] = 77144, - [SMALL_STATE(1901)] = 77162, - [SMALL_STATE(1902)] = 77180, - [SMALL_STATE(1903)] = 77198, - [SMALL_STATE(1904)] = 77216, - [SMALL_STATE(1905)] = 77234, - [SMALL_STATE(1906)] = 77252, - [SMALL_STATE(1907)] = 77270, - [SMALL_STATE(1908)] = 77288, - [SMALL_STATE(1909)] = 77306, - [SMALL_STATE(1910)] = 77324, - [SMALL_STATE(1911)] = 77342, - [SMALL_STATE(1912)] = 77360, - [SMALL_STATE(1913)] = 77378, - [SMALL_STATE(1914)] = 77396, - [SMALL_STATE(1915)] = 77414, - [SMALL_STATE(1916)] = 77432, - [SMALL_STATE(1917)] = 77450, - [SMALL_STATE(1918)] = 77468, - [SMALL_STATE(1919)] = 77486, - [SMALL_STATE(1920)] = 77507, - [SMALL_STATE(1921)] = 77528, - [SMALL_STATE(1922)] = 77549, - [SMALL_STATE(1923)] = 77570, - [SMALL_STATE(1924)] = 77591, - [SMALL_STATE(1925)] = 77612, - [SMALL_STATE(1926)] = 77633, - [SMALL_STATE(1927)] = 77654, - [SMALL_STATE(1928)] = 77675, - [SMALL_STATE(1929)] = 77696, - [SMALL_STATE(1930)] = 77717, - [SMALL_STATE(1931)] = 77738, - [SMALL_STATE(1932)] = 77759, - [SMALL_STATE(1933)] = 77780, - [SMALL_STATE(1934)] = 77801, - [SMALL_STATE(1935)] = 77822, - [SMALL_STATE(1936)] = 77843, - [SMALL_STATE(1937)] = 77864, - [SMALL_STATE(1938)] = 77885, - [SMALL_STATE(1939)] = 77906, - [SMALL_STATE(1940)] = 77927, - [SMALL_STATE(1941)] = 77944, - [SMALL_STATE(1942)] = 77965, - [SMALL_STATE(1943)] = 77986, - [SMALL_STATE(1944)] = 78007, - [SMALL_STATE(1945)] = 78028, - [SMALL_STATE(1946)] = 78049, - [SMALL_STATE(1947)] = 78070, - [SMALL_STATE(1948)] = 78091, - [SMALL_STATE(1949)] = 78112, - [SMALL_STATE(1950)] = 78133, - [SMALL_STATE(1951)] = 78158, - [SMALL_STATE(1952)] = 78179, - [SMALL_STATE(1953)] = 78200, - [SMALL_STATE(1954)] = 78221, - [SMALL_STATE(1955)] = 78242, - [SMALL_STATE(1956)] = 78263, - [SMALL_STATE(1957)] = 78284, - [SMALL_STATE(1958)] = 78305, - [SMALL_STATE(1959)] = 78326, - [SMALL_STATE(1960)] = 78347, - [SMALL_STATE(1961)] = 78368, - [SMALL_STATE(1962)] = 78389, - [SMALL_STATE(1963)] = 78410, - [SMALL_STATE(1964)] = 78435, - [SMALL_STATE(1965)] = 78456, - [SMALL_STATE(1966)] = 78477, - [SMALL_STATE(1967)] = 78498, - [SMALL_STATE(1968)] = 78519, - [SMALL_STATE(1969)] = 78540, - [SMALL_STATE(1970)] = 78561, - [SMALL_STATE(1971)] = 78582, - [SMALL_STATE(1972)] = 78603, - [SMALL_STATE(1973)] = 78628, - [SMALL_STATE(1974)] = 78649, - [SMALL_STATE(1975)] = 78666, - [SMALL_STATE(1976)] = 78687, - [SMALL_STATE(1977)] = 78708, - [SMALL_STATE(1978)] = 78733, - [SMALL_STATE(1979)] = 78754, - [SMALL_STATE(1980)] = 78775, - [SMALL_STATE(1981)] = 78796, - [SMALL_STATE(1982)] = 78821, - [SMALL_STATE(1983)] = 78846, - [SMALL_STATE(1984)] = 78867, - [SMALL_STATE(1985)] = 78888, - [SMALL_STATE(1986)] = 78913, - [SMALL_STATE(1987)] = 78934, - [SMALL_STATE(1988)] = 78959, - [SMALL_STATE(1989)] = 78976, - [SMALL_STATE(1990)] = 78997, - [SMALL_STATE(1991)] = 79022, - [SMALL_STATE(1992)] = 79043, - [SMALL_STATE(1993)] = 79064, - [SMALL_STATE(1994)] = 79085, - [SMALL_STATE(1995)] = 79106, - [SMALL_STATE(1996)] = 79127, - [SMALL_STATE(1997)] = 79152, - [SMALL_STATE(1998)] = 79173, - [SMALL_STATE(1999)] = 79194, - [SMALL_STATE(2000)] = 79215, - [SMALL_STATE(2001)] = 79236, - [SMALL_STATE(2002)] = 79258, - [SMALL_STATE(2003)] = 79280, - [SMALL_STATE(2004)] = 79302, - [SMALL_STATE(2005)] = 79316, - [SMALL_STATE(2006)] = 79338, - [SMALL_STATE(2007)] = 79360, - [SMALL_STATE(2008)] = 79382, - [SMALL_STATE(2009)] = 79396, - [SMALL_STATE(2010)] = 79418, - [SMALL_STATE(2011)] = 79440, - [SMALL_STATE(2012)] = 79462, - [SMALL_STATE(2013)] = 79476, - [SMALL_STATE(2014)] = 79498, - [SMALL_STATE(2015)] = 79509, - [SMALL_STATE(2016)] = 79520, - [SMALL_STATE(2017)] = 79531, - [SMALL_STATE(2018)] = 79542, - [SMALL_STATE(2019)] = 79553, - [SMALL_STATE(2020)] = 79564, - [SMALL_STATE(2021)] = 79575, - [SMALL_STATE(2022)] = 79586, - [SMALL_STATE(2023)] = 79597, - [SMALL_STATE(2024)] = 79608, - [SMALL_STATE(2025)] = 79619, - [SMALL_STATE(2026)] = 79630, - [SMALL_STATE(2027)] = 79645, - [SMALL_STATE(2028)] = 79656, - [SMALL_STATE(2029)] = 79667, - [SMALL_STATE(2030)] = 79678, - [SMALL_STATE(2031)] = 79689, - [SMALL_STATE(2032)] = 79700, - [SMALL_STATE(2033)] = 79708, - [SMALL_STATE(2034)] = 79718, - [SMALL_STATE(2035)] = 79728, - [SMALL_STATE(2036)] = 79738, - [SMALL_STATE(2037)] = 79754, - [SMALL_STATE(2038)] = 79766, - [SMALL_STATE(2039)] = 79780, - [SMALL_STATE(2040)] = 79792, - [SMALL_STATE(2041)] = 79808, - [SMALL_STATE(2042)] = 79820, - [SMALL_STATE(2043)] = 79836, - [SMALL_STATE(2044)] = 79852, - [SMALL_STATE(2045)] = 79868, - [SMALL_STATE(2046)] = 79884, - [SMALL_STATE(2047)] = 79900, - [SMALL_STATE(2048)] = 79916, - [SMALL_STATE(2049)] = 79932, - [SMALL_STATE(2050)] = 79948, - [SMALL_STATE(2051)] = 79964, - [SMALL_STATE(2052)] = 79978, - [SMALL_STATE(2053)] = 79994, - [SMALL_STATE(2054)] = 80010, - [SMALL_STATE(2055)] = 80022, - [SMALL_STATE(2056)] = 80038, - [SMALL_STATE(2057)] = 80054, - [SMALL_STATE(2058)] = 80070, - [SMALL_STATE(2059)] = 80086, - [SMALL_STATE(2060)] = 80102, - [SMALL_STATE(2061)] = 80118, - [SMALL_STATE(2062)] = 80134, - [SMALL_STATE(2063)] = 80150, - [SMALL_STATE(2064)] = 80166, - [SMALL_STATE(2065)] = 80176, - [SMALL_STATE(2066)] = 80186, - [SMALL_STATE(2067)] = 80199, - [SMALL_STATE(2068)] = 80212, - [SMALL_STATE(2069)] = 80225, - [SMALL_STATE(2070)] = 80238, - [SMALL_STATE(2071)] = 80251, - [SMALL_STATE(2072)] = 80264, - [SMALL_STATE(2073)] = 80275, - [SMALL_STATE(2074)] = 80284, - [SMALL_STATE(2075)] = 80293, - [SMALL_STATE(2076)] = 80306, - [SMALL_STATE(2077)] = 80315, - [SMALL_STATE(2078)] = 80326, - [SMALL_STATE(2079)] = 80337, - [SMALL_STATE(2080)] = 80350, - [SMALL_STATE(2081)] = 80361, - [SMALL_STATE(2082)] = 80374, - [SMALL_STATE(2083)] = 80387, - [SMALL_STATE(2084)] = 80398, - [SMALL_STATE(2085)] = 80411, - [SMALL_STATE(2086)] = 80422, - [SMALL_STATE(2087)] = 80433, - [SMALL_STATE(2088)] = 80444, - [SMALL_STATE(2089)] = 80457, - [SMALL_STATE(2090)] = 80470, - [SMALL_STATE(2091)] = 80479, - [SMALL_STATE(2092)] = 80492, - [SMALL_STATE(2093)] = 80502, - [SMALL_STATE(2094)] = 80512, - [SMALL_STATE(2095)] = 80522, - [SMALL_STATE(2096)] = 80532, - [SMALL_STATE(2097)] = 80542, - [SMALL_STATE(2098)] = 80552, - [SMALL_STATE(2099)] = 80562, - [SMALL_STATE(2100)] = 80572, - [SMALL_STATE(2101)] = 80582, - [SMALL_STATE(2102)] = 80592, - [SMALL_STATE(2103)] = 80602, - [SMALL_STATE(2104)] = 80612, - [SMALL_STATE(2105)] = 80622, - [SMALL_STATE(2106)] = 80632, - [SMALL_STATE(2107)] = 80642, - [SMALL_STATE(2108)] = 80652, - [SMALL_STATE(2109)] = 80662, - [SMALL_STATE(2110)] = 80672, - [SMALL_STATE(2111)] = 80682, - [SMALL_STATE(2112)] = 80692, - [SMALL_STATE(2113)] = 80702, - [SMALL_STATE(2114)] = 80712, - [SMALL_STATE(2115)] = 80722, - [SMALL_STATE(2116)] = 80732, - [SMALL_STATE(2117)] = 80742, - [SMALL_STATE(2118)] = 80752, - [SMALL_STATE(2119)] = 80762, - [SMALL_STATE(2120)] = 80770, - [SMALL_STATE(2121)] = 80780, - [SMALL_STATE(2122)] = 80790, - [SMALL_STATE(2123)] = 80800, - [SMALL_STATE(2124)] = 80807, - [SMALL_STATE(2125)] = 80814, - [SMALL_STATE(2126)] = 80821, - [SMALL_STATE(2127)] = 80828, - [SMALL_STATE(2128)] = 80835, - [SMALL_STATE(2129)] = 80842, - [SMALL_STATE(2130)] = 80849, - [SMALL_STATE(2131)] = 80856, - [SMALL_STATE(2132)] = 80863, - [SMALL_STATE(2133)] = 80870, - [SMALL_STATE(2134)] = 80877, - [SMALL_STATE(2135)] = 80884, - [SMALL_STATE(2136)] = 80891, - [SMALL_STATE(2137)] = 80898, - [SMALL_STATE(2138)] = 80905, - [SMALL_STATE(2139)] = 80912, - [SMALL_STATE(2140)] = 80919, - [SMALL_STATE(2141)] = 80926, - [SMALL_STATE(2142)] = 80933, - [SMALL_STATE(2143)] = 80940, - [SMALL_STATE(2144)] = 80947, - [SMALL_STATE(2145)] = 80954, - [SMALL_STATE(2146)] = 80961, - [SMALL_STATE(2147)] = 80968, - [SMALL_STATE(2148)] = 80975, - [SMALL_STATE(2149)] = 80982, - [SMALL_STATE(2150)] = 80989, - [SMALL_STATE(2151)] = 80996, - [SMALL_STATE(2152)] = 81003, - [SMALL_STATE(2153)] = 81010, - [SMALL_STATE(2154)] = 81017, - [SMALL_STATE(2155)] = 81024, - [SMALL_STATE(2156)] = 81031, - [SMALL_STATE(2157)] = 81038, - [SMALL_STATE(2158)] = 81045, - [SMALL_STATE(2159)] = 81052, - [SMALL_STATE(2160)] = 81059, - [SMALL_STATE(2161)] = 81066, - [SMALL_STATE(2162)] = 81073, - [SMALL_STATE(2163)] = 81080, - [SMALL_STATE(2164)] = 81087, - [SMALL_STATE(2165)] = 81094, - [SMALL_STATE(2166)] = 81101, - [SMALL_STATE(2167)] = 81108, - [SMALL_STATE(2168)] = 81115, - [SMALL_STATE(2169)] = 81122, - [SMALL_STATE(2170)] = 81129, - [SMALL_STATE(2171)] = 81136, - [SMALL_STATE(2172)] = 81143, - [SMALL_STATE(2173)] = 81150, - [SMALL_STATE(2174)] = 81157, - [SMALL_STATE(2175)] = 81164, - [SMALL_STATE(2176)] = 81171, - [SMALL_STATE(2177)] = 81178, - [SMALL_STATE(2178)] = 81185, - [SMALL_STATE(2179)] = 81192, - [SMALL_STATE(2180)] = 81199, - [SMALL_STATE(2181)] = 81206, - [SMALL_STATE(2182)] = 81213, - [SMALL_STATE(2183)] = 81220, - [SMALL_STATE(2184)] = 81227, - [SMALL_STATE(2185)] = 81234, - [SMALL_STATE(2186)] = 81241, - [SMALL_STATE(2187)] = 81248, - [SMALL_STATE(2188)] = 81255, - [SMALL_STATE(2189)] = 81262, - [SMALL_STATE(2190)] = 81269, - [SMALL_STATE(2191)] = 81276, - [SMALL_STATE(2192)] = 81283, - [SMALL_STATE(2193)] = 81290, - [SMALL_STATE(2194)] = 81297, - [SMALL_STATE(2195)] = 81304, - [SMALL_STATE(2196)] = 81311, - [SMALL_STATE(2197)] = 81318, - [SMALL_STATE(2198)] = 81325, - [SMALL_STATE(2199)] = 81332, - [SMALL_STATE(2200)] = 81337, - [SMALL_STATE(2201)] = 81344, - [SMALL_STATE(2202)] = 81351, - [SMALL_STATE(2203)] = 81358, - [SMALL_STATE(2204)] = 81365, - [SMALL_STATE(2205)] = 81372, - [SMALL_STATE(2206)] = 81379, - [SMALL_STATE(2207)] = 81386, - [SMALL_STATE(2208)] = 81393, - [SMALL_STATE(2209)] = 81400, - [SMALL_STATE(2210)] = 81407, - [SMALL_STATE(2211)] = 81414, - [SMALL_STATE(2212)] = 81421, - [SMALL_STATE(2213)] = 81428, - [SMALL_STATE(2214)] = 81435, - [SMALL_STATE(2215)] = 81442, - [SMALL_STATE(2216)] = 81449, - [SMALL_STATE(2217)] = 81456, - [SMALL_STATE(2218)] = 81463, - [SMALL_STATE(2219)] = 81470, - [SMALL_STATE(2220)] = 81477, - [SMALL_STATE(2221)] = 81484, - [SMALL_STATE(2222)] = 81491, - [SMALL_STATE(2223)] = 81498, - [SMALL_STATE(2224)] = 81505, - [SMALL_STATE(2225)] = 81512, - [SMALL_STATE(2226)] = 81519, - [SMALL_STATE(2227)] = 81526, - [SMALL_STATE(2228)] = 81533, - [SMALL_STATE(2229)] = 81540, - [SMALL_STATE(2230)] = 81547, - [SMALL_STATE(2231)] = 81554, - [SMALL_STATE(2232)] = 81561, - [SMALL_STATE(2233)] = 81568, - [SMALL_STATE(2234)] = 81575, - [SMALL_STATE(2235)] = 81582, - [SMALL_STATE(2236)] = 81589, - [SMALL_STATE(2237)] = 81596, - [SMALL_STATE(2238)] = 81603, - [SMALL_STATE(2239)] = 81610, - [SMALL_STATE(2240)] = 81617, - [SMALL_STATE(2241)] = 81624, - [SMALL_STATE(2242)] = 81631, - [SMALL_STATE(2243)] = 81638, - [SMALL_STATE(2244)] = 81645, - [SMALL_STATE(2245)] = 81652, - [SMALL_STATE(2246)] = 81659, - [SMALL_STATE(2247)] = 81666, - [SMALL_STATE(2248)] = 81673, - [SMALL_STATE(2249)] = 81680, - [SMALL_STATE(2250)] = 81687, - [SMALL_STATE(2251)] = 81694, - [SMALL_STATE(2252)] = 81701, - [SMALL_STATE(2253)] = 81708, - [SMALL_STATE(2254)] = 81715, - [SMALL_STATE(2255)] = 81722, - [SMALL_STATE(2256)] = 81729, - [SMALL_STATE(2257)] = 81736, - [SMALL_STATE(2258)] = 81743, - [SMALL_STATE(2259)] = 81750, - [SMALL_STATE(2260)] = 81754, - [SMALL_STATE(2261)] = 81758, - [SMALL_STATE(2262)] = 81762, - [SMALL_STATE(2263)] = 81766, - [SMALL_STATE(2264)] = 81770, - [SMALL_STATE(2265)] = 81774, - [SMALL_STATE(2266)] = 81778, - [SMALL_STATE(2267)] = 81782, - [SMALL_STATE(2268)] = 81786, - [SMALL_STATE(2269)] = 81790, - [SMALL_STATE(2270)] = 81794, - [SMALL_STATE(2271)] = 81798, - [SMALL_STATE(2272)] = 81802, - [SMALL_STATE(2273)] = 81806, - [SMALL_STATE(2274)] = 81810, - [SMALL_STATE(2275)] = 81814, - [SMALL_STATE(2276)] = 81818, - [SMALL_STATE(2277)] = 81822, - [SMALL_STATE(2278)] = 81826, - [SMALL_STATE(2279)] = 81830, - [SMALL_STATE(2280)] = 81834, - [SMALL_STATE(2281)] = 81838, - [SMALL_STATE(2282)] = 81842, - [SMALL_STATE(2283)] = 81846, - [SMALL_STATE(2284)] = 81850, - [SMALL_STATE(2285)] = 81854, - [SMALL_STATE(2286)] = 81858, - [SMALL_STATE(2287)] = 81862, - [SMALL_STATE(2288)] = 81866, - [SMALL_STATE(2289)] = 81870, - [SMALL_STATE(2290)] = 81874, - [SMALL_STATE(2291)] = 81878, - [SMALL_STATE(2292)] = 81882, - [SMALL_STATE(2293)] = 81886, - [SMALL_STATE(2294)] = 81890, - [SMALL_STATE(2295)] = 81894, - [SMALL_STATE(2296)] = 81898, - [SMALL_STATE(2297)] = 81902, - [SMALL_STATE(2298)] = 81906, - [SMALL_STATE(2299)] = 81910, - [SMALL_STATE(2300)] = 81914, - [SMALL_STATE(2301)] = 81918, - [SMALL_STATE(2302)] = 81922, - [SMALL_STATE(2303)] = 81926, - [SMALL_STATE(2304)] = 81930, - [SMALL_STATE(2305)] = 81934, - [SMALL_STATE(2306)] = 81938, - [SMALL_STATE(2307)] = 81942, - [SMALL_STATE(2308)] = 81946, - [SMALL_STATE(2309)] = 81950, - [SMALL_STATE(2310)] = 81954, - [SMALL_STATE(2311)] = 81958, - [SMALL_STATE(2312)] = 81962, - [SMALL_STATE(2313)] = 81966, - [SMALL_STATE(2314)] = 81970, - [SMALL_STATE(2315)] = 81974, - [SMALL_STATE(2316)] = 81978, - [SMALL_STATE(2317)] = 81982, - [SMALL_STATE(2318)] = 81986, - [SMALL_STATE(2319)] = 81990, - [SMALL_STATE(2320)] = 81994, - [SMALL_STATE(2321)] = 81998, - [SMALL_STATE(2322)] = 82002, - [SMALL_STATE(2323)] = 82006, - [SMALL_STATE(2324)] = 82010, - [SMALL_STATE(2325)] = 82014, - [SMALL_STATE(2326)] = 82018, - [SMALL_STATE(2327)] = 82022, - [SMALL_STATE(2328)] = 82026, - [SMALL_STATE(2329)] = 82030, - [SMALL_STATE(2330)] = 82034, - [SMALL_STATE(2331)] = 82038, - [SMALL_STATE(2332)] = 82042, - [SMALL_STATE(2333)] = 82046, - [SMALL_STATE(2334)] = 82050, - [SMALL_STATE(2335)] = 82054, - [SMALL_STATE(2336)] = 82058, - [SMALL_STATE(2337)] = 82062, - [SMALL_STATE(2338)] = 82066, - [SMALL_STATE(2339)] = 82070, - [SMALL_STATE(2340)] = 82074, - [SMALL_STATE(2341)] = 82078, - [SMALL_STATE(2342)] = 82082, - [SMALL_STATE(2343)] = 82086, - [SMALL_STATE(2344)] = 82090, - [SMALL_STATE(2345)] = 82094, - [SMALL_STATE(2346)] = 82098, - [SMALL_STATE(2347)] = 82102, - [SMALL_STATE(2348)] = 82106, - [SMALL_STATE(2349)] = 82110, - [SMALL_STATE(2350)] = 82114, - [SMALL_STATE(2351)] = 82118, - [SMALL_STATE(2352)] = 82122, - [SMALL_STATE(2353)] = 82126, - [SMALL_STATE(2354)] = 82130, - [SMALL_STATE(2355)] = 82134, - [SMALL_STATE(2356)] = 82138, - [SMALL_STATE(2357)] = 82142, - [SMALL_STATE(2358)] = 82146, - [SMALL_STATE(2359)] = 82150, - [SMALL_STATE(2360)] = 82154, - [SMALL_STATE(2361)] = 82158, - [SMALL_STATE(2362)] = 82162, - [SMALL_STATE(2363)] = 82166, - [SMALL_STATE(2364)] = 82170, - [SMALL_STATE(2365)] = 82174, - [SMALL_STATE(2366)] = 82178, - [SMALL_STATE(2367)] = 82182, - [SMALL_STATE(2368)] = 82186, - [SMALL_STATE(2369)] = 82190, - [SMALL_STATE(2370)] = 82194, - [SMALL_STATE(2371)] = 82198, - [SMALL_STATE(2372)] = 82202, - [SMALL_STATE(2373)] = 82206, - [SMALL_STATE(2374)] = 82210, - [SMALL_STATE(2375)] = 82214, - [SMALL_STATE(2376)] = 82218, - [SMALL_STATE(2377)] = 82222, - [SMALL_STATE(2378)] = 82226, - [SMALL_STATE(2379)] = 82230, - [SMALL_STATE(2380)] = 82234, - [SMALL_STATE(2381)] = 82238, - [SMALL_STATE(2382)] = 82242, - [SMALL_STATE(2383)] = 82246, - [SMALL_STATE(2384)] = 82250, - [SMALL_STATE(2385)] = 82254, - [SMALL_STATE(2386)] = 82258, - [SMALL_STATE(2387)] = 82262, - [SMALL_STATE(2388)] = 82266, - [SMALL_STATE(2389)] = 82270, - [SMALL_STATE(2390)] = 82274, - [SMALL_STATE(2391)] = 82278, - [SMALL_STATE(2392)] = 82282, - [SMALL_STATE(2393)] = 82286, - [SMALL_STATE(2394)] = 82290, - [SMALL_STATE(2395)] = 82294, - [SMALL_STATE(2396)] = 82298, - [SMALL_STATE(2397)] = 82302, - [SMALL_STATE(2398)] = 82306, - [SMALL_STATE(2399)] = 82310, - [SMALL_STATE(2400)] = 82314, - [SMALL_STATE(2401)] = 82318, - [SMALL_STATE(2402)] = 82322, - [SMALL_STATE(2403)] = 82326, - [SMALL_STATE(2404)] = 82330, - [SMALL_STATE(2405)] = 82334, - [SMALL_STATE(2406)] = 82338, - [SMALL_STATE(2407)] = 82342, - [SMALL_STATE(2408)] = 82346, - [SMALL_STATE(2409)] = 82350, - [SMALL_STATE(2410)] = 82354, - [SMALL_STATE(2411)] = 82358, - [SMALL_STATE(2412)] = 82362, - [SMALL_STATE(2413)] = 82366, - [SMALL_STATE(2414)] = 82370, - [SMALL_STATE(2415)] = 82374, - [SMALL_STATE(2416)] = 82378, - [SMALL_STATE(2417)] = 82382, - [SMALL_STATE(2418)] = 82386, - [SMALL_STATE(2419)] = 82390, - [SMALL_STATE(2420)] = 82394, - [SMALL_STATE(2421)] = 82398, - [SMALL_STATE(2422)] = 82402, - [SMALL_STATE(2423)] = 82406, - [SMALL_STATE(2424)] = 82410, - [SMALL_STATE(2425)] = 82414, - [SMALL_STATE(2426)] = 82418, - [SMALL_STATE(2427)] = 82422, - [SMALL_STATE(2428)] = 82426, - [SMALL_STATE(2429)] = 82430, - [SMALL_STATE(2430)] = 82434, - [SMALL_STATE(2431)] = 82438, - [SMALL_STATE(2432)] = 82442, - [SMALL_STATE(2433)] = 82446, - [SMALL_STATE(2434)] = 82450, - [SMALL_STATE(2435)] = 82454, - [SMALL_STATE(2436)] = 82458, - [SMALL_STATE(2437)] = 82462, - [SMALL_STATE(2438)] = 82466, - [SMALL_STATE(2439)] = 82470, - [SMALL_STATE(2440)] = 82474, - [SMALL_STATE(2441)] = 82478, - [SMALL_STATE(2442)] = 82482, - [SMALL_STATE(2443)] = 82486, - [SMALL_STATE(2444)] = 82490, - [SMALL_STATE(2445)] = 82494, - [SMALL_STATE(2446)] = 82498, - [SMALL_STATE(2447)] = 82502, - [SMALL_STATE(2448)] = 82506, - [SMALL_STATE(2449)] = 82510, - [SMALL_STATE(2450)] = 82514, - [SMALL_STATE(2451)] = 82518, - [SMALL_STATE(2452)] = 82522, - [SMALL_STATE(2453)] = 82526, - [SMALL_STATE(2454)] = 82530, - [SMALL_STATE(2455)] = 82534, - [SMALL_STATE(2456)] = 82538, - [SMALL_STATE(2457)] = 82542, - [SMALL_STATE(2458)] = 82546, - [SMALL_STATE(2459)] = 82550, - [SMALL_STATE(2460)] = 82554, - [SMALL_STATE(2461)] = 82558, - [SMALL_STATE(2462)] = 82562, - [SMALL_STATE(2463)] = 82566, - [SMALL_STATE(2464)] = 82570, - [SMALL_STATE(2465)] = 82574, - [SMALL_STATE(2466)] = 82578, - [SMALL_STATE(2467)] = 82582, - [SMALL_STATE(2468)] = 82586, - [SMALL_STATE(2469)] = 82590, - [SMALL_STATE(2470)] = 82594, - [SMALL_STATE(2471)] = 82598, - [SMALL_STATE(2472)] = 82602, - [SMALL_STATE(2473)] = 82606, - [SMALL_STATE(2474)] = 82610, - [SMALL_STATE(2475)] = 82614, - [SMALL_STATE(2476)] = 82618, - [SMALL_STATE(2477)] = 82622, - [SMALL_STATE(2478)] = 82626, - [SMALL_STATE(2479)] = 82630, - [SMALL_STATE(2480)] = 82634, - [SMALL_STATE(2481)] = 82638, - [SMALL_STATE(2482)] = 82642, - [SMALL_STATE(2483)] = 82646, - [SMALL_STATE(2484)] = 82650, - [SMALL_STATE(2485)] = 82654, - [SMALL_STATE(2486)] = 82658, + [SMALL_STATE(936)] = 28708, + [SMALL_STATE(937)] = 28799, + [SMALL_STATE(938)] = 28858, + [SMALL_STATE(939)] = 28913, + [SMALL_STATE(940)] = 28994, + [SMALL_STATE(941)] = 29047, + [SMALL_STATE(942)] = 29100, + [SMALL_STATE(943)] = 29153, + [SMALL_STATE(944)] = 29206, + [SMALL_STATE(945)] = 29259, + [SMALL_STATE(946)] = 29312, + [SMALL_STATE(947)] = 29393, + [SMALL_STATE(948)] = 29474, + [SMALL_STATE(949)] = 29527, + [SMALL_STATE(950)] = 29618, + [SMALL_STATE(951)] = 29699, + [SMALL_STATE(952)] = 29754, + [SMALL_STATE(953)] = 29835, + [SMALL_STATE(954)] = 29916, + [SMALL_STATE(955)] = 29997, + [SMALL_STATE(956)] = 30052, + [SMALL_STATE(957)] = 30105, + [SMALL_STATE(958)] = 30158, + [SMALL_STATE(959)] = 30213, + [SMALL_STATE(960)] = 30276, + [SMALL_STATE(961)] = 30367, + [SMALL_STATE(962)] = 30458, + [SMALL_STATE(963)] = 30539, + [SMALL_STATE(964)] = 30594, + [SMALL_STATE(965)] = 30647, + [SMALL_STATE(966)] = 30700, + [SMALL_STATE(967)] = 30781, + [SMALL_STATE(968)] = 30834, + [SMALL_STATE(969)] = 30887, + [SMALL_STATE(970)] = 30940, + [SMALL_STATE(971)] = 30993, + [SMALL_STATE(972)] = 31074, + [SMALL_STATE(973)] = 31127, + [SMALL_STATE(974)] = 31208, + [SMALL_STATE(975)] = 31261, + [SMALL_STATE(976)] = 31314, + [SMALL_STATE(977)] = 31367, + [SMALL_STATE(978)] = 31448, + [SMALL_STATE(979)] = 31503, + [SMALL_STATE(980)] = 31558, + [SMALL_STATE(981)] = 31630, + [SMALL_STATE(982)] = 31702, + [SMALL_STATE(983)] = 31774, + [SMALL_STATE(984)] = 31846, + [SMALL_STATE(985)] = 31918, + [SMALL_STATE(986)] = 31974, + [SMALL_STATE(987)] = 32030, + [SMALL_STATE(988)] = 32102, + [SMALL_STATE(989)] = 32174, + [SMALL_STATE(990)] = 32246, + [SMALL_STATE(991)] = 32318, + [SMALL_STATE(992)] = 32374, + [SMALL_STATE(993)] = 32446, + [SMALL_STATE(994)] = 32522, + [SMALL_STATE(995)] = 32580, + [SMALL_STATE(996)] = 32652, + [SMALL_STATE(997)] = 32724, + [SMALL_STATE(998)] = 32796, + [SMALL_STATE(999)] = 32872, + [SMALL_STATE(1000)] = 32944, + [SMALL_STATE(1001)] = 33016, + [SMALL_STATE(1002)] = 33072, + [SMALL_STATE(1003)] = 33144, + [SMALL_STATE(1004)] = 33216, + [SMALL_STATE(1005)] = 33288, + [SMALL_STATE(1006)] = 33360, + [SMALL_STATE(1007)] = 33432, + [SMALL_STATE(1008)] = 33504, + [SMALL_STATE(1009)] = 33576, + [SMALL_STATE(1010)] = 33648, + [SMALL_STATE(1011)] = 33720, + [SMALL_STATE(1012)] = 33792, + [SMALL_STATE(1013)] = 33864, + [SMALL_STATE(1014)] = 33929, + [SMALL_STATE(1015)] = 33994, + [SMALL_STATE(1016)] = 34059, + [SMALL_STATE(1017)] = 34124, + [SMALL_STATE(1018)] = 34189, + [SMALL_STATE(1019)] = 34254, + [SMALL_STATE(1020)] = 34319, + [SMALL_STATE(1021)] = 34384, + [SMALL_STATE(1022)] = 34449, + [SMALL_STATE(1023)] = 34522, + [SMALL_STATE(1024)] = 34587, + [SMALL_STATE(1025)] = 34652, + [SMALL_STATE(1026)] = 34717, + [SMALL_STATE(1027)] = 34782, + [SMALL_STATE(1028)] = 34847, + [SMALL_STATE(1029)] = 34912, + [SMALL_STATE(1030)] = 34977, + [SMALL_STATE(1031)] = 35042, + [SMALL_STATE(1032)] = 35107, + [SMALL_STATE(1033)] = 35172, + [SMALL_STATE(1034)] = 35237, + [SMALL_STATE(1035)] = 35301, + [SMALL_STATE(1036)] = 35373, + [SMALL_STATE(1037)] = 35437, + [SMALL_STATE(1038)] = 35501, + [SMALL_STATE(1039)] = 35565, + [SMALL_STATE(1040)] = 35629, + [SMALL_STATE(1041)] = 35693, + [SMALL_STATE(1042)] = 35757, + [SMALL_STATE(1043)] = 35821, + [SMALL_STATE(1044)] = 35885, + [SMALL_STATE(1045)] = 35957, + [SMALL_STATE(1046)] = 36009, + [SMALL_STATE(1047)] = 36073, + [SMALL_STATE(1048)] = 36137, + [SMALL_STATE(1049)] = 36201, + [SMALL_STATE(1050)] = 36265, + [SMALL_STATE(1051)] = 36329, + [SMALL_STATE(1052)] = 36393, + [SMALL_STATE(1053)] = 36457, + [SMALL_STATE(1054)] = 36521, + [SMALL_STATE(1055)] = 36585, + [SMALL_STATE(1056)] = 36649, + [SMALL_STATE(1057)] = 36713, + [SMALL_STATE(1058)] = 36769, + [SMALL_STATE(1059)] = 36833, + [SMALL_STATE(1060)] = 36897, + [SMALL_STATE(1061)] = 36969, + [SMALL_STATE(1062)] = 37033, + [SMALL_STATE(1063)] = 37097, + [SMALL_STATE(1064)] = 37161, + [SMALL_STATE(1065)] = 37225, + [SMALL_STATE(1066)] = 37289, + [SMALL_STATE(1067)] = 37353, + [SMALL_STATE(1068)] = 37417, + [SMALL_STATE(1069)] = 37481, + [SMALL_STATE(1070)] = 37545, + [SMALL_STATE(1071)] = 37609, + [SMALL_STATE(1072)] = 37673, + [SMALL_STATE(1073)] = 37737, + [SMALL_STATE(1074)] = 37801, + [SMALL_STATE(1075)] = 37865, + [SMALL_STATE(1076)] = 37929, + [SMALL_STATE(1077)] = 38001, + [SMALL_STATE(1078)] = 38053, + [SMALL_STATE(1079)] = 38117, + [SMALL_STATE(1080)] = 38181, + [SMALL_STATE(1081)] = 38245, + [SMALL_STATE(1082)] = 38304, + [SMALL_STATE(1083)] = 38365, + [SMALL_STATE(1084)] = 38418, + [SMALL_STATE(1085)] = 38471, + [SMALL_STATE(1086)] = 38532, + [SMALL_STATE(1087)] = 38585, + [SMALL_STATE(1088)] = 38638, + [SMALL_STATE(1089)] = 38697, + [SMALL_STATE(1090)] = 38756, + [SMALL_STATE(1091)] = 38815, + [SMALL_STATE(1092)] = 38864, + [SMALL_STATE(1093)] = 38927, + [SMALL_STATE(1094)] = 38990, + [SMALL_STATE(1095)] = 39049, + [SMALL_STATE(1096)] = 39110, + [SMALL_STATE(1097)] = 39173, + [SMALL_STATE(1098)] = 39236, + [SMALL_STATE(1099)] = 39295, + [SMALL_STATE(1100)] = 39358, + [SMALL_STATE(1101)] = 39419, + [SMALL_STATE(1102)] = 39468, + [SMALL_STATE(1103)] = 39523, + [SMALL_STATE(1104)] = 39584, + [SMALL_STATE(1105)] = 39647, + [SMALL_STATE(1106)] = 39706, + [SMALL_STATE(1107)] = 39765, + [SMALL_STATE(1108)] = 39824, + [SMALL_STATE(1109)] = 39886, + [SMALL_STATE(1110)] = 39948, + [SMALL_STATE(1111)] = 40010, + [SMALL_STATE(1112)] = 40072, + [SMALL_STATE(1113)] = 40134, + [SMALL_STATE(1114)] = 40196, + [SMALL_STATE(1115)] = 40258, + [SMALL_STATE(1116)] = 40320, + [SMALL_STATE(1117)] = 40382, + [SMALL_STATE(1118)] = 40440, + [SMALL_STATE(1119)] = 40502, + [SMALL_STATE(1120)] = 40564, + [SMALL_STATE(1121)] = 40616, + [SMALL_STATE(1122)] = 40678, + [SMALL_STATE(1123)] = 40740, + [SMALL_STATE(1124)] = 40802, + [SMALL_STATE(1125)] = 40864, + [SMALL_STATE(1126)] = 40926, + [SMALL_STATE(1127)] = 40988, + [SMALL_STATE(1128)] = 41050, + [SMALL_STATE(1129)] = 41112, + [SMALL_STATE(1130)] = 41174, + [SMALL_STATE(1131)] = 41236, + [SMALL_STATE(1132)] = 41298, + [SMALL_STATE(1133)] = 41360, + [SMALL_STATE(1134)] = 41422, + [SMALL_STATE(1135)] = 41484, + [SMALL_STATE(1136)] = 41546, + [SMALL_STATE(1137)] = 41608, + [SMALL_STATE(1138)] = 41670, + [SMALL_STATE(1139)] = 41732, + [SMALL_STATE(1140)] = 41794, + [SMALL_STATE(1141)] = 41856, + [SMALL_STATE(1142)] = 41918, + [SMALL_STATE(1143)] = 41980, + [SMALL_STATE(1144)] = 42042, + [SMALL_STATE(1145)] = 42104, + [SMALL_STATE(1146)] = 42166, + [SMALL_STATE(1147)] = 42228, + [SMALL_STATE(1148)] = 42290, + [SMALL_STATE(1149)] = 42352, + [SMALL_STATE(1150)] = 42410, + [SMALL_STATE(1151)] = 42472, + [SMALL_STATE(1152)] = 42530, + [SMALL_STATE(1153)] = 42582, + [SMALL_STATE(1154)] = 42634, + [SMALL_STATE(1155)] = 42686, + [SMALL_STATE(1156)] = 42738, + [SMALL_STATE(1157)] = 42800, + [SMALL_STATE(1158)] = 42852, + [SMALL_STATE(1159)] = 42914, + [SMALL_STATE(1160)] = 42966, + [SMALL_STATE(1161)] = 43018, + [SMALL_STATE(1162)] = 43070, + [SMALL_STATE(1163)] = 43132, + [SMALL_STATE(1164)] = 43184, + [SMALL_STATE(1165)] = 43246, + [SMALL_STATE(1166)] = 43308, + [SMALL_STATE(1167)] = 43370, + [SMALL_STATE(1168)] = 43422, + [SMALL_STATE(1169)] = 43474, + [SMALL_STATE(1170)] = 43536, + [SMALL_STATE(1171)] = 43590, + [SMALL_STATE(1172)] = 43652, + [SMALL_STATE(1173)] = 43704, + [SMALL_STATE(1174)] = 43756, + [SMALL_STATE(1175)] = 43808, + [SMALL_STATE(1176)] = 43860, + [SMALL_STATE(1177)] = 43922, + [SMALL_STATE(1178)] = 43974, + [SMALL_STATE(1179)] = 44036, + [SMALL_STATE(1180)] = 44098, + [SMALL_STATE(1181)] = 44160, + [SMALL_STATE(1182)] = 44222, + [SMALL_STATE(1183)] = 44284, + [SMALL_STATE(1184)] = 44346, + [SMALL_STATE(1185)] = 44398, + [SMALL_STATE(1186)] = 44460, + [SMALL_STATE(1187)] = 44522, + [SMALL_STATE(1188)] = 44576, + [SMALL_STATE(1189)] = 44628, + [SMALL_STATE(1190)] = 44690, + [SMALL_STATE(1191)] = 44752, + [SMALL_STATE(1192)] = 44814, + [SMALL_STATE(1193)] = 44872, + [SMALL_STATE(1194)] = 44934, + [SMALL_STATE(1195)] = 44996, + [SMALL_STATE(1196)] = 45048, + [SMALL_STATE(1197)] = 45110, + [SMALL_STATE(1198)] = 45162, + [SMALL_STATE(1199)] = 45224, + [SMALL_STATE(1200)] = 45276, + [SMALL_STATE(1201)] = 45330, + [SMALL_STATE(1202)] = 45392, + [SMALL_STATE(1203)] = 45444, + [SMALL_STATE(1204)] = 45498, + [SMALL_STATE(1205)] = 45550, + [SMALL_STATE(1206)] = 45602, + [SMALL_STATE(1207)] = 45664, + [SMALL_STATE(1208)] = 45716, + [SMALL_STATE(1209)] = 45768, + [SMALL_STATE(1210)] = 45820, + [SMALL_STATE(1211)] = 45872, + [SMALL_STATE(1212)] = 45930, + [SMALL_STATE(1213)] = 45982, + [SMALL_STATE(1214)] = 46040, + [SMALL_STATE(1215)] = 46092, + [SMALL_STATE(1216)] = 46154, + [SMALL_STATE(1217)] = 46206, + [SMALL_STATE(1218)] = 46258, + [SMALL_STATE(1219)] = 46310, + [SMALL_STATE(1220)] = 46362, + [SMALL_STATE(1221)] = 46424, + [SMALL_STATE(1222)] = 46486, + [SMALL_STATE(1223)] = 46548, + [SMALL_STATE(1224)] = 46610, + [SMALL_STATE(1225)] = 46662, + [SMALL_STATE(1226)] = 46714, + [SMALL_STATE(1227)] = 46766, + [SMALL_STATE(1228)] = 46818, + [SMALL_STATE(1229)] = 46880, + [SMALL_STATE(1230)] = 46942, + [SMALL_STATE(1231)] = 46996, + [SMALL_STATE(1232)] = 47050, + [SMALL_STATE(1233)] = 47112, + [SMALL_STATE(1234)] = 47170, + [SMALL_STATE(1235)] = 47232, + [SMALL_STATE(1236)] = 47294, + [SMALL_STATE(1237)] = 47356, + [SMALL_STATE(1238)] = 47418, + [SMALL_STATE(1239)] = 47480, + [SMALL_STATE(1240)] = 47532, + [SMALL_STATE(1241)] = 47594, + [SMALL_STATE(1242)] = 47656, + [SMALL_STATE(1243)] = 47718, + [SMALL_STATE(1244)] = 47780, + [SMALL_STATE(1245)] = 47834, + [SMALL_STATE(1246)] = 47896, + [SMALL_STATE(1247)] = 47958, + [SMALL_STATE(1248)] = 48020, + [SMALL_STATE(1249)] = 48082, + [SMALL_STATE(1250)] = 48144, + [SMALL_STATE(1251)] = 48206, + [SMALL_STATE(1252)] = 48258, + [SMALL_STATE(1253)] = 48316, + [SMALL_STATE(1254)] = 48374, + [SMALL_STATE(1255)] = 48436, + [SMALL_STATE(1256)] = 48494, + [SMALL_STATE(1257)] = 48556, + [SMALL_STATE(1258)] = 48618, + [SMALL_STATE(1259)] = 48680, + [SMALL_STATE(1260)] = 48742, + [SMALL_STATE(1261)] = 48804, + [SMALL_STATE(1262)] = 48866, + [SMALL_STATE(1263)] = 48928, + [SMALL_STATE(1264)] = 48990, + [SMALL_STATE(1265)] = 49052, + [SMALL_STATE(1266)] = 49114, + [SMALL_STATE(1267)] = 49166, + [SMALL_STATE(1268)] = 49228, + [SMALL_STATE(1269)] = 49287, + [SMALL_STATE(1270)] = 49346, + [SMALL_STATE(1271)] = 49405, + [SMALL_STATE(1272)] = 49464, + [SMALL_STATE(1273)] = 49523, + [SMALL_STATE(1274)] = 49586, + [SMALL_STATE(1275)] = 49645, + [SMALL_STATE(1276)] = 49704, + [SMALL_STATE(1277)] = 49767, + [SMALL_STATE(1278)] = 49826, + [SMALL_STATE(1279)] = 49885, + [SMALL_STATE(1280)] = 49944, + [SMALL_STATE(1281)] = 50003, + [SMALL_STATE(1282)] = 50062, + [SMALL_STATE(1283)] = 50121, + [SMALL_STATE(1284)] = 50180, + [SMALL_STATE(1285)] = 50239, + [SMALL_STATE(1286)] = 50298, + [SMALL_STATE(1287)] = 50357, + [SMALL_STATE(1288)] = 50410, + [SMALL_STATE(1289)] = 50461, + [SMALL_STATE(1290)] = 50520, + [SMALL_STATE(1291)] = 50579, + [SMALL_STATE(1292)] = 50638, + [SMALL_STATE(1293)] = 50697, + [SMALL_STATE(1294)] = 50756, + [SMALL_STATE(1295)] = 50815, + [SMALL_STATE(1296)] = 50874, + [SMALL_STATE(1297)] = 50933, + [SMALL_STATE(1298)] = 50986, + [SMALL_STATE(1299)] = 51045, + [SMALL_STATE(1300)] = 51104, + [SMALL_STATE(1301)] = 51163, + [SMALL_STATE(1302)] = 51222, + [SMALL_STATE(1303)] = 51281, + [SMALL_STATE(1304)] = 51340, + [SMALL_STATE(1305)] = 51399, + [SMALL_STATE(1306)] = 51452, + [SMALL_STATE(1307)] = 51511, + [SMALL_STATE(1308)] = 51570, + [SMALL_STATE(1309)] = 51629, + [SMALL_STATE(1310)] = 51688, + [SMALL_STATE(1311)] = 51747, + [SMALL_STATE(1312)] = 51806, + [SMALL_STATE(1313)] = 51865, + [SMALL_STATE(1314)] = 51924, + [SMALL_STATE(1315)] = 51983, + [SMALL_STATE(1316)] = 52042, + [SMALL_STATE(1317)] = 52101, + [SMALL_STATE(1318)] = 52160, + [SMALL_STATE(1319)] = 52219, + [SMALL_STATE(1320)] = 52278, + [SMALL_STATE(1321)] = 52337, + [SMALL_STATE(1322)] = 52396, + [SMALL_STATE(1323)] = 52455, + [SMALL_STATE(1324)] = 52514, + [SMALL_STATE(1325)] = 52573, + [SMALL_STATE(1326)] = 52632, + [SMALL_STATE(1327)] = 52691, + [SMALL_STATE(1328)] = 52750, + [SMALL_STATE(1329)] = 52813, + [SMALL_STATE(1330)] = 52872, + [SMALL_STATE(1331)] = 52931, + [SMALL_STATE(1332)] = 52990, + [SMALL_STATE(1333)] = 53049, + [SMALL_STATE(1334)] = 53108, + [SMALL_STATE(1335)] = 53159, + [SMALL_STATE(1336)] = 53218, + [SMALL_STATE(1337)] = 53277, + [SMALL_STATE(1338)] = 53336, + [SMALL_STATE(1339)] = 53395, + [SMALL_STATE(1340)] = 53454, + [SMALL_STATE(1341)] = 53513, + [SMALL_STATE(1342)] = 53572, + [SMALL_STATE(1343)] = 53631, + [SMALL_STATE(1344)] = 53694, + [SMALL_STATE(1345)] = 53753, + [SMALL_STATE(1346)] = 53812, + [SMALL_STATE(1347)] = 53871, + [SMALL_STATE(1348)] = 53930, + [SMALL_STATE(1349)] = 53989, + [SMALL_STATE(1350)] = 54048, + [SMALL_STATE(1351)] = 54107, + [SMALL_STATE(1352)] = 54166, + [SMALL_STATE(1353)] = 54225, + [SMALL_STATE(1354)] = 54284, + [SMALL_STATE(1355)] = 54343, + [SMALL_STATE(1356)] = 54402, + [SMALL_STATE(1357)] = 54461, + [SMALL_STATE(1358)] = 54520, + [SMALL_STATE(1359)] = 54579, + [SMALL_STATE(1360)] = 54638, + [SMALL_STATE(1361)] = 54697, + [SMALL_STATE(1362)] = 54756, + [SMALL_STATE(1363)] = 54815, + [SMALL_STATE(1364)] = 54874, + [SMALL_STATE(1365)] = 54933, + [SMALL_STATE(1366)] = 54992, + [SMALL_STATE(1367)] = 55051, + [SMALL_STATE(1368)] = 55110, + [SMALL_STATE(1369)] = 55169, + [SMALL_STATE(1370)] = 55228, + [SMALL_STATE(1371)] = 55287, + [SMALL_STATE(1372)] = 55346, + [SMALL_STATE(1373)] = 55405, + [SMALL_STATE(1374)] = 55464, + [SMALL_STATE(1375)] = 55523, + [SMALL_STATE(1376)] = 55582, + [SMALL_STATE(1377)] = 55641, + [SMALL_STATE(1378)] = 55700, + [SMALL_STATE(1379)] = 55759, + [SMALL_STATE(1380)] = 55818, + [SMALL_STATE(1381)] = 55877, + [SMALL_STATE(1382)] = 55936, + [SMALL_STATE(1383)] = 55995, + [SMALL_STATE(1384)] = 56054, + [SMALL_STATE(1385)] = 56105, + [SMALL_STATE(1386)] = 56164, + [SMALL_STATE(1387)] = 56223, + [SMALL_STATE(1388)] = 56282, + [SMALL_STATE(1389)] = 56341, + [SMALL_STATE(1390)] = 56392, + [SMALL_STATE(1391)] = 56451, + [SMALL_STATE(1392)] = 56510, + [SMALL_STATE(1393)] = 56569, + [SMALL_STATE(1394)] = 56628, + [SMALL_STATE(1395)] = 56687, + [SMALL_STATE(1396)] = 56746, + [SMALL_STATE(1397)] = 56805, + [SMALL_STATE(1398)] = 56864, + [SMALL_STATE(1399)] = 56923, + [SMALL_STATE(1400)] = 56982, + [SMALL_STATE(1401)] = 57041, + [SMALL_STATE(1402)] = 57100, + [SMALL_STATE(1403)] = 57159, + [SMALL_STATE(1404)] = 57218, + [SMALL_STATE(1405)] = 57277, + [SMALL_STATE(1406)] = 57336, + [SMALL_STATE(1407)] = 57389, + [SMALL_STATE(1408)] = 57448, + [SMALL_STATE(1409)] = 57507, + [SMALL_STATE(1410)] = 57566, + [SMALL_STATE(1411)] = 57625, + [SMALL_STATE(1412)] = 57678, + [SMALL_STATE(1413)] = 57737, + [SMALL_STATE(1414)] = 57796, + [SMALL_STATE(1415)] = 57855, + [SMALL_STATE(1416)] = 57906, + [SMALL_STATE(1417)] = 57969, + [SMALL_STATE(1418)] = 58020, + [SMALL_STATE(1419)] = 58079, + [SMALL_STATE(1420)] = 58142, + [SMALL_STATE(1421)] = 58193, + [SMALL_STATE(1422)] = 58252, + [SMALL_STATE(1423)] = 58311, + [SMALL_STATE(1424)] = 58370, + [SMALL_STATE(1425)] = 58429, + [SMALL_STATE(1426)] = 58488, + [SMALL_STATE(1427)] = 58547, + [SMALL_STATE(1428)] = 58606, + [SMALL_STATE(1429)] = 58665, + [SMALL_STATE(1430)] = 58724, + [SMALL_STATE(1431)] = 58775, + [SMALL_STATE(1432)] = 58826, + [SMALL_STATE(1433)] = 58885, + [SMALL_STATE(1434)] = 58936, + [SMALL_STATE(1435)] = 58987, + [SMALL_STATE(1436)] = 59050, + [SMALL_STATE(1437)] = 59109, + [SMALL_STATE(1438)] = 59168, + [SMALL_STATE(1439)] = 59219, + [SMALL_STATE(1440)] = 59278, + [SMALL_STATE(1441)] = 59329, + [SMALL_STATE(1442)] = 59380, + [SMALL_STATE(1443)] = 59431, + [SMALL_STATE(1444)] = 59490, + [SMALL_STATE(1445)] = 59541, + [SMALL_STATE(1446)] = 59592, + [SMALL_STATE(1447)] = 59643, + [SMALL_STATE(1448)] = 59694, + [SMALL_STATE(1449)] = 59757, + [SMALL_STATE(1450)] = 59816, + [SMALL_STATE(1451)] = 59875, + [SMALL_STATE(1452)] = 59926, + [SMALL_STATE(1453)] = 59989, + [SMALL_STATE(1454)] = 60040, + [SMALL_STATE(1455)] = 60091, + [SMALL_STATE(1456)] = 60142, + [SMALL_STATE(1457)] = 60201, + [SMALL_STATE(1458)] = 60260, + [SMALL_STATE(1459)] = 60311, + [SMALL_STATE(1460)] = 60370, + [SMALL_STATE(1461)] = 60421, + [SMALL_STATE(1462)] = 60480, + [SMALL_STATE(1463)] = 60539, + [SMALL_STATE(1464)] = 60590, + [SMALL_STATE(1465)] = 60649, + [SMALL_STATE(1466)] = 60708, + [SMALL_STATE(1467)] = 60759, + [SMALL_STATE(1468)] = 60822, + [SMALL_STATE(1469)] = 60873, + [SMALL_STATE(1470)] = 60924, + [SMALL_STATE(1471)] = 60975, + [SMALL_STATE(1472)] = 61034, + [SMALL_STATE(1473)] = 61093, + [SMALL_STATE(1474)] = 61152, + [SMALL_STATE(1475)] = 61211, + [SMALL_STATE(1476)] = 61270, + [SMALL_STATE(1477)] = 61329, + [SMALL_STATE(1478)] = 61388, + [SMALL_STATE(1479)] = 61438, + [SMALL_STATE(1480)] = 61488, + [SMALL_STATE(1481)] = 61538, + [SMALL_STATE(1482)] = 61588, + [SMALL_STATE(1483)] = 61644, + [SMALL_STATE(1484)] = 61692, + [SMALL_STATE(1485)] = 61742, + [SMALL_STATE(1486)] = 61792, + [SMALL_STATE(1487)] = 61842, + [SMALL_STATE(1488)] = 61892, + [SMALL_STATE(1489)] = 61942, + [SMALL_STATE(1490)] = 61990, + [SMALL_STATE(1491)] = 62042, + [SMALL_STATE(1492)] = 62096, + [SMALL_STATE(1493)] = 62146, + [SMALL_STATE(1494)] = 62196, + [SMALL_STATE(1495)] = 62246, + [SMALL_STATE(1496)] = 62294, + [SMALL_STATE(1497)] = 62344, + [SMALL_STATE(1498)] = 62394, + [SMALL_STATE(1499)] = 62444, + [SMALL_STATE(1500)] = 62494, + [SMALL_STATE(1501)] = 62544, + [SMALL_STATE(1502)] = 62594, + [SMALL_STATE(1503)] = 62642, + [SMALL_STATE(1504)] = 62692, + [SMALL_STATE(1505)] = 62742, + [SMALL_STATE(1506)] = 62792, + [SMALL_STATE(1507)] = 62842, + [SMALL_STATE(1508)] = 62892, + [SMALL_STATE(1509)] = 62942, + [SMALL_STATE(1510)] = 62992, + [SMALL_STATE(1511)] = 63042, + [SMALL_STATE(1512)] = 63092, + [SMALL_STATE(1513)] = 63142, + [SMALL_STATE(1514)] = 63192, + [SMALL_STATE(1515)] = 63242, + [SMALL_STATE(1516)] = 63292, + [SMALL_STATE(1517)] = 63344, + [SMALL_STATE(1518)] = 63394, + [SMALL_STATE(1519)] = 63444, + [SMALL_STATE(1520)] = 63494, + [SMALL_STATE(1521)] = 63544, + [SMALL_STATE(1522)] = 63594, + [SMALL_STATE(1523)] = 63650, + [SMALL_STATE(1524)] = 63700, + [SMALL_STATE(1525)] = 63750, + [SMALL_STATE(1526)] = 63800, + [SMALL_STATE(1527)] = 63850, + [SMALL_STATE(1528)] = 63900, + [SMALL_STATE(1529)] = 63950, + [SMALL_STATE(1530)] = 64000, + [SMALL_STATE(1531)] = 64054, + [SMALL_STATE(1532)] = 64108, + [SMALL_STATE(1533)] = 64158, + [SMALL_STATE(1534)] = 64208, + [SMALL_STATE(1535)] = 64256, + [SMALL_STATE(1536)] = 64312, + [SMALL_STATE(1537)] = 64362, + [SMALL_STATE(1538)] = 64412, + [SMALL_STATE(1539)] = 64462, + [SMALL_STATE(1540)] = 64512, + [SMALL_STATE(1541)] = 64568, + [SMALL_STATE(1542)] = 64624, + [SMALL_STATE(1543)] = 64672, + [SMALL_STATE(1544)] = 64720, + [SMALL_STATE(1545)] = 64770, + [SMALL_STATE(1546)] = 64820, + [SMALL_STATE(1547)] = 64876, + [SMALL_STATE(1548)] = 64932, + [SMALL_STATE(1549)] = 64980, + [SMALL_STATE(1550)] = 65034, + [SMALL_STATE(1551)] = 65084, + [SMALL_STATE(1552)] = 65134, + [SMALL_STATE(1553)] = 65184, + [SMALL_STATE(1554)] = 65234, + [SMALL_STATE(1555)] = 65284, + [SMALL_STATE(1556)] = 65334, + [SMALL_STATE(1557)] = 65384, + [SMALL_STATE(1558)] = 65434, + [SMALL_STATE(1559)] = 65479, + [SMALL_STATE(1560)] = 65528, + [SMALL_STATE(1561)] = 65575, + [SMALL_STATE(1562)] = 65624, + [SMALL_STATE(1563)] = 65671, + [SMALL_STATE(1564)] = 65718, + [SMALL_STATE(1565)] = 65765, + [SMALL_STATE(1566)] = 65812, + [SMALL_STATE(1567)] = 65857, + [SMALL_STATE(1568)] = 65902, + [SMALL_STATE(1569)] = 65947, + [SMALL_STATE(1570)] = 65994, + [SMALL_STATE(1571)] = 66039, + [SMALL_STATE(1572)] = 66088, + [SMALL_STATE(1573)] = 66133, + [SMALL_STATE(1574)] = 66180, + [SMALL_STATE(1575)] = 66225, + [SMALL_STATE(1576)] = 66272, + [SMALL_STATE(1577)] = 66327, + [SMALL_STATE(1578)] = 66374, + [SMALL_STATE(1579)] = 66419, + [SMALL_STATE(1580)] = 66466, + [SMALL_STATE(1581)] = 66515, + [SMALL_STATE(1582)] = 66560, + [SMALL_STATE(1583)] = 66609, + [SMALL_STATE(1584)] = 66658, + [SMALL_STATE(1585)] = 66703, + [SMALL_STATE(1586)] = 66748, + [SMALL_STATE(1587)] = 66797, + [SMALL_STATE(1588)] = 66846, + [SMALL_STATE(1589)] = 66891, + [SMALL_STATE(1590)] = 66940, + [SMALL_STATE(1591)] = 66989, + [SMALL_STATE(1592)] = 67038, + [SMALL_STATE(1593)] = 67087, + [SMALL_STATE(1594)] = 67136, + [SMALL_STATE(1595)] = 67185, + [SMALL_STATE(1596)] = 67234, + [SMALL_STATE(1597)] = 67283, + [SMALL_STATE(1598)] = 67332, + [SMALL_STATE(1599)] = 67381, + [SMALL_STATE(1600)] = 67430, + [SMALL_STATE(1601)] = 67479, + [SMALL_STATE(1602)] = 67528, + [SMALL_STATE(1603)] = 67577, + [SMALL_STATE(1604)] = 67626, + [SMALL_STATE(1605)] = 67675, + [SMALL_STATE(1606)] = 67724, + [SMALL_STATE(1607)] = 67779, + [SMALL_STATE(1608)] = 67828, + [SMALL_STATE(1609)] = 67877, + [SMALL_STATE(1610)] = 67926, + [SMALL_STATE(1611)] = 67975, + [SMALL_STATE(1612)] = 68024, + [SMALL_STATE(1613)] = 68073, + [SMALL_STATE(1614)] = 68122, + [SMALL_STATE(1615)] = 68171, + [SMALL_STATE(1616)] = 68220, + [SMALL_STATE(1617)] = 68269, + [SMALL_STATE(1618)] = 68318, + [SMALL_STATE(1619)] = 68367, + [SMALL_STATE(1620)] = 68416, + [SMALL_STATE(1621)] = 68465, + [SMALL_STATE(1622)] = 68512, + [SMALL_STATE(1623)] = 68561, + [SMALL_STATE(1624)] = 68610, + [SMALL_STATE(1625)] = 68655, + [SMALL_STATE(1626)] = 68704, + [SMALL_STATE(1627)] = 68751, + [SMALL_STATE(1628)] = 68800, + [SMALL_STATE(1629)] = 68849, + [SMALL_STATE(1630)] = 68898, + [SMALL_STATE(1631)] = 68947, + [SMALL_STATE(1632)] = 68996, + [SMALL_STATE(1633)] = 69051, + [SMALL_STATE(1634)] = 69096, + [SMALL_STATE(1635)] = 69141, + [SMALL_STATE(1636)] = 69186, + [SMALL_STATE(1637)] = 69231, + [SMALL_STATE(1638)] = 69276, + [SMALL_STATE(1639)] = 69321, + [SMALL_STATE(1640)] = 69366, + [SMALL_STATE(1641)] = 69411, + [SMALL_STATE(1642)] = 69456, + [SMALL_STATE(1643)] = 69501, + [SMALL_STATE(1644)] = 69546, + [SMALL_STATE(1645)] = 69591, + [SMALL_STATE(1646)] = 69636, + [SMALL_STATE(1647)] = 69681, + [SMALL_STATE(1648)] = 69728, + [SMALL_STATE(1649)] = 69775, + [SMALL_STATE(1650)] = 69829, + [SMALL_STATE(1651)] = 69875, + [SMALL_STATE(1652)] = 69921, + [SMALL_STATE(1653)] = 69967, + [SMALL_STATE(1654)] = 70011, + [SMALL_STATE(1655)] = 70055, + [SMALL_STATE(1656)] = 70101, + [SMALL_STATE(1657)] = 70147, + [SMALL_STATE(1658)] = 70191, + [SMALL_STATE(1659)] = 70235, + [SMALL_STATE(1660)] = 70279, + [SMALL_STATE(1661)] = 70323, + [SMALL_STATE(1662)] = 70377, + [SMALL_STATE(1663)] = 70421, + [SMALL_STATE(1664)] = 70465, + [SMALL_STATE(1665)] = 70509, + [SMALL_STATE(1666)] = 70563, + [SMALL_STATE(1667)] = 70613, + [SMALL_STATE(1668)] = 70659, + [SMALL_STATE(1669)] = 70703, + [SMALL_STATE(1670)] = 70749, + [SMALL_STATE(1671)] = 70793, + [SMALL_STATE(1672)] = 70839, + [SMALL_STATE(1673)] = 70885, + [SMALL_STATE(1674)] = 70929, + [SMALL_STATE(1675)] = 70975, + [SMALL_STATE(1676)] = 71019, + [SMALL_STATE(1677)] = 71065, + [SMALL_STATE(1678)] = 71119, + [SMALL_STATE(1679)] = 71163, + [SMALL_STATE(1680)] = 71209, + [SMALL_STATE(1681)] = 71263, + [SMALL_STATE(1682)] = 71317, + [SMALL_STATE(1683)] = 71367, + [SMALL_STATE(1684)] = 71413, + [SMALL_STATE(1685)] = 71463, + [SMALL_STATE(1686)] = 71509, + [SMALL_STATE(1687)] = 71554, + [SMALL_STATE(1688)] = 71597, + [SMALL_STATE(1689)] = 71640, + [SMALL_STATE(1690)] = 71683, + [SMALL_STATE(1691)] = 71728, + [SMALL_STATE(1692)] = 71771, + [SMALL_STATE(1693)] = 71814, + [SMALL_STATE(1694)] = 71859, + [SMALL_STATE(1695)] = 71902, + [SMALL_STATE(1696)] = 71945, + [SMALL_STATE(1697)] = 71988, + [SMALL_STATE(1698)] = 72031, + [SMALL_STATE(1699)] = 72076, + [SMALL_STATE(1700)] = 72119, + [SMALL_STATE(1701)] = 72162, + [SMALL_STATE(1702)] = 72205, + [SMALL_STATE(1703)] = 72248, + [SMALL_STATE(1704)] = 72291, + [SMALL_STATE(1705)] = 72334, + [SMALL_STATE(1706)] = 72377, + [SMALL_STATE(1707)] = 72422, + [SMALL_STATE(1708)] = 72465, + [SMALL_STATE(1709)] = 72508, + [SMALL_STATE(1710)] = 72551, + [SMALL_STATE(1711)] = 72594, + [SMALL_STATE(1712)] = 72637, + [SMALL_STATE(1713)] = 72680, + [SMALL_STATE(1714)] = 72723, + [SMALL_STATE(1715)] = 72766, + [SMALL_STATE(1716)] = 72809, + [SMALL_STATE(1717)] = 72852, + [SMALL_STATE(1718)] = 72895, + [SMALL_STATE(1719)] = 72938, + [SMALL_STATE(1720)] = 72981, + [SMALL_STATE(1721)] = 73025, + [SMALL_STATE(1722)] = 73067, + [SMALL_STATE(1723)] = 73109, + [SMALL_STATE(1724)] = 73151, + [SMALL_STATE(1725)] = 73193, + [SMALL_STATE(1726)] = 73235, + [SMALL_STATE(1727)] = 73277, + [SMALL_STATE(1728)] = 73319, + [SMALL_STATE(1729)] = 73361, + [SMALL_STATE(1730)] = 73403, + [SMALL_STATE(1731)] = 73445, + [SMALL_STATE(1732)] = 73487, + [SMALL_STATE(1733)] = 73529, + [SMALL_STATE(1734)] = 73571, + [SMALL_STATE(1735)] = 73613, + [SMALL_STATE(1736)] = 73655, + [SMALL_STATE(1737)] = 73699, + [SMALL_STATE(1738)] = 73741, + [SMALL_STATE(1739)] = 73783, + [SMALL_STATE(1740)] = 73825, + [SMALL_STATE(1741)] = 73866, + [SMALL_STATE(1742)] = 73907, + [SMALL_STATE(1743)] = 73933, + [SMALL_STATE(1744)] = 73954, + [SMALL_STATE(1745)] = 73975, + [SMALL_STATE(1746)] = 74008, + [SMALL_STATE(1747)] = 74041, + [SMALL_STATE(1748)] = 74074, + [SMALL_STATE(1749)] = 74093, + [SMALL_STATE(1750)] = 74126, + [SMALL_STATE(1751)] = 74159, + [SMALL_STATE(1752)] = 74192, + [SMALL_STATE(1753)] = 74225, + [SMALL_STATE(1754)] = 74258, + [SMALL_STATE(1755)] = 74291, + [SMALL_STATE(1756)] = 74324, + [SMALL_STATE(1757)] = 74357, + [SMALL_STATE(1758)] = 74390, + [SMALL_STATE(1759)] = 74411, + [SMALL_STATE(1760)] = 74432, + [SMALL_STATE(1761)] = 74453, + [SMALL_STATE(1762)] = 74474, + [SMALL_STATE(1763)] = 74495, + [SMALL_STATE(1764)] = 74516, + [SMALL_STATE(1765)] = 74537, + [SMALL_STATE(1766)] = 74558, + [SMALL_STATE(1767)] = 74579, + [SMALL_STATE(1768)] = 74600, + [SMALL_STATE(1769)] = 74621, + [SMALL_STATE(1770)] = 74642, + [SMALL_STATE(1771)] = 74663, + [SMALL_STATE(1772)] = 74684, + [SMALL_STATE(1773)] = 74705, + [SMALL_STATE(1774)] = 74726, + [SMALL_STATE(1775)] = 74747, + [SMALL_STATE(1776)] = 74768, + [SMALL_STATE(1777)] = 74789, + [SMALL_STATE(1778)] = 74810, + [SMALL_STATE(1779)] = 74831, + [SMALL_STATE(1780)] = 74852, + [SMALL_STATE(1781)] = 74873, + [SMALL_STATE(1782)] = 74894, + [SMALL_STATE(1783)] = 74915, + [SMALL_STATE(1784)] = 74936, + [SMALL_STATE(1785)] = 74957, + [SMALL_STATE(1786)] = 74978, + [SMALL_STATE(1787)] = 74999, + [SMALL_STATE(1788)] = 75020, + [SMALL_STATE(1789)] = 75041, + [SMALL_STATE(1790)] = 75062, + [SMALL_STATE(1791)] = 75083, + [SMALL_STATE(1792)] = 75104, + [SMALL_STATE(1793)] = 75125, + [SMALL_STATE(1794)] = 75146, + [SMALL_STATE(1795)] = 75162, + [SMALL_STATE(1796)] = 75178, + [SMALL_STATE(1797)] = 75204, + [SMALL_STATE(1798)] = 75232, + [SMALL_STATE(1799)] = 75262, + [SMALL_STATE(1800)] = 75290, + [SMALL_STATE(1801)] = 75318, + [SMALL_STATE(1802)] = 75334, + [SMALL_STATE(1803)] = 75364, + [SMALL_STATE(1804)] = 75380, + [SMALL_STATE(1805)] = 75408, + [SMALL_STATE(1806)] = 75424, + [SMALL_STATE(1807)] = 75440, + [SMALL_STATE(1808)] = 75456, + [SMALL_STATE(1809)] = 75472, + [SMALL_STATE(1810)] = 75502, + [SMALL_STATE(1811)] = 75532, + [SMALL_STATE(1812)] = 75548, + [SMALL_STATE(1813)] = 75564, + [SMALL_STATE(1814)] = 75580, + [SMALL_STATE(1815)] = 75596, + [SMALL_STATE(1816)] = 75624, + [SMALL_STATE(1817)] = 75640, + [SMALL_STATE(1818)] = 75668, + [SMALL_STATE(1819)] = 75684, + [SMALL_STATE(1820)] = 75707, + [SMALL_STATE(1821)] = 75728, + [SMALL_STATE(1822)] = 75749, + [SMALL_STATE(1823)] = 75776, + [SMALL_STATE(1824)] = 75803, + [SMALL_STATE(1825)] = 75830, + [SMALL_STATE(1826)] = 75857, + [SMALL_STATE(1827)] = 75884, + [SMALL_STATE(1828)] = 75907, + [SMALL_STATE(1829)] = 75934, + [SMALL_STATE(1830)] = 75955, + [SMALL_STATE(1831)] = 75973, + [SMALL_STATE(1832)] = 75991, + [SMALL_STATE(1833)] = 76009, + [SMALL_STATE(1834)] = 76027, + [SMALL_STATE(1835)] = 76045, + [SMALL_STATE(1836)] = 76063, + [SMALL_STATE(1837)] = 76081, + [SMALL_STATE(1838)] = 76099, + [SMALL_STATE(1839)] = 76117, + [SMALL_STATE(1840)] = 76135, + [SMALL_STATE(1841)] = 76153, + [SMALL_STATE(1842)] = 76171, + [SMALL_STATE(1843)] = 76189, + [SMALL_STATE(1844)] = 76207, + [SMALL_STATE(1845)] = 76225, + [SMALL_STATE(1846)] = 76243, + [SMALL_STATE(1847)] = 76261, + [SMALL_STATE(1848)] = 76279, + [SMALL_STATE(1849)] = 76297, + [SMALL_STATE(1850)] = 76315, + [SMALL_STATE(1851)] = 76333, + [SMALL_STATE(1852)] = 76351, + [SMALL_STATE(1853)] = 76369, + [SMALL_STATE(1854)] = 76387, + [SMALL_STATE(1855)] = 76405, + [SMALL_STATE(1856)] = 76423, + [SMALL_STATE(1857)] = 76441, + [SMALL_STATE(1858)] = 76459, + [SMALL_STATE(1859)] = 76477, + [SMALL_STATE(1860)] = 76495, + [SMALL_STATE(1861)] = 76513, + [SMALL_STATE(1862)] = 76531, + [SMALL_STATE(1863)] = 76549, + [SMALL_STATE(1864)] = 76567, + [SMALL_STATE(1865)] = 76585, + [SMALL_STATE(1866)] = 76603, + [SMALL_STATE(1867)] = 76621, + [SMALL_STATE(1868)] = 76639, + [SMALL_STATE(1869)] = 76657, + [SMALL_STATE(1870)] = 76675, + [SMALL_STATE(1871)] = 76693, + [SMALL_STATE(1872)] = 76711, + [SMALL_STATE(1873)] = 76729, + [SMALL_STATE(1874)] = 76747, + [SMALL_STATE(1875)] = 76765, + [SMALL_STATE(1876)] = 76783, + [SMALL_STATE(1877)] = 76801, + [SMALL_STATE(1878)] = 76819, + [SMALL_STATE(1879)] = 76837, + [SMALL_STATE(1880)] = 76855, + [SMALL_STATE(1881)] = 76873, + [SMALL_STATE(1882)] = 76891, + [SMALL_STATE(1883)] = 76909, + [SMALL_STATE(1884)] = 76927, + [SMALL_STATE(1885)] = 76945, + [SMALL_STATE(1886)] = 76963, + [SMALL_STATE(1887)] = 76981, + [SMALL_STATE(1888)] = 76999, + [SMALL_STATE(1889)] = 77017, + [SMALL_STATE(1890)] = 77035, + [SMALL_STATE(1891)] = 77053, + [SMALL_STATE(1892)] = 77071, + [SMALL_STATE(1893)] = 77089, + [SMALL_STATE(1894)] = 77107, + [SMALL_STATE(1895)] = 77125, + [SMALL_STATE(1896)] = 77143, + [SMALL_STATE(1897)] = 77161, + [SMALL_STATE(1898)] = 77179, + [SMALL_STATE(1899)] = 77197, + [SMALL_STATE(1900)] = 77215, + [SMALL_STATE(1901)] = 77233, + [SMALL_STATE(1902)] = 77251, + [SMALL_STATE(1903)] = 77269, + [SMALL_STATE(1904)] = 77287, + [SMALL_STATE(1905)] = 77305, + [SMALL_STATE(1906)] = 77323, + [SMALL_STATE(1907)] = 77341, + [SMALL_STATE(1908)] = 77359, + [SMALL_STATE(1909)] = 77377, + [SMALL_STATE(1910)] = 77395, + [SMALL_STATE(1911)] = 77413, + [SMALL_STATE(1912)] = 77431, + [SMALL_STATE(1913)] = 77449, + [SMALL_STATE(1914)] = 77467, + [SMALL_STATE(1915)] = 77485, + [SMALL_STATE(1916)] = 77503, + [SMALL_STATE(1917)] = 77521, + [SMALL_STATE(1918)] = 77539, + [SMALL_STATE(1919)] = 77557, + [SMALL_STATE(1920)] = 77575, + [SMALL_STATE(1921)] = 77593, + [SMALL_STATE(1922)] = 77614, + [SMALL_STATE(1923)] = 77635, + [SMALL_STATE(1924)] = 77656, + [SMALL_STATE(1925)] = 77677, + [SMALL_STATE(1926)] = 77694, + [SMALL_STATE(1927)] = 77715, + [SMALL_STATE(1928)] = 77736, + [SMALL_STATE(1929)] = 77761, + [SMALL_STATE(1930)] = 77782, + [SMALL_STATE(1931)] = 77803, + [SMALL_STATE(1932)] = 77828, + [SMALL_STATE(1933)] = 77849, + [SMALL_STATE(1934)] = 77870, + [SMALL_STATE(1935)] = 77891, + [SMALL_STATE(1936)] = 77912, + [SMALL_STATE(1937)] = 77933, + [SMALL_STATE(1938)] = 77954, + [SMALL_STATE(1939)] = 77979, + [SMALL_STATE(1940)] = 78000, + [SMALL_STATE(1941)] = 78021, + [SMALL_STATE(1942)] = 78042, + [SMALL_STATE(1943)] = 78063, + [SMALL_STATE(1944)] = 78084, + [SMALL_STATE(1945)] = 78109, + [SMALL_STATE(1946)] = 78130, + [SMALL_STATE(1947)] = 78155, + [SMALL_STATE(1948)] = 78176, + [SMALL_STATE(1949)] = 78197, + [SMALL_STATE(1950)] = 78218, + [SMALL_STATE(1951)] = 78239, + [SMALL_STATE(1952)] = 78260, + [SMALL_STATE(1953)] = 78281, + [SMALL_STATE(1954)] = 78302, + [SMALL_STATE(1955)] = 78323, + [SMALL_STATE(1956)] = 78344, + [SMALL_STATE(1957)] = 78365, + [SMALL_STATE(1958)] = 78382, + [SMALL_STATE(1959)] = 78407, + [SMALL_STATE(1960)] = 78428, + [SMALL_STATE(1961)] = 78449, + [SMALL_STATE(1962)] = 78470, + [SMALL_STATE(1963)] = 78495, + [SMALL_STATE(1964)] = 78516, + [SMALL_STATE(1965)] = 78537, + [SMALL_STATE(1966)] = 78558, + [SMALL_STATE(1967)] = 78579, + [SMALL_STATE(1968)] = 78600, + [SMALL_STATE(1969)] = 78621, + [SMALL_STATE(1970)] = 78642, + [SMALL_STATE(1971)] = 78663, + [SMALL_STATE(1972)] = 78684, + [SMALL_STATE(1973)] = 78709, + [SMALL_STATE(1974)] = 78730, + [SMALL_STATE(1975)] = 78751, + [SMALL_STATE(1976)] = 78772, + [SMALL_STATE(1977)] = 78793, + [SMALL_STATE(1978)] = 78814, + [SMALL_STATE(1979)] = 78839, + [SMALL_STATE(1980)] = 78860, + [SMALL_STATE(1981)] = 78881, + [SMALL_STATE(1982)] = 78906, + [SMALL_STATE(1983)] = 78927, + [SMALL_STATE(1984)] = 78948, + [SMALL_STATE(1985)] = 78969, + [SMALL_STATE(1986)] = 78990, + [SMALL_STATE(1987)] = 79007, + [SMALL_STATE(1988)] = 79028, + [SMALL_STATE(1989)] = 79049, + [SMALL_STATE(1990)] = 79070, + [SMALL_STATE(1991)] = 79091, + [SMALL_STATE(1992)] = 79112, + [SMALL_STATE(1993)] = 79133, + [SMALL_STATE(1994)] = 79154, + [SMALL_STATE(1995)] = 79175, + [SMALL_STATE(1996)] = 79196, + [SMALL_STATE(1997)] = 79217, + [SMALL_STATE(1998)] = 79238, + [SMALL_STATE(1999)] = 79259, + [SMALL_STATE(2000)] = 79280, + [SMALL_STATE(2001)] = 79301, + [SMALL_STATE(2002)] = 79322, + [SMALL_STATE(2003)] = 79343, + [SMALL_STATE(2004)] = 79365, + [SMALL_STATE(2005)] = 79379, + [SMALL_STATE(2006)] = 79401, + [SMALL_STATE(2007)] = 79423, + [SMALL_STATE(2008)] = 79445, + [SMALL_STATE(2009)] = 79467, + [SMALL_STATE(2010)] = 79489, + [SMALL_STATE(2011)] = 79511, + [SMALL_STATE(2012)] = 79525, + [SMALL_STATE(2013)] = 79547, + [SMALL_STATE(2014)] = 79569, + [SMALL_STATE(2015)] = 79591, + [SMALL_STATE(2016)] = 79605, + [SMALL_STATE(2017)] = 79616, + [SMALL_STATE(2018)] = 79627, + [SMALL_STATE(2019)] = 79638, + [SMALL_STATE(2020)] = 79649, + [SMALL_STATE(2021)] = 79660, + [SMALL_STATE(2022)] = 79671, + [SMALL_STATE(2023)] = 79682, + [SMALL_STATE(2024)] = 79693, + [SMALL_STATE(2025)] = 79704, + [SMALL_STATE(2026)] = 79719, + [SMALL_STATE(2027)] = 79730, + [SMALL_STATE(2028)] = 79741, + [SMALL_STATE(2029)] = 79752, + [SMALL_STATE(2030)] = 79763, + [SMALL_STATE(2031)] = 79774, + [SMALL_STATE(2032)] = 79785, + [SMALL_STATE(2033)] = 79796, + [SMALL_STATE(2034)] = 79807, + [SMALL_STATE(2035)] = 79817, + [SMALL_STATE(2036)] = 79827, + [SMALL_STATE(2037)] = 79843, + [SMALL_STATE(2038)] = 79859, + [SMALL_STATE(2039)] = 79875, + [SMALL_STATE(2040)] = 79889, + [SMALL_STATE(2041)] = 79905, + [SMALL_STATE(2042)] = 79921, + [SMALL_STATE(2043)] = 79935, + [SMALL_STATE(2044)] = 79951, + [SMALL_STATE(2045)] = 79961, + [SMALL_STATE(2046)] = 79977, + [SMALL_STATE(2047)] = 79987, + [SMALL_STATE(2048)] = 80003, + [SMALL_STATE(2049)] = 80019, + [SMALL_STATE(2050)] = 80035, + [SMALL_STATE(2051)] = 80051, + [SMALL_STATE(2052)] = 80067, + [SMALL_STATE(2053)] = 80077, + [SMALL_STATE(2054)] = 80093, + [SMALL_STATE(2055)] = 80109, + [SMALL_STATE(2056)] = 80125, + [SMALL_STATE(2057)] = 80141, + [SMALL_STATE(2058)] = 80157, + [SMALL_STATE(2059)] = 80173, + [SMALL_STATE(2060)] = 80185, + [SMALL_STATE(2061)] = 80201, + [SMALL_STATE(2062)] = 80209, + [SMALL_STATE(2063)] = 80221, + [SMALL_STATE(2064)] = 80237, + [SMALL_STATE(2065)] = 80249, + [SMALL_STATE(2066)] = 80265, + [SMALL_STATE(2067)] = 80277, + [SMALL_STATE(2068)] = 80293, + [SMALL_STATE(2069)] = 80306, + [SMALL_STATE(2070)] = 80319, + [SMALL_STATE(2071)] = 80332, + [SMALL_STATE(2072)] = 80341, + [SMALL_STATE(2073)] = 80352, + [SMALL_STATE(2074)] = 80363, + [SMALL_STATE(2075)] = 80372, + [SMALL_STATE(2076)] = 80385, + [SMALL_STATE(2077)] = 80398, + [SMALL_STATE(2078)] = 80409, + [SMALL_STATE(2079)] = 80420, + [SMALL_STATE(2080)] = 80431, + [SMALL_STATE(2081)] = 80442, + [SMALL_STATE(2082)] = 80451, + [SMALL_STATE(2083)] = 80464, + [SMALL_STATE(2084)] = 80477, + [SMALL_STATE(2085)] = 80486, + [SMALL_STATE(2086)] = 80499, + [SMALL_STATE(2087)] = 80512, + [SMALL_STATE(2088)] = 80525, + [SMALL_STATE(2089)] = 80538, + [SMALL_STATE(2090)] = 80551, + [SMALL_STATE(2091)] = 80564, + [SMALL_STATE(2092)] = 80575, + [SMALL_STATE(2093)] = 80586, + [SMALL_STATE(2094)] = 80599, + [SMALL_STATE(2095)] = 80609, + [SMALL_STATE(2096)] = 80619, + [SMALL_STATE(2097)] = 80629, + [SMALL_STATE(2098)] = 80639, + [SMALL_STATE(2099)] = 80649, + [SMALL_STATE(2100)] = 80659, + [SMALL_STATE(2101)] = 80669, + [SMALL_STATE(2102)] = 80679, + [SMALL_STATE(2103)] = 80689, + [SMALL_STATE(2104)] = 80699, + [SMALL_STATE(2105)] = 80709, + [SMALL_STATE(2106)] = 80717, + [SMALL_STATE(2107)] = 80727, + [SMALL_STATE(2108)] = 80737, + [SMALL_STATE(2109)] = 80747, + [SMALL_STATE(2110)] = 80757, + [SMALL_STATE(2111)] = 80767, + [SMALL_STATE(2112)] = 80777, + [SMALL_STATE(2113)] = 80787, + [SMALL_STATE(2114)] = 80797, + [SMALL_STATE(2115)] = 80807, + [SMALL_STATE(2116)] = 80817, + [SMALL_STATE(2117)] = 80827, + [SMALL_STATE(2118)] = 80837, + [SMALL_STATE(2119)] = 80847, + [SMALL_STATE(2120)] = 80857, + [SMALL_STATE(2121)] = 80867, + [SMALL_STATE(2122)] = 80877, + [SMALL_STATE(2123)] = 80887, + [SMALL_STATE(2124)] = 80897, + [SMALL_STATE(2125)] = 80907, + [SMALL_STATE(2126)] = 80914, + [SMALL_STATE(2127)] = 80921, + [SMALL_STATE(2128)] = 80928, + [SMALL_STATE(2129)] = 80935, + [SMALL_STATE(2130)] = 80942, + [SMALL_STATE(2131)] = 80949, + [SMALL_STATE(2132)] = 80956, + [SMALL_STATE(2133)] = 80963, + [SMALL_STATE(2134)] = 80970, + [SMALL_STATE(2135)] = 80977, + [SMALL_STATE(2136)] = 80984, + [SMALL_STATE(2137)] = 80991, + [SMALL_STATE(2138)] = 80998, + [SMALL_STATE(2139)] = 81005, + [SMALL_STATE(2140)] = 81012, + [SMALL_STATE(2141)] = 81019, + [SMALL_STATE(2142)] = 81026, + [SMALL_STATE(2143)] = 81033, + [SMALL_STATE(2144)] = 81040, + [SMALL_STATE(2145)] = 81047, + [SMALL_STATE(2146)] = 81054, + [SMALL_STATE(2147)] = 81061, + [SMALL_STATE(2148)] = 81068, + [SMALL_STATE(2149)] = 81075, + [SMALL_STATE(2150)] = 81082, + [SMALL_STATE(2151)] = 81089, + [SMALL_STATE(2152)] = 81096, + [SMALL_STATE(2153)] = 81103, + [SMALL_STATE(2154)] = 81110, + [SMALL_STATE(2155)] = 81117, + [SMALL_STATE(2156)] = 81124, + [SMALL_STATE(2157)] = 81131, + [SMALL_STATE(2158)] = 81138, + [SMALL_STATE(2159)] = 81145, + [SMALL_STATE(2160)] = 81152, + [SMALL_STATE(2161)] = 81159, + [SMALL_STATE(2162)] = 81166, + [SMALL_STATE(2163)] = 81173, + [SMALL_STATE(2164)] = 81180, + [SMALL_STATE(2165)] = 81187, + [SMALL_STATE(2166)] = 81194, + [SMALL_STATE(2167)] = 81201, + [SMALL_STATE(2168)] = 81208, + [SMALL_STATE(2169)] = 81215, + [SMALL_STATE(2170)] = 81222, + [SMALL_STATE(2171)] = 81229, + [SMALL_STATE(2172)] = 81236, + [SMALL_STATE(2173)] = 81243, + [SMALL_STATE(2174)] = 81250, + [SMALL_STATE(2175)] = 81257, + [SMALL_STATE(2176)] = 81264, + [SMALL_STATE(2177)] = 81271, + [SMALL_STATE(2178)] = 81278, + [SMALL_STATE(2179)] = 81285, + [SMALL_STATE(2180)] = 81292, + [SMALL_STATE(2181)] = 81299, + [SMALL_STATE(2182)] = 81306, + [SMALL_STATE(2183)] = 81313, + [SMALL_STATE(2184)] = 81320, + [SMALL_STATE(2185)] = 81327, + [SMALL_STATE(2186)] = 81334, + [SMALL_STATE(2187)] = 81341, + [SMALL_STATE(2188)] = 81348, + [SMALL_STATE(2189)] = 81355, + [SMALL_STATE(2190)] = 81362, + [SMALL_STATE(2191)] = 81369, + [SMALL_STATE(2192)] = 81376, + [SMALL_STATE(2193)] = 81383, + [SMALL_STATE(2194)] = 81390, + [SMALL_STATE(2195)] = 81397, + [SMALL_STATE(2196)] = 81404, + [SMALL_STATE(2197)] = 81411, + [SMALL_STATE(2198)] = 81418, + [SMALL_STATE(2199)] = 81425, + [SMALL_STATE(2200)] = 81432, + [SMALL_STATE(2201)] = 81439, + [SMALL_STATE(2202)] = 81446, + [SMALL_STATE(2203)] = 81453, + [SMALL_STATE(2204)] = 81460, + [SMALL_STATE(2205)] = 81467, + [SMALL_STATE(2206)] = 81474, + [SMALL_STATE(2207)] = 81481, + [SMALL_STATE(2208)] = 81488, + [SMALL_STATE(2209)] = 81495, + [SMALL_STATE(2210)] = 81502, + [SMALL_STATE(2211)] = 81509, + [SMALL_STATE(2212)] = 81516, + [SMALL_STATE(2213)] = 81523, + [SMALL_STATE(2214)] = 81530, + [SMALL_STATE(2215)] = 81537, + [SMALL_STATE(2216)] = 81544, + [SMALL_STATE(2217)] = 81551, + [SMALL_STATE(2218)] = 81558, + [SMALL_STATE(2219)] = 81565, + [SMALL_STATE(2220)] = 81570, + [SMALL_STATE(2221)] = 81577, + [SMALL_STATE(2222)] = 81584, + [SMALL_STATE(2223)] = 81591, + [SMALL_STATE(2224)] = 81598, + [SMALL_STATE(2225)] = 81605, + [SMALL_STATE(2226)] = 81612, + [SMALL_STATE(2227)] = 81619, + [SMALL_STATE(2228)] = 81626, + [SMALL_STATE(2229)] = 81633, + [SMALL_STATE(2230)] = 81640, + [SMALL_STATE(2231)] = 81647, + [SMALL_STATE(2232)] = 81654, + [SMALL_STATE(2233)] = 81661, + [SMALL_STATE(2234)] = 81668, + [SMALL_STATE(2235)] = 81675, + [SMALL_STATE(2236)] = 81682, + [SMALL_STATE(2237)] = 81689, + [SMALL_STATE(2238)] = 81696, + [SMALL_STATE(2239)] = 81703, + [SMALL_STATE(2240)] = 81710, + [SMALL_STATE(2241)] = 81717, + [SMALL_STATE(2242)] = 81724, + [SMALL_STATE(2243)] = 81731, + [SMALL_STATE(2244)] = 81738, + [SMALL_STATE(2245)] = 81745, + [SMALL_STATE(2246)] = 81752, + [SMALL_STATE(2247)] = 81759, + [SMALL_STATE(2248)] = 81766, + [SMALL_STATE(2249)] = 81773, + [SMALL_STATE(2250)] = 81780, + [SMALL_STATE(2251)] = 81787, + [SMALL_STATE(2252)] = 81794, + [SMALL_STATE(2253)] = 81801, + [SMALL_STATE(2254)] = 81808, + [SMALL_STATE(2255)] = 81815, + [SMALL_STATE(2256)] = 81822, + [SMALL_STATE(2257)] = 81829, + [SMALL_STATE(2258)] = 81836, + [SMALL_STATE(2259)] = 81843, + [SMALL_STATE(2260)] = 81850, + [SMALL_STATE(2261)] = 81857, + [SMALL_STATE(2262)] = 81861, + [SMALL_STATE(2263)] = 81865, + [SMALL_STATE(2264)] = 81869, + [SMALL_STATE(2265)] = 81873, + [SMALL_STATE(2266)] = 81877, + [SMALL_STATE(2267)] = 81881, + [SMALL_STATE(2268)] = 81885, + [SMALL_STATE(2269)] = 81889, + [SMALL_STATE(2270)] = 81893, + [SMALL_STATE(2271)] = 81897, + [SMALL_STATE(2272)] = 81901, + [SMALL_STATE(2273)] = 81905, + [SMALL_STATE(2274)] = 81909, + [SMALL_STATE(2275)] = 81913, + [SMALL_STATE(2276)] = 81917, + [SMALL_STATE(2277)] = 81921, + [SMALL_STATE(2278)] = 81925, + [SMALL_STATE(2279)] = 81929, + [SMALL_STATE(2280)] = 81933, + [SMALL_STATE(2281)] = 81937, + [SMALL_STATE(2282)] = 81941, + [SMALL_STATE(2283)] = 81945, + [SMALL_STATE(2284)] = 81949, + [SMALL_STATE(2285)] = 81953, + [SMALL_STATE(2286)] = 81957, + [SMALL_STATE(2287)] = 81961, + [SMALL_STATE(2288)] = 81965, + [SMALL_STATE(2289)] = 81969, + [SMALL_STATE(2290)] = 81973, + [SMALL_STATE(2291)] = 81977, + [SMALL_STATE(2292)] = 81981, + [SMALL_STATE(2293)] = 81985, + [SMALL_STATE(2294)] = 81989, + [SMALL_STATE(2295)] = 81993, + [SMALL_STATE(2296)] = 81997, + [SMALL_STATE(2297)] = 82001, + [SMALL_STATE(2298)] = 82005, + [SMALL_STATE(2299)] = 82009, + [SMALL_STATE(2300)] = 82013, + [SMALL_STATE(2301)] = 82017, + [SMALL_STATE(2302)] = 82021, + [SMALL_STATE(2303)] = 82025, + [SMALL_STATE(2304)] = 82029, + [SMALL_STATE(2305)] = 82033, + [SMALL_STATE(2306)] = 82037, + [SMALL_STATE(2307)] = 82041, + [SMALL_STATE(2308)] = 82045, + [SMALL_STATE(2309)] = 82049, + [SMALL_STATE(2310)] = 82053, + [SMALL_STATE(2311)] = 82057, + [SMALL_STATE(2312)] = 82061, + [SMALL_STATE(2313)] = 82065, + [SMALL_STATE(2314)] = 82069, + [SMALL_STATE(2315)] = 82073, + [SMALL_STATE(2316)] = 82077, + [SMALL_STATE(2317)] = 82081, + [SMALL_STATE(2318)] = 82085, + [SMALL_STATE(2319)] = 82089, + [SMALL_STATE(2320)] = 82093, + [SMALL_STATE(2321)] = 82097, + [SMALL_STATE(2322)] = 82101, + [SMALL_STATE(2323)] = 82105, + [SMALL_STATE(2324)] = 82109, + [SMALL_STATE(2325)] = 82113, + [SMALL_STATE(2326)] = 82117, + [SMALL_STATE(2327)] = 82121, + [SMALL_STATE(2328)] = 82125, + [SMALL_STATE(2329)] = 82129, + [SMALL_STATE(2330)] = 82133, + [SMALL_STATE(2331)] = 82137, + [SMALL_STATE(2332)] = 82141, + [SMALL_STATE(2333)] = 82145, + [SMALL_STATE(2334)] = 82149, + [SMALL_STATE(2335)] = 82153, + [SMALL_STATE(2336)] = 82157, + [SMALL_STATE(2337)] = 82161, + [SMALL_STATE(2338)] = 82165, + [SMALL_STATE(2339)] = 82169, + [SMALL_STATE(2340)] = 82173, + [SMALL_STATE(2341)] = 82177, + [SMALL_STATE(2342)] = 82181, + [SMALL_STATE(2343)] = 82185, + [SMALL_STATE(2344)] = 82189, + [SMALL_STATE(2345)] = 82193, + [SMALL_STATE(2346)] = 82197, + [SMALL_STATE(2347)] = 82201, + [SMALL_STATE(2348)] = 82205, + [SMALL_STATE(2349)] = 82209, + [SMALL_STATE(2350)] = 82213, + [SMALL_STATE(2351)] = 82217, + [SMALL_STATE(2352)] = 82221, + [SMALL_STATE(2353)] = 82225, + [SMALL_STATE(2354)] = 82229, + [SMALL_STATE(2355)] = 82233, + [SMALL_STATE(2356)] = 82237, + [SMALL_STATE(2357)] = 82241, + [SMALL_STATE(2358)] = 82245, + [SMALL_STATE(2359)] = 82249, + [SMALL_STATE(2360)] = 82253, + [SMALL_STATE(2361)] = 82257, + [SMALL_STATE(2362)] = 82261, + [SMALL_STATE(2363)] = 82265, + [SMALL_STATE(2364)] = 82269, + [SMALL_STATE(2365)] = 82273, + [SMALL_STATE(2366)] = 82277, + [SMALL_STATE(2367)] = 82281, + [SMALL_STATE(2368)] = 82285, + [SMALL_STATE(2369)] = 82289, + [SMALL_STATE(2370)] = 82293, + [SMALL_STATE(2371)] = 82297, + [SMALL_STATE(2372)] = 82301, + [SMALL_STATE(2373)] = 82305, + [SMALL_STATE(2374)] = 82309, + [SMALL_STATE(2375)] = 82313, + [SMALL_STATE(2376)] = 82317, + [SMALL_STATE(2377)] = 82321, + [SMALL_STATE(2378)] = 82325, + [SMALL_STATE(2379)] = 82329, + [SMALL_STATE(2380)] = 82333, + [SMALL_STATE(2381)] = 82337, + [SMALL_STATE(2382)] = 82341, + [SMALL_STATE(2383)] = 82345, + [SMALL_STATE(2384)] = 82349, + [SMALL_STATE(2385)] = 82353, + [SMALL_STATE(2386)] = 82357, + [SMALL_STATE(2387)] = 82361, + [SMALL_STATE(2388)] = 82365, + [SMALL_STATE(2389)] = 82369, + [SMALL_STATE(2390)] = 82373, + [SMALL_STATE(2391)] = 82377, + [SMALL_STATE(2392)] = 82381, + [SMALL_STATE(2393)] = 82385, + [SMALL_STATE(2394)] = 82389, + [SMALL_STATE(2395)] = 82393, + [SMALL_STATE(2396)] = 82397, + [SMALL_STATE(2397)] = 82401, + [SMALL_STATE(2398)] = 82405, + [SMALL_STATE(2399)] = 82409, + [SMALL_STATE(2400)] = 82413, + [SMALL_STATE(2401)] = 82417, + [SMALL_STATE(2402)] = 82421, + [SMALL_STATE(2403)] = 82425, + [SMALL_STATE(2404)] = 82429, + [SMALL_STATE(2405)] = 82433, + [SMALL_STATE(2406)] = 82437, + [SMALL_STATE(2407)] = 82441, + [SMALL_STATE(2408)] = 82445, + [SMALL_STATE(2409)] = 82449, + [SMALL_STATE(2410)] = 82453, + [SMALL_STATE(2411)] = 82457, + [SMALL_STATE(2412)] = 82461, + [SMALL_STATE(2413)] = 82465, + [SMALL_STATE(2414)] = 82469, + [SMALL_STATE(2415)] = 82473, + [SMALL_STATE(2416)] = 82477, + [SMALL_STATE(2417)] = 82481, + [SMALL_STATE(2418)] = 82485, + [SMALL_STATE(2419)] = 82489, + [SMALL_STATE(2420)] = 82493, + [SMALL_STATE(2421)] = 82497, + [SMALL_STATE(2422)] = 82501, + [SMALL_STATE(2423)] = 82505, + [SMALL_STATE(2424)] = 82509, + [SMALL_STATE(2425)] = 82513, + [SMALL_STATE(2426)] = 82517, + [SMALL_STATE(2427)] = 82521, + [SMALL_STATE(2428)] = 82525, + [SMALL_STATE(2429)] = 82529, + [SMALL_STATE(2430)] = 82533, + [SMALL_STATE(2431)] = 82537, + [SMALL_STATE(2432)] = 82541, + [SMALL_STATE(2433)] = 82545, + [SMALL_STATE(2434)] = 82549, + [SMALL_STATE(2435)] = 82553, + [SMALL_STATE(2436)] = 82557, + [SMALL_STATE(2437)] = 82561, + [SMALL_STATE(2438)] = 82565, + [SMALL_STATE(2439)] = 82569, + [SMALL_STATE(2440)] = 82573, + [SMALL_STATE(2441)] = 82577, + [SMALL_STATE(2442)] = 82581, + [SMALL_STATE(2443)] = 82585, + [SMALL_STATE(2444)] = 82589, + [SMALL_STATE(2445)] = 82593, + [SMALL_STATE(2446)] = 82597, + [SMALL_STATE(2447)] = 82601, + [SMALL_STATE(2448)] = 82605, + [SMALL_STATE(2449)] = 82609, + [SMALL_STATE(2450)] = 82613, + [SMALL_STATE(2451)] = 82617, + [SMALL_STATE(2452)] = 82621, + [SMALL_STATE(2453)] = 82625, + [SMALL_STATE(2454)] = 82629, + [SMALL_STATE(2455)] = 82633, + [SMALL_STATE(2456)] = 82637, + [SMALL_STATE(2457)] = 82641, + [SMALL_STATE(2458)] = 82645, + [SMALL_STATE(2459)] = 82649, + [SMALL_STATE(2460)] = 82653, + [SMALL_STATE(2461)] = 82657, + [SMALL_STATE(2462)] = 82661, + [SMALL_STATE(2463)] = 82665, + [SMALL_STATE(2464)] = 82669, + [SMALL_STATE(2465)] = 82673, + [SMALL_STATE(2466)] = 82677, + [SMALL_STATE(2467)] = 82681, + [SMALL_STATE(2468)] = 82685, + [SMALL_STATE(2469)] = 82689, + [SMALL_STATE(2470)] = 82693, + [SMALL_STATE(2471)] = 82697, + [SMALL_STATE(2472)] = 82701, + [SMALL_STATE(2473)] = 82705, + [SMALL_STATE(2474)] = 82709, + [SMALL_STATE(2475)] = 82713, + [SMALL_STATE(2476)] = 82717, + [SMALL_STATE(2477)] = 82721, + [SMALL_STATE(2478)] = 82725, + [SMALL_STATE(2479)] = 82729, + [SMALL_STATE(2480)] = 82733, + [SMALL_STATE(2481)] = 82737, + [SMALL_STATE(2482)] = 82741, + [SMALL_STATE(2483)] = 82745, + [SMALL_STATE(2484)] = 82749, + [SMALL_STATE(2485)] = 82753, + [SMALL_STATE(2486)] = 82757, + [SMALL_STATE(2487)] = 82761, + [SMALL_STATE(2488)] = 82765, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2269), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(724), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(732), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(732), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(651), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(435), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(608), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(473), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(475), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(624), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(491), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2274), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2445), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2275), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2446), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(251), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(461), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(463), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2026), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1148), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(344), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2246), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(348), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(356), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(342), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(350), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(351), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1029), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1012), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2247), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(469), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(328), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(321), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2448), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(488), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(472), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(628), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(477), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2429), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2428), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2417), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2416), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(265), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(18), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1196), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(347), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2200), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1014), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1017), - [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2126), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 3), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 3), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ignore_matching_tokens, 2), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(81), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 3), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 3), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(85), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 1), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 1), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(96), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(100), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(103), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 2), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 2), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(109), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 1), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 1), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 4), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 4), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 3), - [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 3), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 5), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 5), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 5), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 5), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1081), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1082), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1205), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2022), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2022), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 5), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 5), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 5), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 5), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 5), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 5), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 5), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 5), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 4), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 4), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 4), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 4), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 5), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 5), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 4), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 4), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 4), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 4), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 4), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 4), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 4), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 4), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1081), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1082), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1205), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2022), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2022), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(671), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(666), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(666), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(617), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(436), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(562), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(470), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(489), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(618), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(483), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(255), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(586), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(650), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2026), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(466), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(331), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(252), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1148), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2247), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 3), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 3), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 3), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 3), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 3), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 3), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 3), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 3), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 3), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 3), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 6), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 6), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 3), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 3), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(197), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 6), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 6), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(356), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), SHIFT_REPEAT(348), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(342), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), SHIFT_REPEAT(351), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), SHIFT_REPEAT(350), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 9), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 9), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 9), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 9), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1081), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1082), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1205), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2022), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2022), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 8), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 8), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 8), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 8), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(236), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1081), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1082), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1205), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2022), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2022), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(671), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(666), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(666), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(617), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(436), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(562), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(470), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(489), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(618), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(483), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(243), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(586), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(650), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(2026), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(466), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(331), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(252), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(665), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(664), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(664), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(626), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(437), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(545), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(479), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(480), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(627), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(487), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(247), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(506), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(656), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2026), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(465), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(171), - [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(318), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(665), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(664), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(664), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(626), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(437), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(545), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(479), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(480), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(627), - [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(487), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(170), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(506), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(656), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2026), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(465), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(171), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(318), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), - [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1081), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1082), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1205), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2022), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2022), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 7), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 7), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 7), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 7), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1196), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2126), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(319), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(665), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(664), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(664), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(626), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(437), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(545), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(479), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(480), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(627), - [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(487), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(116), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(506), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(656), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2026), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(465), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(171), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(318), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(671), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(666), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(666), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(617), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(436), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(562), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(470), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(489), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(618), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(483), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(178), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(586), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(650), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(466), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(331), - [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(252), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(724), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(732), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(732), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(651), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(440), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(608), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(502), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(497), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(668), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(494), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(337), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(619), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(720), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(2026), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(469), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(328), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(321), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 2), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 2), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 1), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 1), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 6), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(677), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(666), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(666), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(617), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(439), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(591), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(493), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(492), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(598), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(490), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(385), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(530), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(650), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(500), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(434), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(430), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(781), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(664), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(664), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(626), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(438), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(594), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(486), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(484), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(601), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(482), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(387), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(565), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(656), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(504), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(425), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(432), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_heading, 3, .production_id = 5), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_heading, 3, .production_id = 5), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 2), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 2), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(781), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(438), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(594), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(486), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(484), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(601), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(482), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(421), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(565), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 1), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(504), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(425), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(432), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 3, .production_id = 4), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 3, .production_id = 4), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(724), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(732), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(732), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(651), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(440), - [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(608), - [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(502), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(497), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(668), - [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(494), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(899), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(619), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(720), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(503), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(423), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(397), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(677), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(439), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(591), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(493), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(492), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(598), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(490), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(429), - [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(530), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(500), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(434), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(430), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(677), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(439), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(591), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(493), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(492), - [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(598), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(490), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(419), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(530), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(500), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(434), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(430), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(781), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(438), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(594), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(486), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(484), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(601), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(482), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(391), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(565), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(504), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(425), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(432), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(814), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(934), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(934), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(812), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(657), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2199), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(499), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(496), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(809), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(501), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(955), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(442), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(619), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(720), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(745), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(468), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(445), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(443), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(814), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(934), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(934), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(812), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(657), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2199), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(499), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(496), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(809), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(501), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(446), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(619), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(720), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(468), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(445), - [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(443), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(814), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(934), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(934), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(812), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(657), - [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2199), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(499), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(496), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(809), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(501), - [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(448), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(619), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(720), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(468), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(445), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(443), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(703), - [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(842), - [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(842), - [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(701), - [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(652), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(485), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(476), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(699), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(474), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(441), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(506), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(656), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2026), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(462), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(454), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(458), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(711), - [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(857), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(857), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(708), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(669), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(481), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(471), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(706), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(478), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(453), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(586), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(650), - [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(464), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(457), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(447), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(703), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(842), - [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(842), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(701), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(652), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(485), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(476), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(699), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(474), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(452), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(506), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(656), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2026), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(462), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(454), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(458), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(711), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(857), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(857), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(708), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(669), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(481), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(471), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(706), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(478), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(450), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(586), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(650), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(2026), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(464), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(457), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(447), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(703), - [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(842), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(842), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(701), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(652), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(485), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(476), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(699), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(474), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(451), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(506), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(656), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(2026), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(462), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(454), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(458), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(711), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(857), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(857), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(708), - [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(669), - [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(481), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(471), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(706), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(478), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(455), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(586), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(650), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2026), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(464), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(457), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(447), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(814), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(934), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(934), - [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(812), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(657), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(499), - [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(496), - [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(809), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(501), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(456), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(619), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(720), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(2026), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(468), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(445), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(443), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 1), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(953), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1), - [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__whitespace, 1), SHIFT(2026), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1665), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1665), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1658), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1658), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1102), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1665), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1665), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1658), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1658), - [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1089), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1665), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1665), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), - [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1658), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1658), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1102), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1665), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1665), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1658), - [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1658), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1089), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1665), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1665), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1658), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1658), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1092), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1665), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1665), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1658), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1658), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1092), - [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1181), - [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1181), - [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1668), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1673), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1651), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1651), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1446), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1344), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1654), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1654), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1670), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1670), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1444), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1285), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1654), - [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1654), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1670), - [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1670), - [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1270), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1285), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1189), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1189), - [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1667), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1673), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1651), - [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1651), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1268), - [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1344), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1681), - [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1681), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1677), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1677), - [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1407), - [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1404), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1654), - [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1654), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1670), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1670), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1409), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1285), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1681), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1681), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1677), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1677), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1276), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1404), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1681), - [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1681), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1677), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1677), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1442), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1404), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1217), - [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1217), - [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1674), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1673), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1651), - [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1651), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1411), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1344), - [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1654), - [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1654), - [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1670), - [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1670), - [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1409), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1285), - [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1181), - [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1181), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1668), - [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1673), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1651), - [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1651), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1446), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1344), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1681), - [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1681), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1677), - [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1677), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1407), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1681), - [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1681), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1677), - [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1677), - [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1442), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1404), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1217), - [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1217), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1674), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1673), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1651), - [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1651), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1411), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1344), - [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1404), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1654), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1654), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1670), - [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1670), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1444), - [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1285), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1654), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1654), - [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1670), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1670), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1270), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1285), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1189), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1189), - [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1667), - [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1673), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1651), - [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1651), - [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1268), - [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1344), - [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1482), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1681), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1681), - [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1677), - [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1677), - [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1276), - [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1404), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1485), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1515), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2450), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(703), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(700), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(700), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(666), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(437), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(603), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(493), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(477), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(630), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(473), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2431), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2430), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2419), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2418), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(912), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(461), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(464), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2025), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(35), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1255), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(350), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2200), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(368), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(343), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(362), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(367), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(369), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1029), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1028), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2127), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(467), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(326), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(325), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2271), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(490), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(489), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(640), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(471), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2276), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2447), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2277), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2448), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(14), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1233), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(358), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2245), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1024), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(1018), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2242), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 3), + [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 3), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1), + [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ignore_matching_tokens, 2), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(78), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 3), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 3), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(90), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 1), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 1), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(96), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_end_newline, 2), + [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_end_newline, 2), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(98), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 1), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 1), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 1), REDUCE(aux_sym__paragraph_end_newline_repeat1, 1), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paragraph_end_newline_repeat1, 2), SHIFT_REPEAT(102), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(106), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 7), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 7), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 7), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 7), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1096), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1097), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(1190), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2030), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 10), SHIFT(2030), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 6), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 6), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 6), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 6), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1096), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1097), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(1190), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2030), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 5, .dynamic_precedence = 10), SHIFT(2030), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 5), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 5), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 5), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 5), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 5), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 5), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 5), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 5), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 5), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 5), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 5), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 5), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 5), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 5), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1096), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1097), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(1190), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2030), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 4, .dynamic_precedence = 10), SHIFT(2030), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 4), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 4), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 4), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 4), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 4), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 4), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 4), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 4), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 4), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 4), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 4), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 4), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 4), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 4), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1096), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1097), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(1190), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2030), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 10), SHIFT(2030), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 8), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 8), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 8), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 8), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1096), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1097), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(1190), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2030), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 10), SHIFT(2030), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1233), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2242), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 3), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 3), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 3), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 3), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_5, 3), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_5, 3), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_4, 3), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_4, 3), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_3, 3), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_3, 3), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_2, 3), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_2, 3), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_1, 3), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_1, 3), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(650), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(652), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(652), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(624), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(435), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(512), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(487), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(485), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(610), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(470), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(316), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(521), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(654), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2025), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(463), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(331), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(235), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_6, 9), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_6, 9), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(199), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_block_7, 9), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_block_7, 9), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2), SHIFT_REPEAT(343), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2), SHIFT_REPEAT(368), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2), SHIFT_REPEAT(362), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2), SHIFT_REPEAT(369), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2), SHIFT_REPEAT(367), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(1255), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2), SHIFT_REPEAT(2127), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(225), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(664), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(669), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(669), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(618), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(436), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(588), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(479), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(492), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(633), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(488), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(125), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(507), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(651), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2025), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(462), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(197), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(337), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(650), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(652), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(652), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(624), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(435), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(512), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(487), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(485), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(610), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(470), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(245), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(521), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(654), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(2025), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(463), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(331), + [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), SHIFT_REPEAT(235), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star, 2), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(664), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(669), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(669), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(618), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(436), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(588), + [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(479), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(492), + [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(633), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(488), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(249), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(507), + [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(651), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(2025), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(462), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(197), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), SHIFT_REPEAT(337), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore, 2), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(664), + [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(669), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(669), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(618), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(436), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(588), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(479), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(492), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(633), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(488), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(117), + [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(507), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(651), + [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2025), + [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(462), + [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(197), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(337), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(650), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(652), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(652), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(624), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(435), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(512), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(487), + [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(485), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(610), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(470), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(202), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(521), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(654), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(463), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(331), + [1616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(235), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(703), + [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(700), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(700), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(666), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(440), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(603), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(498), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(497), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(670), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(496), + [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(912), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(634), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(680), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(2025), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(467), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(326), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline, 2), SHIFT_REPEAT(325), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(333), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(792), + [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(438), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(510), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(482), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(480), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(599), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(478), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(418), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(597), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(499), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(376), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(433), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 2), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 2), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(708), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(439), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(511), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(486), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(484), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(647), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(483), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(380), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(508), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(500), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(431), + [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(372), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 2), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 2), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 13, .dynamic_precedence = 20), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(708), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(652), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(652), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(624), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(439), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(511), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(486), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(484), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(647), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(483), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(381), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(508), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(654), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(500), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(431), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), SHIFT_REPEAT(372), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_star, 2), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 6), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(792), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(669), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(669), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(618), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(438), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(510), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(482), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(480), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(599), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(478), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(383), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(597), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(651), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(499), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(376), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), SHIFT_REPEAT(433), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline_no_underscore, 2), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_block, 1), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_block, 1), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(708), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(439), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(511), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(486), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(484), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(647), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(483), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(373), + [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(508), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 1), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(500), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(431), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(372), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atx_heading, 3, .production_id = 2), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atx_heading, 3, .production_id = 2), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(703), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(700), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(700), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(666), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(440), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(603), + [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(498), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(497), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(670), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(496), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(886), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(634), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(680), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(503), + [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(390), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 2), SHIFT_REPEAT(426), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_heading, 3, .production_id = 4), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_heading, 3, .production_id = 4), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 12, .dynamic_precedence = 20), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 11, .dynamic_precedence = 20), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 10, .dynamic_precedence = 20), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 9, .dynamic_precedence = 20), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 8, .dynamic_precedence = 20), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 6, .dynamic_precedence = 20), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_reference_definition, 7, .dynamic_precedence = 20), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(792), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(438), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(510), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(482), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(480), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(599), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(478), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(394), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(597), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(499), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(376), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(433), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(742), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(855), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(855), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(769), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(661), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2219), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(501), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(504), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(807), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(502), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(964), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(634), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(680), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(468), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(441), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(442), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(742), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(855), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(855), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(769), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(661), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2219), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(501), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(504), + [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(807), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(502), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(964), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(634), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(680), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(468), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(441), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(442), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(742), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(855), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(855), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(769), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(661), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2219), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(501), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(504), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(807), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(502), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(963), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(964), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(634), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(680), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(712), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(468), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(441), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(442), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(788), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(878), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(878), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(809), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(665), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(491), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(474), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(821), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(472), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(446), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(521), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(654), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2025), + [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(466), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(458), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(452), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(758), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(892), + [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(892), + [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(749), + [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(657), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(475), + [2485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(476), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(739), + [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(481), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(456), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(507), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(651), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(465), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(449), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(457), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(758), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(892), + [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(892), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(749), + [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(657), + [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(475), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(476), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(739), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(481), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(443), + [2542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(507), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(651), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(2025), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(465), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(449), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), SHIFT_REPEAT(457), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_underscore_no_link, 2), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(788), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(878), + [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(878), + [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(809), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(665), + [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(491), + [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(474), + [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(821), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(472), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(451), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(521), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(654), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2025), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(466), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(458), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(452), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(742), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(855), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(855), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(769), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(661), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(501), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(504), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(807), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(502), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(964), + [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(634), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(680), + [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(2025), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(468), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(441), + [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 2), SHIFT_REPEAT(442), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(758), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(892), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(892), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(749), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(657), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(475), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(476), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(739), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(481), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(445), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(507), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(651), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2025), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(465), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(449), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(457), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(788), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(878), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(878), + [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(809), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(665), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(491), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(474), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(821), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(472), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(453), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(521), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(654), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(2025), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(466), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(458), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), SHIFT_REPEAT(452), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_star_no_link, 2), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 1), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(959), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__whitespace, 1), SHIFT(2025), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1685), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1685), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1672), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1672), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1085), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1685), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1685), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1672), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1672), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1100), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1685), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1685), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), + [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1672), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1672), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1085), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1685), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1685), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1672), + [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1672), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1100), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1685), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1685), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1672), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1672), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1103), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1685), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1685), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1672), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1672), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1103), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 2), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 2), + [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1667), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1667), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1656), + [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1656), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1338), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1406), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1667), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1667), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1656), + [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1656), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1410), + [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1406), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1667), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1667), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1656), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1656), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1338), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1406), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1671), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1671), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1652), + [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1652), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1351), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1287), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1125), + [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1125), + [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1682), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1683), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1651), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1651), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1461), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1305), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1671), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1671), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1652), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1652), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1475), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1287), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1671), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1671), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1652), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1652), + [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1376), + [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1287), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1667), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1667), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1656), + [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1656), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1401), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1125), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1125), + [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1682), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1683), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1651), + [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1651), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1461), + [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1305), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1671), + [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1671), + [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1652), + [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1652), + [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1475), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1667), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1667), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1656), + [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1656), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1401), + [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1406), + [3240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1671), + [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1671), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1652), + [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1652), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1351), + [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1287), + [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1122), + [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1122), + [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1666), + [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1683), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1651), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1651), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1368), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1305), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1406), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1257), + [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1257), + [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1684), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1683), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1651), + [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1651), + [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1349), + [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1305), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1122), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1122), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1666), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1683), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1651), + [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1651), + [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1368), + [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1305), + [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1287), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1531), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1549), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1257), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1257), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1684), + [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1683), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1651), + [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1651), + [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1349), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1305), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1667), + [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1667), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1656), + [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1656), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1410), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1406), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1491), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1671), + [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1671), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1652), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1652), + [3427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1376), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1287), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(519), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(546), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(551), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1687), - [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1687), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1687), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1687), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2251), - [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1875), - [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1527), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1687), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1687), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1527), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2204), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1875), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1527), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(635), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2186), - [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1875), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_h2_underline, 1), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_h2_underline, 1), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), REDUCE(sym__image_description_non_empty, 4), - [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), REDUCE(sym__image_description_non_empty, 4), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(329), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(341), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(323), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 4), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 4), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 3), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 3), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 3), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 3), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_h1_underline, 1), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_h1_underline, 1), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10, .production_id = 1), - [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10, .production_id = 1), - [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10, .production_id = 1), REDUCE(sym_link_text, 1, .dynamic_precedence = 10), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30, .production_id = 2), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30, .production_id = 2), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30, .production_id = 2), REDUCE(sym_image_description, 1, .dynamic_precedence = 30), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_tag, 1), - [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_tag, 1), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), - [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1687), - [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1687), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1527), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 2), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 2), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2204), - [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1875), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1687), - [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1687), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1527), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100), - [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100), - [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2251), - [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1875), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), REDUCE(sym_image_description, 3, .dynamic_precedence = 30), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(320), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 2), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 2), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 10), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 10), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1), - [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 1), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 1), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1), - [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 1), - [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 1), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(327), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), - [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1687), - [3979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1687), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1527), - [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2186), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1875), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 1), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 1), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 1), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 1), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(832), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_description, 1, .dynamic_precedence = 30), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1053), - [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1053), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(838), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1078), - [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1078), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(949), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 3), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 3), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 3), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 3), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 3), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 3), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 1), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 1), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 3), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 3), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 2), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 2), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 3), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 3), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 1), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 1), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 3), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 3), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 1), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 1), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), - [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 2), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 2), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 3), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 3), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 2), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 2), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(992), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1529), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1492), - [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1492), - [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1074), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1534), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 1), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 1), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1492), - [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1492), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2026), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1534), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1534), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1085), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1492), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1492), - [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1074), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1086), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1483), - [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1483), - [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1090), - [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1492), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1492), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), - [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), - [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1940), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1608), - [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1988), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1606), - [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1619), - [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1619), - [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1095), - [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1149), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1529), - [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1529), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1096), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1492), - [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1492), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1074), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), - [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), - [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1940), - [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1608), - [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1988), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1641), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1562), - [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1562), - [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1101), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1121), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1665), - [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1658), - [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1658), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1104), - [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(2026), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1577), - [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1577), - [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(2300), - [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1639), - [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1639), - [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1136), - [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1107), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1147), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1636), - [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1636), - [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(2320), - [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1589), - [5058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1589), - [5061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1152), - [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1126), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1618), - [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1618), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(2338), - [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1585), - [5089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1585), - [5092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1155), - [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1127), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1669), - [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1657), - [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1657), - [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1158), - [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1439), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1613), - [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1613), - [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(2427), - [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1570), - [5213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1570), - [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1187), - [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1128), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1531), - [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1531), - [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1940), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [5273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1197), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1567), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1567), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), - [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1203), - [5301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1492), - [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1492), - [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1074), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1673), - [5519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1673), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1651), - [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1651), - [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1301), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1344), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1680), - [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1615), - [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1657), - [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1657), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1330), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1439), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1333), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1683), - [5622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1657), - [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1657), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1338), - [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1129), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1661), - [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1657), - [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1657), - [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1373), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1129), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1425), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1715), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1687), - [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1687), - [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1430), - [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(2026), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1711), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1687), - [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1687), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1433), - [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(2026), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1654), - [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1654), - [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1670), - [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1670), - [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1447), - [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1285), - [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1681), - [5911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1681), - [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1677), - [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1677), - [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1448), - [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1404), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1453), - [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1455), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1459), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1463), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1469), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1477), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [5981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 1), - [5996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 1), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1665), - [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1658), - [6032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1658), - [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1499), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1506), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1508), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), - [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), - [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1689), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1687), - [6072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1687), - [6075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1513), - [6078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1527), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1524), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [6107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [6131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), - [6134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1543), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), - [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [6168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 1), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 1), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 1), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 1), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), REDUCE(aux_sym_link_title_repeat3, 1), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1590), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), - [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 1), - [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 1), - [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 1), - [6253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 1), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 1), - [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 1), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 1), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 1), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1727), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), - [6282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1727), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1624), - [6288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1731), - [6291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1731), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 2), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 2), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 1), - [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 1), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [6314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [6317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), - [6324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), - [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), - [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), - [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), - [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), - [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 3), - [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 3), - [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 3), - [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 3), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), - [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), - [6528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2008), - [6531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2008), - [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2026), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [6573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2004), - [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2004), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2008), - [6590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2008), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1830), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1836), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(526), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1706), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1706), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(601), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1706), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1706), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1516), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(2207), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1832), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(2250), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(1832), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1706), + [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), SHIFT(1706), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1516), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(1516), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(321), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), REDUCE(sym__image_description_non_empty, 4, .production_id = 5), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline, 1), REDUCE(sym__image_description_non_empty, 4, .production_id = 5), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description_non_empty, 4, .production_id = 5), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_h2_underline, 1), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_h2_underline, 1), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(338), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(2189), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(1832), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star, 3, .dynamic_precedence = 1), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 4, .dynamic_precedence = 100), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 3, .dynamic_precedence = 100), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 6, .dynamic_precedence = 10), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 3, .dynamic_precedence = 100), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 6, .dynamic_precedence = 10), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 10), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_reference_link, 2, .dynamic_precedence = 10), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image, 1), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image, 1), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 3, .dynamic_precedence = 100), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 4), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 4), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), + [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shortcut_link, 1, .dynamic_precedence = 10), REDUCE(sym__link_text, 1, .dynamic_precedence = 10), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 3, .dynamic_precedence = 100), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setext_h1_underline, 1), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setext_h1_underline, 1), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore, 1, .production_id = 1), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), + [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__image_shortcut_link, 1, .dynamic_precedence = 30), REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_tag, 1), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_tag, 1), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star, 1, .production_id = 1), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 6, .dynamic_precedence = 100), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 6, .dynamic_precedence = 100), + [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), SHIFT(341), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 3, .dynamic_precedence = 10), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span, 2, .dynamic_precedence = 100), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star, 1), SHIFT(340), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 5, .dynamic_precedence = 10), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 2), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore, 2), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star, 3, .dynamic_precedence = 2), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hard_line_break, 2, .dynamic_precedence = 1), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 3, .dynamic_precedence = 10), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 2, .dynamic_precedence = 100), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__processing_instruction, 2, .dynamic_precedence = 100), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 2, .dynamic_precedence = 100), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore, 3, .dynamic_precedence = 1), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 5, .dynamic_precedence = 10), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_full_reference_link, 2, .dynamic_precedence = 10), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore, 3, .dynamic_precedence = 2), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 3, .dynamic_precedence = 100), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1706), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1706), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1516), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collapsed_reference_link, 3, .dynamic_precedence = 10), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 4, .dynamic_precedence = 100), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 4, .dynamic_precedence = 10), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(2207), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 1), SHIFT(1832), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_label, 3), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_label, 3), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 3), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_text_non_empty, 3, .production_id = 3), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 4, .dynamic_precedence = 10), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline, 1), REDUCE(sym__image_description, 3, .dynamic_precedence = 30), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 5, .dynamic_precedence = 100), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(2189), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1832), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cdata_section, 3, .dynamic_precedence = 100), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__html_comment, 4, .dynamic_precedence = 100), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 8, .dynamic_precedence = 10), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 8, .dynamic_precedence = 10), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__image_inline_link, 7, .dynamic_precedence = 10), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_link, 7, .dynamic_precedence = 10), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_underscore, 1), SHIFT(327), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__open_tag, 5, .dynamic_precedence = 100), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_tag, 5, .dynamic_precedence = 100), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1706), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1706), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_link, 1), SHIFT(1516), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(2250), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1832), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 4, .dynamic_precedence = 100), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star, 2), + [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star, 2), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1706), + [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1706), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 1), SHIFT(1516), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__image_description, 1, .dynamic_precedence = 30), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 3, .dynamic_precedence = 100), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_newline, 3, .dynamic_precedence = 1), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_newline, 3, .dynamic_precedence = 2), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_newline, 3, .dynamic_precedence = 1), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_newline, 3, .dynamic_precedence = 2), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_underscore, 1, .production_id = 1), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline_no_star, 1, .production_id = 1), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__code_span_no_newline, 2, .dynamic_precedence = 100), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline, 2), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline, 2), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_newline, 1), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_newline, 1), + [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1077), + [4063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1077), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), + [4068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(900), + [4071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1045), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(1045), + [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 2), SHIFT_REPEAT(937), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_newline, 1, .production_id = 1), + [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(905), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element, 1, .production_id = 1), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline, 1), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline, 1), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_star_no_link, 1, .production_id = 1), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_underscore_no_link, 3, .dynamic_precedence = 2), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_underscore_no_link, 3, .dynamic_precedence = 1), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_underscore_no_link, 2), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strong_emphasis_star_no_link, 3, .dynamic_precedence = 2), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1), + [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emphasis_star_no_link, 3, .dynamic_precedence = 1), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_star_no_link, 2), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_star_no_link, 2), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_inline_no_link, 2), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_inline_no_link, 2), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_underscore_no_link, 1, .production_id = 1), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), + [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1), REDUCE(aux_sym_link_label_repeat1, 1), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inline_no_link, 1), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inline_no_link, 1), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_element_no_link, 1, .production_id = 1), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1495), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1502), + [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1502), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1057), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_label_repeat1, 1), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_label_repeat1, 1), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), SHIFT(1542), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1001), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1), + [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1685), + [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1672), + [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1672), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(1082), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), SHIFT_REPEAT(2025), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_repeat1, 2), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1083), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1502), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(1502), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2025), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1569), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1577), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1577), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1090), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1187), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1495), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), + [4668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1495), + [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1092), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1502), + [4677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1502), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 2), SHIFT_REPEAT(1057), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1542), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1542), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1093), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1502), + [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1502), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 2), SHIFT_REPEAT(1057), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1565), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1579), + [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1579), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1094), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2), SHIFT_REPEAT(1200), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 1, .dynamic_precedence = 10), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), + [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 1), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1925), + [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1646), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 1), SHIFT(1957), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), + [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 1), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1925), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1646), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 1), SHIFT(1957), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1534), + [4791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1534), + [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1107), + [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1502), + [4800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_info_string_repeat1, 2), SHIFT_REPEAT(1502), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_info_string_repeat1, 2), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1647), + [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1647), + [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(2278), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1621), + [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1621), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1148), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), SHIFT_REPEAT(1203), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 2, .dynamic_precedence = 10), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1626), + [5127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1626), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1196), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1502), + [5138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1502), + [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 2), SHIFT_REPEAT(1057), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1483), + [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1483), + [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1925), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), SHIFT_REPEAT(1211), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_destination, 3, .dynamic_precedence = 10), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1648), + [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1648), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(2290), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1575), + [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1575), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1220), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), SHIFT_REPEAT(1170), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1573), + [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1573), + [5229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(2274), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1564), + [5235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1564), + [5238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1221), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), SHIFT_REPEAT(1230), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1563), + [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1563), + [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(2272), + [5327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1562), + [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1562), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1246), + [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), SHIFT_REPEAT(1231), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1251), + [5360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1650), + [5363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1669), + [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1669), + [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1252), + [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), SHIFT_REPEAT(1411), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1288), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1655), + [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1669), + [5502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1669), + [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1298), + [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), SHIFT_REPEAT(1244), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 2), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1676), + [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1669), + [5545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1669), + [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1311), + [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), SHIFT_REPEAT(1244), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 2), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1334), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1690), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1706), + [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1706), + [5716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(1381), + [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 2), SHIFT_REPEAT(2025), + [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1686), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1706), + [5730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1706), + [5733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(1382), + [5736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 2), SHIFT_REPEAT(2025), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1420), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1667), + [5817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1667), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1656), + [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1656), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1422), + [5831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1406), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1431), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1440), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1674), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1560), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1669), + [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1669), + [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1443), + [5877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), SHIFT_REPEAT(1411), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1445), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1458), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1671), + [5911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1671), + [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1652), + [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1652), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1464), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1287), + [5926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1683), + [5929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1683), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1651), + [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1651), + [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1465), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 2), SHIFT_REPEAT(1305), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1479), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat1, 1), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(sym_link_title, 2), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1515), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1685), + [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1672), + [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1672), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), SHIFT_REPEAT(1530), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_span_no_newline_repeat1, 2), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 1), + [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 1), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1698), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), + [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1706), + [6080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1706), + [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1535), + [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 2), SHIFT_REPEAT(1516), + [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1536), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1539), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [6106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 1), REDUCE(aux_sym_link_title_repeat2, 1), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 1), + [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 1), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1545), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat1, 3), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 3), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_4_repeat1, 1), + [6144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 1), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 1), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 1), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_5_repeat1, 1), + [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 1), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text, 2), + [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text, 2), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat2, 3), + [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 3), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), + [6176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 1), REDUCE(aux_sym_link_title_repeat3, 1), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_3_repeat1, 1), + [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 1), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1720), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), + [6192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1720), + [6195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1576), + [6198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1736), + [6201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat1, 2), SHIFT_REPEAT(1736), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 3), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 3), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1580), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat2, 2), + [6221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [6224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat2, 2), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 1), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), + [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), + [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [6288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__link_destination_parenthesis, 2), REDUCE(sym_link_title, 2), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat1, 2), + [6299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [6302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_link_destination_repeat2, 2), REDUCE(aux_sym_link_title_repeat1, 2), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_2_repeat1, 1), + [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 1), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_1_repeat1, 1), + [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 1), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_1_repeat1, 2), + [6325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_2_repeat1, 2), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 2), + [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_3_repeat1, 2), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_link_title_repeat3, 3), + [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_link_title_repeat3, 3), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 1), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_5_repeat1, 2), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 1), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 3), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 1), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__html_block_6_repeat2, 3), + [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 3), + [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_comment_repeat1, 2), + [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_4_repeat1, 2), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_repeat1, 1), + [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 1), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat2, 2), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__html_block_6_repeat1, 2), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 1), + [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 1), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat1, 2), + [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_value_repeat2, 2), + [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_repeat1, 2), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_no_angle, 2), + [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_no_angle, 2), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), + [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2004), + [6498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2004), + [6501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__open_tag_repeat1, 2), SHIFT_REPEAT(2025), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2015), + [6549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2015), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2004), + [6577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_inline_link_repeat1, 2), SHIFT_REPEAT(2004), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), + [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), + [6594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1833), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), + [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1856), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 1), - [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 1), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(1881), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [6671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_name, 2), - [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tag_name, 2), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(1940), - [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), - [6752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(1974), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), - [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), - [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), - [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), - [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2039), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), - [6826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), - [6830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), - [6832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2072), - [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), - [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2087), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), - [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [6938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 2), SHIFT_REPEAT(2119), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_text, 2, .dynamic_precedence = 10), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [7253] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1858), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(1866), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), SHIFT_REPEAT(1899), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__tag_name_repeat1, 2), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(1925), + [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), + [6751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__link_destination_parenthesis_repeat1, 2), SHIFT_REPEAT(1986), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5), + [6778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4), + [6782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 3), + [6796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 3), + [6798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 6), + [6800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 6), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_value, 2), + [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_value, 2), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2064), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [6821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2073), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 3), + [6832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 3), + [6834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_link_title, 2), + [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_link_title, 2), + [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ignore_matching_tokens, 2), SHIFT_REPEAT(2091), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__soft_line_break_repeat1, 2), SHIFT_REPEAT(2105), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__link_text, 2, .dynamic_precedence = 10), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7236] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), }; #ifdef __cplusplus